/* =========================================
   Base & Variables
   ========================================= */
:root {
    /* Colors */
    --bg-dark: #0f1117;
    --bg-surface: #1a1d27;
    --bg-surface-light: #24283b;
    --accent-orange: #f97316;
    --accent-gold: #fbbf24;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --border-color: rgba(255, 255, 255, 0.1);

    /* Gradients */
    --gradient-glow: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
    --gradient-surface: linear-gradient(180deg, rgba(26, 29, 39, 0.8) 0%, rgba(15, 17, 23, 0.9) 100%);

    /* Typography */
    --font-heading: 'Noto Sans JP', sans-serif;
    --font-body: 'Noto Sans JP', sans-serif;

    /* Layout */
    --container-width: 1200px;
    --nav-height: 80px;

    /* Effects */
    --shadow-glow: 0 0 40px rgba(249, 115, 22, 0.15);
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --blur-glass: blur(12px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
}

.text-gradient {
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent {
    color: var(--accent-gold);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: 100px 0;
    position: relative;
}

.bg-alt {
    background-color: var(--bg-surface);
}

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    gap: 8px;
    border: none;
}

.btn-primary {
    background: var(--gradient-glow);
    color: #fff;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(249, 115, 22, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: var(--blur-glass);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* =========================================
   Navigation
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(15, 17, 23, 0.7);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 17, 23, 0.95);
    box-shadow: var(--shadow-glass);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 5%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.logo-icon {
    color: var(--accent-orange);
    width: 28px;
    height: 28px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-glow);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(15, 17, 23, 0.98);
    backdrop-filter: var(--blur-glass);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 999;
    transition: height 0.4s ease;
}

.mobile-menu.active {
    height: calc(100vh - var(--nav-height));
}

.mobile-link {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-btn {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.mobile-menu.active .mobile-btn {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--nav-height);
    text-align: center;
    overflow: hidden;
}

.glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, rgba(15, 17, 23, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 24px;
    color: var(--text-muted);
    backdrop-filter: var(--blur-glass);
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.02em;
    margin-bottom: 30px;
}

.hero-line-1 {
    display: block;
    padding-right: 15%;
}

.hero-line-2 {
    display: block;
    padding-left: 15%;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    margin-bottom: 50px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* =========================================
   Vision Section
   ========================================= */
.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    margin-bottom: 20px;
}

.vision-body {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.9;
}

.vision-image-wrapper {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vision-image-card {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    backdrop-filter: var(--blur-glass);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.glass-orb {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--gradient-glow);
    filter: blur(80px);
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.vision-icon {
    width: 80px;
    height: 80px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

@keyframes float {
    0% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }

    100% {
        transform: translateY(0px) scale(1);
    }
}

/* =========================================
   Pain & Solution Area
   ========================================= */
.section-header {
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.badge-dark {
    color: var(--bg-dark);
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.pain-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: stretch;
}

.pain-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pain-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 16px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.pain-card:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.04);
}

.pain-icon {
    color: #ef4444;
    /* red for pain */
    flex-shrink: 0;
}

.glass-panel {
    background: var(--gradient-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-glass);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.solution-badge-icon {
    color: var(--accent-gold);
    width: 32px;
    height: 32px;
}

.solution-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.solution-graphic {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-top: auto;
}

.node-connection {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 500;
}

.node {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.node.active {
    background: rgba(249, 115, 22, 0.1);
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.node.highlight {
    background: var(--gradient-glow);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
}

.arrow-icon {
    color: var(--text-muted);
    opacity: 0.5;
}

/* =========================================
   Approach Section (SOLUTION APPROACH)
   ========================================= */
.approach-split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

@media(max-width: 900px) {
    .approach-split {
        grid-template-columns: 1fr;
    }
}

/* Approach Windows Mockup */
.window-frame {
    background: #1e1e1e;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
}

.window-header {
    background: #fff;
    color: #000;
    display: flex;
    justify-content: space-between;
    padding: 8px 15px;
    font-size: 0.8rem;
    font-family: sans-serif;
}

.window-controls span {
    margin-left: 10px;
    cursor: default;
}

.window-body {
    background: #11131a;
    padding: 20px;
    color: #e5e7eb;
}

.mockup-header {
    font-size: 1.2rem;
    font-weight: bold;
    color: #f97316;
    margin-bottom: 10px;
    border-bottom: 2px solid #f97316;
    padding-bottom: 10px;
}

.mockup-header .mockup-logo {
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.mockup-header .mockup-sub {
    font-size: 0.8rem;
    color: #6b7280;
    margin-left: 10px;
    font-weight: normal;
}

.mockup-tabs {
    display: flex;
    border-bottom: 1px solid #333;
    margin-bottom: 20px;
}

.mockup-tabs .tab {
    padding: 8px 20px;
    font-size: 0.9rem;
    color: #9ca3af;
}

.mockup-tabs .tab.active {
    color: #f97316;
    border-bottom: 2px solid #f97316;
}

.mockup-form {
    padding: 0 10px;
}

.form-group-mock {
    margin-bottom: 20px;
}

.form-group-mock label {
    display: block;
    font-size: 0.85rem;
    color: #fbbf24;
    margin-bottom: 8px;
    font-weight: bold;
}

.input-with-button {
    display: flex;
    gap: 10px;
}

.input-with-button input {
    flex: 1;
    background: #1f2233;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 8px;
    color: #fff;
    font-size: 0.85rem;
}

.btn-mock {
    background: #374151;
    border: none;
    color: #fff;
    padding: 0 15px;
    border-radius: 4px;
    font-size: 0.85rem;
}

.radio-group-mock {
    display: flex;
    gap: 15px;
}

.radio-mock {
    display: flex;
    background: #1f2233;
    border: 1px solid #333;
    padding: 10px 15px;
    border-radius: 4px;
    flex: 1;
    gap: 10px;
}

.radio-mock.active {
    border-color: #fbbf24;
}

.radio-circle {
    color: #888;
}

.radio-mock.active .radio-circle {
    color: #fbbf24;
}

.radio-title {
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 4px;
}

.radio-desc {
    font-size: 0.75rem;
    color: #9ca3af;
}

.checkbox-mock {
    font-size: 0.85rem;
    margin-bottom: 20px;
    color: #9ca3af;
}

.btn-mock-primary {
    width: 100%;
    background: #f97316;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 10px;
}

.mockup-status {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Right Content */
.approach-headline {
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.highlight-text {
    border-bottom: 4px solid #f97316;
}

.approach-subtext {
    font-size: 1rem;
    color: #cbd5e1;
    margin-bottom: 30px;
    line-height: 1.6;
}

.approach-feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    gap: 20px;
    align-items: flex-start;
}

.feature-item .feature-icon {
    background: rgba(255, 255, 255, 0.1);
    min-width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fca5a5;
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 0.9rem;
    color: #9ca3af;
    line-height: 1.5;
}

/* =========================================
   Values Section
   ========================================= */
.badge-orange {
    color: var(--accent-orange);
    letter-spacing: 2px;
}

.relative-container {
    position: relative;
}

.section-footer-text {
    text-align: right;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 40px;
    letter-spacing: 1px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: #151828;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(249, 115, 22, 0.3);
}

.value-icon-wrapper {
    margin-bottom: 20px;
    text-align: center;
}

.value-icon-img {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    display: block;
}

.value-icon-lucide {
    width: 40px;
    height: 40px;
    color: #fff;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-align: left;
    margin-bottom: 20px;
    line-height: 1.6;
}

.value-discovery {
    background: #0d101b;
    border-left: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 16px;
    text-align: left;
    margin-top: auto;
    min-height: 130px;
}

.discovery-title {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
}

.discovery-list {
    list-style: none;
    font-size: 0.82rem;
    color: #f8fafc;
    line-height: 1.5;
}

.discovery-list li {
    margin-bottom: 4px;
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Report Sample Section
   ========================================= */
.container-wide {
    max-width: 1200px;
}

.small-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    vertical-align: bottom;
}

.report-app-ui {
    background: #12141f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 40px;
    margin-top: 30px;
}

.panel-header {
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.panel-accent-line {
    width: 4px;
    height: 20px;
    background: #f97316;
}

.panel-header-sm {
    font-size: 0.85rem;
    color: #9ca3af;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-weight: bold;
}

.radar-container {
    position: relative;
    width: 100%;
    text-align: center;
}

.radar-svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.radar-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    font-size: 0.85rem;
    color: #9ca3af;
}

.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 5px;
}

.user-dot {
    background: #f97316;
}

.bench-dot {
    background: #50505a;
}

.stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.stat-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-header {
    font-size: 0.85rem;
    color: #fbbf24;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.profile-icon {
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-tag {
    background: rgba(249, 115, 22, 0.2);
    color: #f97316;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 4px;
}

.profile-name {
    font-size: 0.95rem;
    font-weight: bold;
}

.ccs-score {
    margin-bottom: 5px;
}

.score-lg {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}

.score-sm {
    font-size: 1rem;
    color: #9ca3af;
}

.score-trend {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.text-green {
    color: #4ade80;
}

.text-red {
    color: #f87171;
}

.text-orange {
    color: #f97316;
}

.breakdown-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.breakdown-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.breakdown-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.95rem;
}

.warning-row {
    background: rgba(249, 115, 22, 0.05);
    border-radius: 4px;
    padding: 4px 8px;
    margin: -4px -8px;
}

.bd-icon {
    width: 20px;
    display: flex;
    justify-content: center;
}

.bd-label {
    flex: 1;
}

.bd-value {
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: flex-end;
    width: 70px;
}

.feedback-box {
    background: rgba(249, 115, 22, 0.05);
    border: 1px solid rgba(249, 115, 22, 0.2);
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid #f97316;
}

.feedback-header {
    font-size: 1rem;
    font-weight: bold;
    color: #fbbf24;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feedback-list {
    list-style: none;
    font-size: 0.9rem;
    line-height: 1.6;
}

.feedback-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.feedback-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f97316;
    font-weight: bold;
}

@media(max-width: 900px) {
    .report-app-ui {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   Case Studies Section
   ========================================= */
.case-study-block {
    background: #151828;
    border-radius: 12px;
    padding: 40px;
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.mt-80 {
    margin-top: 80px;
}

.case-before-after {
    display: grid;
    grid-template-columns: 1fr auto 1.2fr;
    gap: 30px;
    margin-top: 30px;
    align-items: stretch;
}

.case-before {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 8px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    height: 100%;
    box-sizing: border-box;
}

.before-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.before-list li {
    display: flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 8px;
}

.list-icon {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 2px;
}

.list-title {
    font-size: 0.95rem;
    font-weight: bold;
    margin-bottom: 4px;
}

.list-desc {
    font-size: 0.85rem;
    color: #9ca3af;
}

.case-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrow-circle {
    width: 40px;
    height: 40px;
    background: #f97316;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.case-after {
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.after-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.after-card {
    display: flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid #60a5fa;
}

.after-card:last-child {
    border-left-color: #f43f5e;
}

.after-icon {
    background: rgba(0, 0, 0, 0.3);
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
}

.after-title {
    font-size: 0.95rem;
    font-weight: bold;
    margin-bottom: 6px;
}

.after-desc {
    font-size: 0.85rem;
    color: #cbd5e1;
    line-height: 1.5;
}

.speech-bubble {
    background: #f97316;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 0.95rem;
    position: relative;
    margin-top: auto;
}

.speech-bubble::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 20px;
    border-width: 0 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent #f97316 transparent;
}

.quote-mark {
    opacity: 0.8;
    font-size: 1.2rem;
}

.client-voice-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 30px;
}

.client-left {
    border-left: 4px solid #f97316;
    padding-left: 20px;
}

.voice-quote {
    font-size: 1.3rem;
    line-height: 1.6;
    font-weight: bold;
    margin-bottom: 20px;
}

.client-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-role {
    font-size: 0.8rem;
    margin-bottom: 2px;
}

.client-name {
    font-size: 0.95rem;
    font-weight: bold;
}

.sns-mockup {
    position: relative;
    max-width: 400px;
    padding-top: 20px;
}

.sns-mockup-overlay {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sns-chat {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.6;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.sns-chat p {
    margin-bottom: 15px;
    color: #e5e7eb;
}

.chat-user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 0.8rem;
    color: #9ca3af;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.avatar-sm {
    width: 28px;
    height: 28px;
    background: #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.achievement-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.achieve-icon {
    color: #f97316;
    opacity: 0.8;
    margin-top: 2px;
}

.achieve-label {
    font-size: 0.85rem;
    color: #9ca3af;
    margin-bottom: 6px;
}

.achieve-value {
    font-size: 1.1rem;
    font-weight: bold;
}

.achieve-sub {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 4px;
}

.model-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-top: auto;
}

.model-header {
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.model-price {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.price-val {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 5px;
    color: #fff;
}

.price-tax {
    font-size: 0.8rem;
    color: #9ca3af;
}

.model-note {
    font-size: 0.8rem;
    color: #9ca3af;
    display: flex;
    gap: 8px;
    line-height: 1.5;
}

@media(max-width: 900px) {
    .case-before-after {
        grid-template-columns: 1fr;
    }

    .client-voice-layout {
        grid-template-columns: 1fr;
    }

    .case-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
}

/* =========================================
   Services
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg-surface-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 40px rgba(249, 115, 22, 0.1);
}

.service-card.active-card {
    background: linear-gradient(180deg, var(--bg-surface-light) 0%, rgba(249, 115, 22, 0.05) 100%);
    border-color: rgba(249, 115, 22, 0.2);
}

.service-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    color: var(--accent-orange);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    background: var(--gradient-glow);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.service-sub {
    display: block;
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-weight: 400;
    margin-top: 4px;
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-main);
}

.service-features i {
    color: var(--accent-gold);
    width: 18px;
    height: 18px;
}

/* =========================================
   Partnership Area
   ========================================= */
.partnership-container {
    background: var(--gradient-surface);
    border-radius: 30px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

/* Add a pseudo-element for an accent corner glow */
.partnership-container::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--accent-orange);
    filter: blur(150px);
    opacity: 0.2;
    pointer-events: none;
}

.partnership-content {
    position: relative;
    z-index: 1;
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text-main);
}

.partnership-text p {
    color: var(--text-muted);
    line-height: 1.8;
}

.mt-4 {
    margin-top: 2rem;
}

.partnership-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: rotateSlow 20s linear infinite;
}

.large-icon {
    width: 80px;
    height: 80px;
    color: var(--accent-gold);
    animation: counterRotate 20s linear infinite;
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes counterRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

/* =========================================
   Footer & Contact Form
   ========================================= */
.footer {
    background: #090a0f;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 20px;
}

.company-name {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.company-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-title {
    margin-bottom: 24px;
    font-size: 1.5rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    background: rgba(0, 0, 0, 0.4);
}

/* QR Contact */
.qr-contact {
    text-align: center;
}

.qr-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.qr-image-wrapper {
    background: #fff;
    display: inline-block;
    padding: 16px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.qr-image {
    width: 200px;
    height: 200px;
    display: block;
}

.line-btn {
    background: #06C755;
    box-shadow: 0 0 20px rgba(6, 199, 85, 0.3);
    font-size: 1.1rem;
    padding: 16px 36px;
}

.line-btn:hover {
    background: #05b04c;
    box-shadow: 0 0 30px rgba(6, 199, 85, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* =========================================
   Animations (Scroll Reveal)
   ========================================= */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.appear,
.fade-in-left.appear,
.fade-in-right.appear {
    opacity: 1;
    transform: translate(0);
}

/* =========================================
   Responsive Media Queries
   ========================================= */
@media (max-width: 992px) {

    .vision-grid,
    .pain-solution-grid,
    .partnership-container {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vision-image-wrapper {
        height: 300px;
        order: -1;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-btn {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .partnership-container {
        padding: 40px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 24px;
    }
}