/* ==========================================================================
   DESIGN SYSTEM & VARIABLES (Soft Tech Minimal - Glassmorphism, Premium Teal)
   ========================================================================== */
:root {
    --color-bg-dark: #0B0F19;
    --color-bg-card: rgba(17, 24, 39, 0.6);
    --color-text-main: #F3F4F6;
    --color-text-muted: #9CA3AF;
    --color-accent-teal: #0D9488;
    --color-accent-teal-glow: rgba(13, 148, 136, 0.4);
    --color-accent-teal-light: #14B8A6;
    --color-accent-amber: #FBBF24;
    --color-accent-red: #EF4444;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-hover: rgba(255, 255, 255, 0.15);
    
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-heading: 'Plus Jakarta Sans', var(--font-sans);
    --font-serif: 'Lora', Georgia, serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-dark);
}

body {
    font-family: var(--font-sans);
    color: var(--color-text-main);
    background-color: var(--color-bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.text-italic-accent {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    color: var(--color-accent-amber);
}

/* ==========================================================================
   BUTTONS & ACTIONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-weight: 600;
    text-decoration: none;
    border-radius: 99px;
    transition: var(--transition-smooth);
    cursor: pointer;
    gap: 8px;
    border: none;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.btn-teal {
    background-color: var(--color-accent-teal);
    color: #FFF;
    box-shadow: 0 4px 20px var(--color-accent-teal-glow);
}

.btn-teal:hover {
    background-color: var(--color-accent-teal-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(13, 148, 136, 0.6);
}

.btn-teal-outline {
    background-color: rgba(13, 148, 136, 0.15);
    border: 2px solid rgba(13, 148, 136, 0.5);
    color: var(--color-text-main);
}

.btn-teal-outline:hover {
    border-color: var(--color-accent-teal-light);
    color: var(--color-text-main);
    background-color: var(--color-accent-teal);
    box-shadow: 0 4px 15px var(--color-accent-teal-glow);
    transform: translateY(-1px);
}

.btn-green {
    background-color: #16A34A;
    color: #FFF;
    box-shadow: 0 4px 20px rgba(22, 163, 74, 0.4);
}

.btn-green:hover {
    background-color: #22C55E;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(22, 163, 74, 0.6);
}

.btn-green-outline {
    background-color: rgba(22, 163, 74, 0.15);
    border: 2px solid rgba(22, 163, 74, 0.5);
    color: var(--color-text-main);
}

.btn-green-outline:hover {
    border-color: #22C55E;
    color: var(--color-text-main);
    background-color: #16A34A;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.4);
    transform: translateY(-1px);
}

.btn-pulse {
    animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(13, 148, 136, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(13, 148, 136, 0);
    }
}

.sparkle, .sparkle-lg {
    color: var(--color-accent-amber);
    display: inline-block;
}

.tg-icon {
    width: 1.25em;
    height: 1.25em;
    margin-right: 8px;
    vertical-align: middle;
    display: inline-block;
    fill: currentColor;
}

.wa-icon {
    width: 1.25em;
    height: 1.25em;
    margin-right: 8px;
    vertical-align: middle;
    display: inline-block;
    fill: currentColor;
}

/* ==========================================================================
   HEADER SECTION
   ========================================================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(11, 15, 25, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    padding: 16px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-text-main);
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    color: var(--color-text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--color-accent-teal-light);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.section-hero {
    padding: 100px 0 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.25rem;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-title .heading-sub {
    font-size: 2rem;
    display: block;
    font-weight: 500;
    color: var(--color-text-muted);
    margin-top: 12px;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-disclaimer {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 15px;
}

.hero-disclaimer span {
    display: inline-block;
    margin: 0 4px;
}

/* ==========================================================================
   INTERACTIVE BEFORE/AFTER SLIDER
   ========================================================================== */
.slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    max-height: 700px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid var(--color-border);
}

.slider-image-underlay {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    clip-path: polygon(0 0, var(--position) 0, var(--position) 100%, 0 100%);
    pointer-events: none;
}

.slider-image-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--position);
    width: 2px;
    background-color: #FFF;
    pointer-events: none;
    transform: translateX(-50%);
    z-index: 10;
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background-color: var(--color-accent-teal);
    border-radius: 50%;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    border: 2px solid #FFF;
}

.slider-range {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 20;
}

.slider-badge {
    position: absolute;
    top: 24px;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 15;
    pointer-events: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.badge-before {
    left: 24px;
    background: rgba(15, 17, 19, 0.75);
    color: #FFF;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.badge-after {
    right: 24px;
    background: var(--color-accent-teal);
    color: #FFF;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

/* ==========================================================================
   STORYTELLING SECTION
   ========================================================================== */
.section-story {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, rgba(255,255,255,0.01) 100%);
    border-top: 1px solid var(--color-border);
}

.story-card {
    max-width: 850px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: 28px;
    padding: 50px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.story-title {
    font-size: 2.25rem;
    color: var(--color-accent-amber);
    margin-bottom: 16px;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
}

.story-lead {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.35;
}

.story-content {
    font-size: 1.05rem;
    color: var(--color-text-muted);
}

.story-list {
    list-style: none;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.story-list span {
    color: var(--color-accent-teal-light);
    font-weight: bold;
    margin-right: 8px;
}

.story-conclusion {
    margin-top: 30px;
    font-size: 1.15rem;
    color: var(--color-text-main);
    border-left: 3px solid var(--color-accent-teal);
    padding-left: 20px;
}

/* ==========================================================================
   PAIN POINTS SECTION
   ========================================================================== */
.section-pains {
    padding: 100px 0;
    background: var(--color-bg-dark);
    border-top: 1px solid var(--color-border);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.pains-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pain-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 40px 32px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
}

.pain-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-5px);
}

.pain-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.pain-icon-wrapper.red {
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-accent-red);
}

.pain-icon-wrapper.amber {
    background: rgba(251, 191, 36, 0.1);
    color: var(--color-accent-amber);
}

.pain-icon-wrapper.blue {
    background: rgba(13, 148, 136, 0.1);
    color: var(--color-accent-teal-light);
}

.pain-title {
    font-size: 1.35rem;
    margin-bottom: 16px;
}

.pain-text {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   INTERACTIVE SIMULATOR SECTION
   ========================================================================== */
.section-simulator {
    padding: 100px 0;
    background: var(--color-bg-dark);
    border-top: 1px solid var(--color-border);
}

.simulator-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    background: rgba(255,255,255,0.02);
    padding: 50px;
    border-radius: 32px;
    border: 1px solid var(--color-border);
}

.simulator-controls {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.control-label {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.sim-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.sim-btn {
    padding: 12px 24px;
    border-radius: 14px;
    border: 1.5px solid var(--color-border);
    background: transparent;
    color: var(--color-text-main);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.sim-btn:hover {
    border-color: var(--color-border-hover);
}

.sim-btn.active {
    background: var(--color-accent-teal);
    border-color: var(--color-accent-teal);
    box-shadow: 0 4px 15px var(--color-accent-teal-glow);
}

.sim-info-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--color-border);
    padding: 24px;
    border-radius: 18px;
}

.sim-info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--color-accent-amber);
}

.sim-info-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.simulator-visual {
    display: flex;
    justify-content: center;
}

.simulator-visual .slider-container {
    max-height: 520px;
    aspect-ratio: 9 / 16;
}

/* ==========================================================================
   OUTCOMES SECTION ("What you get")
   ========================================================================== */
.section-outcomes {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, rgba(13, 148, 136, 0.03) 50%, var(--color-bg-dark) 100%);
    border-top: 1px solid var(--color-border);
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.outcome-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition-smooth);
}

.outcome-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-3px);
}

.outcome-check {
    font-size: 2.25rem;
    color: var(--color-accent-teal-light);
    display: block;
    margin-bottom: 16px;
    line-height: 1;
}

.outcome-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.outcome-card p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ==========================================================================
   TARGET AUDIENCE SECTION ("Who it fits")
   ========================================================================== */
.section-target {
    padding: 100px 0;
    background: var(--color-bg-dark);
    border-top: 1px solid var(--color-border);
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.target-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 32px 20px;
    text-align: center;
    transition: var(--transition-smooth);
}

.target-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-3px);
}

.target-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 16px;
    line-height: 1;
}

.target-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.target-card p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ==========================================================================
   STEP-BY-STEP CJM SECTION
   ========================================================================== */
.section-cjm {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, rgba(255,255,255,0.01) 100%);
    border-top: 1px solid var(--color-border);
}

.cjm-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.cjm-step {
    position: relative;
    padding: 24px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    text-align: center;
}

.cjm-num {
    width: 48px;
    height: 48px;
    background: var(--color-accent-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFF;
    margin: 0 auto 20px auto;
}

.cjm-step h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.cjm-step p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

/* ==========================================================================
   TRUST SECTION
   ========================================================================== */
.section-trust {
    padding: 100px 0;
    background: var(--color-bg-dark);
    border-top: 1px solid var(--color-border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-item {
    text-align: center;
    padding: 20px;
}

.trust-badge {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 16px;
}

.trust-item h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.trust-item p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ==========================================================================
   EXPANDED GALLERY (CASES) SECTION
   ========================================================================== */
.case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.case {
    overflow: hidden;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.case:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-5px);
}

.case-pair {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    background: var(--color-border);
}

.case-shot {
    position: relative;
    overflow: hidden;
}

.case-shot img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    display: block;
}

.case-tag {
    position: absolute;
    top: 14px;
    z-index: 2;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    pointer-events: none;
}

.case-tag.before {
    left: 14px;
    background: rgba(15, 17, 19, 0.75);
    color: #FFF;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.case-tag.after {
    right: 14px;
    background: var(--color-accent-teal);
    color: #FFF;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.case-body {
    padding: 24px;
}

.case-body h3 {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--color-text-main);
}

.nowrap {
    white-space: nowrap;
}

.case-body p {
    margin-bottom: 0;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ==========================================================================
   EUROPEAN MARKET NOTE
   ========================================================================== */
.market-note {
    padding: 40px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.3);
    margin-top: 40px;
}

.market-points {
    display: grid;
    gap: 16px;
    margin: 24px 0 0;
}

.market-point {
    margin: 0;
    padding: 16px 20px;
    border-radius: 16px;
    background: rgba(13, 148, 136, 0.05);
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.market-point strong {
    color: var(--color-accent-teal-light);
}

/* ==========================================================================
   COMPARISON TABLE SECTION
   ========================================================================== */
.section-comparison {
    padding: 100px 0;
    background: var(--color-bg-dark);
    border-top: 1px solid var(--color-border);
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    background: rgba(255,255,255,0.01);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 750px;
}

.comparison-table th, .comparison-table td {
    padding: 22px 30px;
    border-bottom: 1px solid var(--color-border);
    font-size: 1rem;
}

.comparison-table th {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-main);
    background: rgba(255,255,255,0.02);
}

.comparison-table td.param-name {
    font-weight: 600;
    color: var(--color-text-muted);
}

.comparison-table td strong {
    color: var(--color-text-main);
}

.comparison-table th.highlight-col, .comparison-table td.highlight-col {
    background: rgba(13, 148, 136, 0.05);
    border-left: 1.5px solid rgba(13, 148, 136, 0.15);
    border-right: 1.5px solid rgba(13, 148, 136, 0.15);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.section-pricing {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, rgba(13, 148, 136, 0.03) 50%, var(--color-bg-dark) 100%);
    border-top: 1px solid var(--color-border);
}

.pricing-grid {
    display: grid;
    gap: 24px;
    margin-bottom: 60px;
    justify-content: center;
}

/* B2C: 3 cards — centered 3-column grid */
.pricing-grid.b2c-grid {
    grid-template-columns: repeat(3, minmax(0, 320px));
    max-width: 1020px;
    margin-left: auto;
    margin-right: auto;
}

/* B2B: 3 cards — centered 3-column grid */
.pricing-grid.b2b-grid {
    grid-template-columns: repeat(3, minmax(0, 320px));
    max-width: 1020px;
    margin-left: auto;
    margin-right: auto;
}

.price-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
}

.price-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-5px);
}

.price-card.popular {
    border-color: var(--color-accent-teal);
    background: rgba(13, 148, 136, 0.08);
}

.badge-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent-teal);
    color: #FFF;
    padding: 4px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 99px;
    text-transform: uppercase;
}

.price-plan {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.price-value {
    font-size: 2.25rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: #FFF;
    margin-bottom: 4px;
}

.price-period {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.price-features {
    list-style: none;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.9rem;
    text-align: left;
}

.check-icon {
    color: var(--color-accent-teal-light);
    font-weight: bold;
    margin-right: 6px;
}

.price-card .btn {
    margin-top: auto;
}

/* Guarantee Box */
.guarantee-box {
    display: flex;
    gap: 24px;
    background: rgba(255,255,255,0.02);
    border: 1.5px solid var(--color-border);
    padding: 32px;
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}

.guarantee-icon {
    font-size: 3rem;
    line-height: 1;
}

.guarantee-content h3 {
    font-size: 1.25rem;
    color: var(--color-text-main);
    margin-bottom: 8px;
}

.guarantee-content p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.section-faq {
    padding: 100px 0;
    background: var(--color-bg-dark);
    border-top: 1px solid var(--color-border);
}

.faq-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
}

.faq-section-title {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.faq-section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

.faq-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: 14px;
    background: rgba(255,255,255,0.01);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--color-border-hover);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-main);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background: var(--color-text-main);
    transition: var(--transition-smooth);
}

/* Horizontal line */
.faq-icon::before {
    top: 7px;
    left: 0;
    width: 16px;
    height: 2px;
}

/* Vertical line */
.faq-icon::after {
    top: 0;
    left: 7px;
    width: 2px;
    height: 16px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 24px;
}

.faq-answer p {
    color: var(--color-text-muted);
    padding-bottom: 24px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.open .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */
.section-final-cta {
    padding: 120px 0;
    position: relative;
    text-align: center;
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, rgba(13, 148, 136, 0.1) 100%);
    border-top: 1px solid var(--color-border);
}

.final-cta-container {
    position: relative;
    max-width: 800px;
}

.final-cta-title {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 24px;
}

.final-cta-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.final-cta-microtext {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 20px;
}

.cta-sparkle {
    position: absolute;
    font-size: 2rem;
    color: var(--color-accent-amber);
    opacity: 0.5;
}

.cta-sparkle.left {
    top: 20%;
    left: -40px;
}

.cta-sparkle.right {
    bottom: 20%;
    right: -40px;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
    border-top: 1px solid var(--color-border);
    padding: 40px 0;
    background: var(--color-bg-dark);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--color-accent-teal-light);
}

/* ==========================================================================
   RESPONSIVE LAYOUT (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-title .heading-sub {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        margin: 0 auto 40px auto;
    }
    
    .simulator-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px;
    }
    
    .outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .target-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cjm-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .case-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-grid,
    .pricing-grid.b2c-grid,
    .pricing-grid.b2b-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.0rem;
    }
    
    .hero-title .heading-sub {
        font-size: 1.35rem;
    }
    
    .section-title {
        font-size: 1.65rem;
    }
    
    .faq-section-title {
        font-size: 1.65rem;
    }
    
    .final-cta-title {
        font-size: 1.65rem;
    }

    .header {
        padding: 12px 0;
    }
    
    .cta-buttons-wrapper {
        flex-direction: column;
        width: 100% !important;
        gap: 12px !important;
    }
    
    .cta-buttons-wrapper .btn {
        width: 100% !important;
        min-width: 0 !important;
        justify-content: center;
        text-align: center;
    }
    
    .btn-teal-outline {
        background-color: rgba(13, 148, 136, 0.2) !important;
        border-color: rgba(13, 148, 136, 0.8) !important;
        color: var(--color-text-main) !important;
    }
    
    .btn-green-outline {
        background-color: rgba(22, 163, 74, 0.2) !important;
        border-color: rgba(22, 163, 74, 0.8) !important;
        color: var(--color-text-main) !important;
    }
    
    .nav {
        display: none;
    }
    
    .story-card {
        padding: 30px 20px;
    }
    
    .pains-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .target-grid {
        grid-template-columns: 1fr;
    }
    
    .outcomes-grid {
        grid-template-columns: 1fr;
    }
    
    .cjm-timeline {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pricing-grid,
    .pricing-grid.b2c-grid,
    .pricing-grid.b2b-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .faq-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .target-grid {
        grid-template-columns: 1fr;
    }
    
    .outcomes-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   B2C / B2B SWITCHER STYLE TOGGLE LOGIC
   ========================================================================== */
.user-toggle {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 99px;
    padding: 4px;
    gap: 2px;
    flex-shrink: 0;
}
.toggle-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 99px;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}
.toggle-btn:hover {
    color: rgba(255, 255, 255, 0.9);
}
.toggle-btn.active {
    background: var(--color-accent-teal);
    color: #ffffff;
    box-shadow: 0 0 12px var(--color-accent-teal-glow);
}

/* --- Display toggles --- */
.b2c-only, .b2c-grid {
    display: block;
}
.b2b-only, .b2b-grid {
    display: none;
}
.b2c-grid {
    display: grid;
}

body.b2b-active .b2c-only,
body.b2b-active .b2c-grid {
    display: none !important;
}
body.b2b-active .b2b-only {
    display: block !important;
}
body.b2b-active .b2b-grid {
    display: grid !important;
}

@media (max-width: 991px) {
    .header-container {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: space-between;
    }
    .logo {
        order: 1;
    }
    #header-cta-btn {
        order: 2;
    }
    .user-toggle {
        margin: 8px 0 0 0;
        order: 3;
        width: 100%;
        justify-content: center;
    }
    .toggle-btn {
        flex: 1;
        text-align: center;
    }
}

/* ==========================================================================
   AI MODES SECTION (Bot presets mirror)
   ========================================================================== */
.section-modes {
    padding: 80px 0;
    position: relative;
}

.section-modes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(13, 148, 136, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.modes-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 48px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.modes-row {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.modes-row .mode-card {
    flex: 1;
    min-width: 0;
}

/* Second row — 2 centered cards, each ~33% wide to match row-1 card width */
.modes-row--centered {
    justify-content: center;
}

.modes-row--centered .mode-card {
    flex: 0 1 calc(33.33% - 10px);
}

.mode-card {
    background: rgba(17, 24, 39, 0.7);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.mode-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.mode-card:hover {
    border-color: rgba(13, 148, 136, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(13, 148, 136, 0.15);
}

.mode-card:hover::before {
    opacity: 1;
}

/* B2B card variant — amber/gold accent */
.mode-card--b2b:hover {
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.12);
}

.mode-card--b2b::before {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.04) 0%, transparent 60%);
}

.mode-emoji {
    font-size: 2.2rem;
    line-height: 1;
    user-select: none;
}

.mode-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-main);
    line-height: 1.3;
}

.mode-desc {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    flex: 1;
}

.mode-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-accent-teal);
    background: rgba(13, 148, 136, 0.1);
    border: 1px solid rgba(13, 148, 136, 0.2);
    border-radius: 99px;
    padding: 4px 10px;
    align-self: flex-start;
    margin-top: auto;
}

.mode-card--b2b .mode-badge {
    color: var(--color-accent-amber);
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.2);
}

@media (max-width: 768px) {
    .section-modes {
        padding: 60px 0;
    }
    .modes-row {
        flex-wrap: wrap;
    }
    .modes-row .mode-card,
    .modes-row--centered .mode-card {
        flex: 1 1 calc(50% - 10px);
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .modes-row {
        flex-direction: column;
    }
    .modes-row .mode-card,
    .modes-row--centered .mode-card {
        flex: 1 1 100%;
    }
}

