@font-face {
    font-family: 'Rethink Sans';
    src: url('font/Rethink_Sans/RethinkSans-VariableFont_wght.ttf') format('truetype-variations'),
         url('font/Rethink_Sans/static/RethinkSans-Regular.ttf') format('truetype');
    font-weight: 500 800;
    font-display: block;
}

:root {
    /* Custom One Brand Colors */
    --color-midnight: #0F0F10;
    --color-electric-blue: #5490FF;
    --color-vivid-magenta: #EE54FF;
    --color-signal-red: #FF5454;
    --color-amber-gold: #FFB800;

    /* Extended Palette - Pastel */
    --color-sky-blue: #A8C8FF;
    --color-ice-blue: #D4E4FF;
    --color-lavender-pink: #F6AAFF;
    --color-blush-pink: #FCD4FF;
    --color-coral: #FFA8A8;
    --color-peach: #FFD4D4;
    --color-honey: #FFDB66;
    --color-cream-gold: #FFEDB3;

    /* Neutrals */
    --color-white: #FFFFFF;
    --color-snow: #FAFAFA;
    --color-silver: #E5E5E5;
    --color-gray: #9A9A9A;
    --color-charcoal: #333333;

    /* Gradient */
    --gradient-signature: linear-gradient(90deg, #FF5454 0%, #FFB800 35%, #5490FF 55%, #EE54FF 100%);

    /* Legacy variable mapping for compatibility */
    --font-stack: "Rethink Sans", "Frutiger", "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    --bg-color: var(--color-snow);
    --text-color: var(--color-midnight);
    --accent-color: var(--color-electric-blue);
    --accent-color-dark: #4073E6;
    --brand-blue: var(--color-electric-blue);
    --brand-red: var(--color-signal-red);
    --competitor-color: #E2E6EA;
    --competitor-text: #555555;
    --secondary-text: #666666;
    --card-bg: var(--color-white);
    --border-radius: 24px;
    --spacing-unit: 1rem;
    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: var(--font-stack);
    font-weight: 400;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.4;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Nav */
nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* Left, Center, Right */
    align-items: center;
    padding: 1.5rem 4rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 1rem 4rem;
}

.nav-left {
    justify-self: start;
}

.nav-center {
    justify-self: center;
    display: flex;
    gap: 2rem;
}

.nav-right {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    cursor: pointer;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    height: 36px; /* Reduced from 36px */
    width: auto;
    display: block;
}

.nav-link {
    text-decoration: none;
    color: var(--secondary-text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--text-color);
}

.nav-login {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-cta-primary {
    text-decoration: none;
    background: #000;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid #000;
}

.nav-cta-primary:hover {
    background: var(--color-electric-blue);
    border-color: var(--color-electric-blue);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Hero */
.unicorn-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero {
    min-height: 70vh; /* Reduced from 90vh to reduce dead space */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    padding-top: 120px; /* Add spacing for fixed nav */
    padding-bottom: 4rem;
}

.hero-content {
    z-index: 10;
    max-width: 800px;
    margin-bottom: 2rem;
}

/* Hero Video Container */
.hero-video-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    aspect-ratio: 16/9;
    background: #000;
}

.hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 10;
    padding: 0;
}

.hero-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.hero-play-button.hidden {
    opacity: 0;
    pointer-events: none;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem); /* Slightly smaller max size */
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.subhead {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    color: var(--secondary-text);
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.micro-line {
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    color: var(--secondary-text);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    font-style: italic;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #000; /* Keep CTA black/luxury */
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid #000;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background: #FFFFFF;
    color: #000;
    border-color: #000;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* Easter Eggs */
.easter-eggs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Let clicks pass through */
    overflow: hidden;
}

.egg {
    position: absolute;
    font-size: 0.9rem;
    color: var(--secondary-text);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: auto; /* Re-enable pointer events for hover */
    cursor: default;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transform: rotate(-2deg);
}

.egg:nth-child(even) {
    transform: rotate(2deg);
}

.egg:hover {
    opacity: 1;
}

/* Section Backgrounds */
.hero {
    background-color: #FAFAFA;
}

.industry-proof {
    background-color: var(--color-snow);
}

.difference-section {
    padding: 8rem 2rem;
    background-color: #FFFFFF; /* Reverted to white/transparent */
    color: var(--text-color);
}

.comparison-section {
    padding: 8rem 2rem;
    background-color: var(--color-snow);
}

.comparison-content {
    margin-top: 4rem;
}

.how-it-works {
    /* Dark background handled in .how-it-works rule */
}

.cta-section {
    background-color: #FAFAFA;
}

.container {
    max-width: 1200px; /* Increased from 1000px for wider flip cards */
    margin: 0 auto;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    text-align: center;
}

.comparison-overline {
    text-align: center;
    color: var(--accent-color-dark);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem; /* Reduced from 4rem */
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 0.8rem 1.5rem;
    font-family: inherit;
    font-size: 1.1rem; /* Slightly larger */
    color: #333; /* Darker than secondary-text */
    cursor: pointer;
    border-radius: 0;
    transition: color 0.3s ease, opacity 0.3s ease;
    font-weight: 500; /* Bolder */
    position: relative;
    opacity: 0.6; /* Default opacity */
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
}

.tab-btn:hover {
    background: transparent;
    color: #000;
    opacity: 1;
}

.tab-btn.active {
    background: transparent;
    color: #000;
    opacity: 1;
}

.tab-btn.active::after {
    transform: scaleX(1);
}

/* Comparison Chart Grid */
.comparison-header {
    display: grid;
    grid-template-columns: 200px 1fr 60px 1fr;
    align-items: center;
    margin-top: 3rem;
    margin-bottom: 2rem;
    font-weight: 500;
    text-align: center;
}

.comp-col-label {
    /* Empty top left corner */
}

.comp-col-them {
    display: flex;
    justify-content: center;
    align-items: center;
}

.them-label {
    background: #E0E0E0;
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    font-size: 0.9rem;
    color: #888888;
    font-weight: 500;
}

.us-label {
    background: #EEF0FF;
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    font-size: 0.9rem;
    color: var(--color-electric-blue);
    font-weight: 500;
    border: 2px solid var(--color-electric-blue);
}

.comp-col-vs {
    color: #CCC;
    font-size: 0.8rem;
    background: #FFF;
    border: 1px solid #EEE;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
}

.comp-col-us {
    display: flex;
    justify-content: center;
    align-items: center;
}

.us-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.us-logo img {
    height: 32px; /* Reduced from 32px */
    width: auto;
    display: block;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.chart-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 2rem;
}

.chart-label {
    font-weight: 500;
    font-size: 1rem;
    text-align: left;
}

.chart-bars {
    display: flex;
    align-items: center;
    position: relative;
    height: 50px;
    /* Prevent overflow */
    overflow: hidden;
    border-radius: 12px;
    background: #fafafa; /* subtle background for track */
}

/* Central Line */
.chart-bars::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px; /* Thicker divider */
    background: #fff;
    transform: translateX(-50%);
    z-index: 5;
}

/* Bars container flex behavior */
.bar-them, .bar-us {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    font-weight: 500;
    font-size: 0.85rem;
    position: absolute;
    top: 0;
    white-space: nowrap;
    box-sizing: border-box;
    gap: 1rem;
    min-width: fit-content;
    transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.bar-them {
    right: 50%; /* Position at center */
    background: #D0D0D0;
    color: #777777;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    justify-content: space-between;
    max-width: 50%;
}

.bar-us {
    left: 50%; /* Start at center */
    background: #00D084;
    color: #FFF;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    justify-content: space-between;
    max-width: 50%;
}

.bar-percent {
    font-weight: 600;
}

.bar-text {
    font-weight: 400;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}


/* Industry Proof (Updated for Tabbed Layout) */
.industry-proof {
    padding: 4rem 2rem;
    background: transparent;
}

.industry-proof .container {
    background: var(--color-ice-blue);
    border-radius: 40px;
    padding: 4rem 3rem;
}

.industry-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.ind-tab {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: #FFF;
    border: 1px solid transparent;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

.ind-icon img {
    width: 32px; /* Slightly larger for real photos */
    height: 32px;
    border-radius: 50%;
    object-fit: cover; /* Ensure photos don't distort */
}

.ind-tab:hover, .ind-tab.active {
    background: #FFF;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Rainbow Border Effect */
.ind-tab::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 16px; 
    padding: 2px; 
    background: linear-gradient(45deg, #FF9A9E, #FECFEF, #FAD0C4, #A18CD1, #FBC2EB); 
    -webkit-mask: 
       linear-gradient(#fff 0 0) content-box, 
       linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude; 
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ind-tab:hover::before, .ind-tab.active::before {
    opacity: 1;
}

.industry-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.industry-content.active {
    display: block;
}

.ind-grid {
    display: grid;
    grid-template-columns: 3fr 2fr; /* 60% case study, 40% image */
    gap: 2rem;
    max-width: 950px;
    margin: 0 auto;
}

.ind-main-visual {
    background: #FFF;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #EEE;
    padding: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

/* Mockup Styling to simulate UI */
.mockup-window {
    width: 100%;
    background: #FAFAFA;
    border-radius: 12px;
    border: 1px solid #E0E0E0;
    overflow: hidden;
}

.mockup-header {
    display: flex;
    align-items: center;
    padding: 0.8rem;
    background: #FFF;
    border-bottom: 1px solid #E0E0E0;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    background: #E0E0E0;
    border-radius: 50%;
}

.mockup-title {
    margin-left: 1rem;
    font-size: 0.8rem;
    color: #999;
    font-family: monospace;
}

.mockup-body {
    padding: 1rem;
    height: 300px; /* Fixed height for visual consistency */
    position: relative;
}

/* Placeholder UI elements */
.placeholder-ui {
    display: flex;
    gap: 1rem;
    height: 100%;
}

.ui-sidebar {
    width: 20%;
    background: #FFF;
    border-radius: 8px;
}

.ui-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ui-card {
    background: #FFF;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.ui-card.success {
    border-left: 4px solid var(--accent-color);
}

.ui-metric {
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.ui-big-graph {
    flex: 1;
    background: #F0F0F0;
    border-radius: 8px;
    position: relative;
}

.ind-side-panel {
    display: flex;
    flex-direction: column;
}

.side-card {
    background: #FFF;
    border-radius: 24px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #EEE;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.side-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.side-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.side-card p {
    font-size: 1rem;
    color: var(--secondary-text);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.side-card.case-study-hero .case-study-title {
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    margin-bottom: 1rem;
    text-align: left;
    width: 100%;
}

.side-card.case-study-hero .case-study-metric {
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.side-card.case-study-hero p {
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0;
    text-align: left;
    width: 100%;
}

.side-card.case-study-hero.case-study-green p,
.side-card.case-study-hero.case-study-blue p,
.side-card.case-study-hero.case-study-red p,
.side-card.case-study-hero.case-study-dark p,
.side-card.case-study-hero.case-study-purple p,
.side-card.case-study-hero.case-study-green h3,
.side-card.case-study-hero.case-study-blue h3,
.side-card.case-study-hero.case-study-red h3,
.side-card.case-study-hero.case-study-dark h3,
.side-card.case-study-hero.case-study-purple h3 {
    color: #fff !important;
}

/* Case Study Color Variants */
.side-card.case-study-green,
.case-study-green {
    background: #10b981 !important;
}

.case-study-green .case-study-metric,
.case-study-green .case-study-headline,
.case-study-green .case-study-name {
    color: #fff !important;
}

.case-study-blue {
    background: var(--brand-blue) !important;
}

.case-study-blue .case-study-metric,
.case-study-blue .case-study-headline,
.case-study-blue .case-study-name {
    color: #fff !important;
}

.case-study-red {
    background: var(--brand-red) !important;
}

.case-study-red .case-study-metric,
.case-study-red .case-study-headline,
.case-study-red .case-study-name {
    color: #fff !important;
}

.case-study-dark {
    background: #1a1a1a !important;
}

.case-study-dark .case-study-metric,
.case-study-dark .case-study-headline,
.case-study-dark .case-study-name {
    color: #fff !important;
}

.case-study-purple {
    background: #8B5CF6 !important;
}

.case-study-purple .case-study-metric,
.case-study-purple .case-study-headline,
.case-study-purple .case-study-name {
    color: #fff !important;
}

.side-metric {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.side-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--text-color);
    padding-bottom: 2px;
}

/* Case Study Hero Style */
.case-study-hero {
    text-align: left !important;
    align-items: flex-start !important;
    justify-content: center !important;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.case-study-hero .case-study-metric {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.case-study-hero .case-study-headline {
    font-size: 2.4rem !important;
    font-weight: 500 !important;
    line-height: 1.15 !important;
    color: var(--text-color) !important;
    flex-grow: 1;
    display: flex;
    align-items: center;
    margin-bottom: 0 !important;
}

.case-study-hero .case-study-name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--secondary-text);
    margin-top: auto;
}

/* How It Works (Accordion Style) */
.how-it-works {
    padding: 6rem 2rem;
    background: #000;
    color: #fff;
    border-radius: 40px;
    margin: 2rem;
    overflow: hidden;
}

.how-it-works h2 {
    color: #fff;
    text-align: left;
    margin-bottom: 3rem;
}

.hiw-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.hiw-content {
    padding-right: 2rem;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.acc-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.acc-item:last-child {
    border-bottom: none;
}

/* Active Card Style */
.acc-item.active {
    background: #FFF;
    color: #000;
    border-radius: 16px;
    padding: 1.5rem;
    border: none;
}

.acc-header {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 1rem 0;
}

.acc-item.active .acc-header {
    padding: 0 0 1rem 0;
}

.acc-icon {
    font-size: 1.2rem;
    margin-right: 1rem;
    font-weight: 300;
    width: 20px;
    text-align: center;
}

.acc-icon.open {
    display: none;
}

.acc-item.active .acc-icon.closed {
    display: none;
}

.acc-item.active .acc-icon.open {
    display: block;
}

.acc-title {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.acc-item.active .acc-title {
    opacity: 1;
    font-weight: 500;
}

.acc-item:hover .acc-title {
    opacity: 1;
}

.acc-body {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    opacity: 0;
}

.acc-item.active .acc-body {
    height: auto;
    opacity: 1;
}

.acc-body p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
    margin-left: 2.2rem; /* align with text */
}

/* Right Column Visual */
.hiw-visual {
    background: #000;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    aspect-ratio: 1 / 1;
}

.visual-content {
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
}

.visual-content.active {
    opacity: 1;
    display: block;
}

.visual-content video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

/* Special centering for video 4 (16:9 format) */
#visual-4 {
    height: 100%;
}

#visual-4.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

#visual-4 video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #222, #333);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s;
}

.play-button:hover {
    transform: scale(1.1);
    background: rgba(255,255,255,0.2);
}

.difference-section h2 {
    color: var(--text-color);
    margin-bottom: 4rem;
}

/* Mini Banners */
.mini-banner {
    padding: 6rem 2rem; /* Increased padding */
    /* Vibrant Gradient */
    background: linear-gradient(135deg, #FF3CAC 0%, #784BA0 50%, #2B86C5 100%);
    color: #fff;
    display: flex;
    flex-direction: column; /* Stack vertically */
    justify-content: center;
    align-items: center;
    gap: 2rem; /* Spacing between text and button */
    text-align: center;
}

.mini-banner p {
    margin: 0;
    font-weight: 500;
    font-size: 3rem; /* Significantly bigger */
    letter-spacing: -0.03em;
    line-height: 1.1;
    max-width: 900px;
}

.mini-banner .banner-btn {
    background: #fff;
    color: #000;
    padding: 1rem 3rem; /* Bigger button */
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: transform 0.2s ease, box-shadow 0.2s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.mini-banner .banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    background-color: #fff; /* Keep white on hover for clean look */
    color: #000;
}

.flip-rows {
    display: flex;
    flex-direction: column;
    gap: 2rem; /* Gap between rows */
    max-width: 1200px; /* Match container width */
    margin: 0 auto;
}

.flip-row-container {
    width: 100%;
    height: 300px; /* Height of the row */
    perspective: 1500px; /* Deep perspective for full row flip */
}

.flip-row-card {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 1.2s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
    /* rotateX for vertical flip */
    transform-origin: center;
}

/* Flip Effect on Hover */
.flip-row-container:hover .flip-row-card {
    transform: rotateX(180deg);
}

/* Faces */
.flip-face {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* Flex layout for the "bits" */
    display: flex;
    gap: 2rem; /* The "little bit" transparency gap */
    align-items: stretch;
}

.flip-face.back {
    transform: rotateX(180deg);
}

/* Card Bits */
.card-bit {
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    /* Flex sizing */
    flex-basis: 0;
}

.card-bit.small {
    flex-grow: 1;
}

.card-bit.big {
    flex-grow: 2;
}

/* Colors */
.green-bg {
    background-color: #00D084;
    color: #fff;
}

.blue-bg {
    background-color: var(--brand-blue);
    color: #fff;
}

.red-bg {
    background-color: var(--brand-red);
    color: #fff;
}

.light-bg {
    background-color: #FFF;
    color: var(--text-color);
}

.text-white-opacity {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Content Styling */
.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    text-align: center;
}

.card-content.left-align {
    align-items: flex-start;
    text-align: left;
}

/* Horizontal layout: icon left, text right */
.card-content.horizontal-layout {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    text-align: left;
}

.card-content.horizontal-layout .card-icon-lg {
    flex-shrink: 0;
}

.card-content.horizontal-layout .card-text-right {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.card-content.horizontal-layout .card-title-xl {
    margin-bottom: 0;
}

.card-content.horizontal-layout .back-title {
    margin-bottom: 0.5rem;
}

/* Split layout: title left 50%, description right 50% */
.card-content.split-layout {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    text-align: left;
}

.card-content.split-layout .card-title-xl {
    flex: 1;
    margin-bottom: 0;
}

.card-content.split-layout .card-desc {
    flex: 1;
}

.big-metric {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1;
}

.card-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.card-title-xl {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: #111; /* Ensure text inside cards stays dark */
}

.card-desc {
    font-size: 1.4rem;
    line-height: 1.4;
    color: #333;
}

/* Except for specific colored backgrounds that need white text */
.blue-bg .card-title-xl, .blue-bg .card-desc,
.green-bg .card-desc,
.red-bg .card-title-xl, .red-bg .card-desc {
    color: #fff;
}

.green-bg .card-title-xl {
    color: #fff;
}

.text-red {
    color: var(--brand-red);
}

.text-white-opacity {
    color: rgba(255,255,255,0.9) !important;
}

/* Video card - video fills entire card */
.card-bit.video-card {
    padding: 0;
    overflow: hidden;
}

.card-bit.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.back-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Testimonial on card back */
.testimonial-content {
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100%;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
}

.testimonial-industry {
    font-size: 0.85rem;
    color: var(--secondary-text);
}

.testimonial-quote {
    font-size: 1.5rem;
    line-height: 1.4;
    color: var(--text-color);
}

.back-desc {
    font-size: 1rem;
    line-height: 1.6;
}

.text-blue {
    color: var(--brand-blue);
}

.quote-sm {
    font-size: 1.2rem;
    font-style: italic;
}

.quote-author-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.author-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.author-role {
    font-size: 0.8rem;
    opacity: 0.7;
}


/* CTA Section */
.cta-section {
    padding: 8rem 2rem;
    text-align: center;
}

.price-tag {
    font-size: 6rem;
    font-weight: 500;
    line-height: 1;
    margin: 2rem 0 1rem;
}

.price-tag .period {
    font-size: 2rem;
    color: var(--secondary-text);
    font-weight: 500;
}

.price-sub {
    font-size: 1.2rem;
    color: var(--secondary-text);
    margin-bottom: 3rem;
}

.primary-cta {
    font-size: 1.5rem;
    padding: 1.5rem 4rem;
}

footer {
    background: #FFFFFF;
    padding: 4rem 4rem 2rem 4rem;
    border-top: 1px solid #E8E8E8;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-logo {
    display: flex;
    justify-content: center;
}

.footer-logo img {
    height: 32px;
    width: auto;
}

.footer-columns {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-link:hover {
    color: var(--accent-color);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #E8E8E8;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-text);
    font-size: 0.9rem;
    cursor: pointer;
    width: fit-content;
    position: relative;
}

.language-selector:hover {
    color: var(--text-color);
}

.language-selector svg {
    color: currentColor;
}

.language-selector .chevron {
    transition: transform 0.3s ease;
}

.language-selector.open .chevron {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    bottom: 100%;
    left: 0;
    margin-bottom: 0.5rem;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
}

.language-selector.open .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    min-width: 420px;
}

.language-option {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-color);
    font-size: 0.95rem;
    text-align: left;
}

.language-option:hover {
    background: #F5F5F5;
}

.language-option.active {
    background: #EEF0FF;
    color: var(--accent-color);
    font-weight: 500;
}

@media (max-width: 768px) {
    .language-grid {
        grid-template-columns: repeat(2, 1fr);
        min-width: 280px;
    }
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-legal-link {
    color: var(--secondary-text);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: var(--text-color);
    text-decoration: none;
}

.footer-separator {
    color: var(--secondary-text);
    font-size: 0.85rem;
}

.footer-copyright {
    margin: 0;
    color: var(--secondary-text);
    font-size: 0.85rem;
}

.footer-egg {
    margin: 0.5rem 0 0 0;
    font-size: 0.8rem;
    color: var(--secondary-text);
    opacity: 0.6;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
        grid-template-columns: auto 1fr auto;
        gap: 1rem;
    }

    nav.scrolled {
        padding: 0.8rem 1.5rem;
    }
    
    /* Hide center pricing link on mobile to save space, or move to menu */
    .nav-center {
        display: none;
    }
    
    .nav-right {
        gap: 1rem;
    }
    
    .nav-login {
        font-size: 0.9rem;
    }
    
    .nav-cta-primary {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    h1 {
        font-size: 3rem;
    }
    
    .egg {
        display: none; /* Hide eggs on mobile to avoid clutter/accidental touches */
    }

    .how-it-works {
        margin: 1rem;
        border-radius: 24px;
        padding: 4rem 1.5rem;
    }
    
    .comparison-section {
        padding: 4rem 1.5rem;
    }

    .comparison-header {
        display: none;
    }

    .chart-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .chart-label {
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .chart-bars {
        height: 50px;
    }

    .bar-them {
        justify-content: center;
    }

    .bar-us {
        justify-content: center;
    }
    
    .ind-grid {
        grid-template-columns: 1fr;
    }
    
    .ind-main-visual {
        min-height: 300px;
    }
    
    .hiw-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hiw-content {
        padding-right: 0;
    }
    
    /* Flip Card Mobile: Stack Bits vertically inside face */
    .flip-row-container {
        height: auto; /* Allow height to grow */
        perspective: none; /* Disable 3D on mobile if stacking? Or keep it but change layout */
    }
    
    .flip-face {
        position: relative; /* Flow naturally */
        display: flex;
        flex-direction: column;
        gap: 1rem;
        height: auto;
    }
    
    .flip-face.back {
        display: none; /* Hide back on mobile for simplicity, or show below? */
        /* Let's just show the front content on mobile for now as "Flip" is hard to trigger without hover */
    }
    
    /* Revert to simple stack for mobile usability */
    .flip-rows {
        gap: 1rem;
    }
    
    .flip-row-container {
        height: auto;
        perspective: none;
    }
    
    .flip-row-card {
        transform: none !important;
        transition: none;
    }
    
    .flip-face {
        position: static; /* Document flow */
        transform: none !important;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .flip-face.back {
        display: none; /* Hide back on mobile for simplicity, or show below? */
        /* Let's just show the front content on mobile for now as "Flip" is hard to trigger without hover */
    }
    
    .card-bit {
        width: 100%;
        flex: none;
        min-height: 250px;
    }
}

/* ========================================
   Social Proof Section
======================================== */

.social-proof-section {
    width: 100%;
    background: #FAFAFA;
    padding: 2rem 0;
    margin: 0;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-scroll-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.stats-scroll-track {
    display: flex;
    gap: 3rem;
    animation: scroll-left 40s linear infinite;
    width: fit-content;
}

.stats-scroll-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.stat-card {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    opacity: 1;
}

.stat-card .stat-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1;
}

.stat-card .stat-label {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--secondary-text);
    line-height: 1;
    white-space: nowrap;
}

/* Fade effect on edges */
.social-proof-carousel::before,
.social-proof-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.social-proof-carousel::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color) 0%, transparent 100%);
}

.social-proof-carousel::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color) 0%, transparent 100%);
}

.carousel-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    animation: scroll 40s linear infinite;
    width: fit-content;
}

/* Pause on hover */
.social-proof-carousel:hover .carousel-track {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.carousel-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo items */
.logo-item {
    width: 140px;
    height: 60px;
}

.logo-item svg {
    width: 100%;
    height: 100%;
    color: #111111;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.logo-item:hover svg {
    opacity: 1;
}

/* Stat items with rounded boxes */
.stat-item {
    width: auto;
    height: auto;
}

.stat-circle {
    padding: 0.9rem 1.4rem;
    border-radius: 10px;
    background: #2a2a2a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
    min-width: 130px;
}

.stat-circle:hover {
    background: #111111;
    transform: translateY(-1px);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: #FFFFFF;
    text-align: center;
    line-height: 1.2;
    opacity: 0.85;
}

/* ========================================
   Flip Cards Funnel Types Section
======================================== */

.flip-funnel-section {
    width: 100%;
    background: #FFFFFF;
    padding: 5rem 2rem;
    text-align: center;
}

.flip-funnel-headline {
    font-size: 3rem;
    font-weight: 500;
    color: var(--text-color);
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.flip-funnel-subhead {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--secondary-text);
    margin: 0 0 3rem 0;
}

.flip-funnel-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.flip-funnel-card {
    perspective: 1000px;
    height: 280px;
}

.flip-funnel-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-funnel-card:hover .flip-funnel-inner {
    transform: rotateY(180deg);
}

.flip-funnel-front,
.flip-funnel-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.flip-funnel-front {
    background: #F5F5F5;
    border: 2px solid #E0E0E0;
}

.flip-funnel-front h3 {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--text-color);
    margin: 0;
}

.flip-funnel-back {
    background: var(--text-color);
    color: #FFFFFF;
    transform: rotateY(180deg);
}

.flip-funnel-back p {
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

/* Winner Card Styling */
.winner-card .flip-funnel-front {
    background: var(--accent-color);
    border: 2px solid var(--accent-color-dark);
}

.winner-card .flip-funnel-front h3 {
    color: #FFFFFF;
}

.winner-card .flip-funnel-back {
    background: var(--accent-color-dark);
}

/* ========================================
   Problem Section: Interactive Cards
======================================== */

.problem-section {
    width: 100%;
    background: var(--color-snow);
    padding: 5rem 2rem;
    text-align: center;
}

.problem-section-headline {
    font-size: 3rem;
    font-weight: 500;
    color: var(--text-color);
    margin: 0 0 3rem 0;
    line-height: 1.2;
}

.problem-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
}

.problem-card-interactive {
    background: var(--color-ice-blue);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

/* Animated electric border effect */
.problem-card-interactive::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 3px;
    background: conic-gradient(from 0deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.problem-card-interactive[data-problem="1"]::before {
    background: conic-gradient(
        from var(--angle),
        transparent 0deg 70deg,
        var(--color-lavender-pink) 80deg 100deg,
        var(--color-lavender-pink) 100deg 120deg,
        transparent 130deg 360deg
    );
    animation: electricRotate 3s linear infinite;
}

.problem-card-interactive[data-problem="2"]::before {
    background: conic-gradient(
        from var(--angle),
        transparent 0deg 70deg,
        var(--color-honey) 80deg 100deg,
        var(--color-honey) 100deg 120deg,
        transparent 130deg 360deg
    );
    animation: electricRotate 3s linear infinite;
    animation-delay: 0.75s;
}

.problem-card-interactive[data-problem="3"]::before {
    background: conic-gradient(
        from var(--angle),
        transparent 0deg 70deg,
        var(--color-sky-blue) 80deg 100deg,
        var(--color-sky-blue) 100deg 120deg,
        transparent 130deg 360deg
    );
    animation: electricRotate 3s linear infinite;
    animation-delay: 1.5s;
}

.problem-card-interactive[data-problem="4"]::before {
    background: conic-gradient(
        from var(--angle),
        transparent 0deg 70deg,
        var(--color-coral) 80deg 100deg,
        var(--color-coral) 100deg 120deg,
        transparent 130deg 360deg
    );
    animation: electricRotate 3s linear infinite;
    animation-delay: 2.25s;
}

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes electricRotate {
    0% {
        --angle: 0deg;
    }
    100% {
        --angle: 360deg;
    }
}

/* Active and hover state with individual colors */
.problem-card-interactive[data-problem="1"].active,
.problem-card-interactive[data-problem="1"]:hover {
    background: var(--color-vivid-magenta);
    border-color: var(--color-vivid-magenta);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.problem-card-interactive[data-problem="2"].active,
.problem-card-interactive[data-problem="2"]:hover {
    background: var(--color-amber-gold);
    border-color: var(--color-amber-gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.problem-card-interactive[data-problem="3"].active,
.problem-card-interactive[data-problem="3"]:hover {
    background: var(--color-electric-blue);
    border-color: var(--color-electric-blue);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.problem-card-interactive[data-problem="4"].active,
.problem-card-interactive[data-problem="4"]:hover {
    background: var(--color-signal-red);
    border-color: var(--color-signal-red);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.problem-card-interactive[data-problem="1"].active .problem-card-text,
.problem-card-interactive[data-problem="1"]:hover .problem-card-text,
.problem-card-interactive[data-problem="3"].active .problem-card-text,
.problem-card-interactive[data-problem="3"]:hover .problem-card-text,
.problem-card-interactive[data-problem="4"].active .problem-card-text,
.problem-card-interactive[data-problem="4"]:hover .problem-card-text {
    color: #fff;
}

.problem-card-interactive[data-problem="2"].active .problem-card-text,
.problem-card-interactive[data-problem="2"]:hover .problem-card-text {
    color: var(--text-color);
}

.problem-card-content {
    width: 100%;
    position: relative;
    z-index: 2;
}

.problem-card-text {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    color: var(--text-color);
    transition: color 0.3s ease;
}

/* Simple closeline */
.problem-closeline-simple {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--secondary-text);
    margin: 0 auto;
    max-width: 700px;
    line-height: 1.5;
    font-style: italic;
}

/* ========================================
   Solution Section: Refined Minimal
======================================== */

.solution-section {
    width: 100%;
    background: #FFFFFF;
    padding: 6rem 2rem;
    text-align: center;
}

.solution-headline {
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--text-color);
    margin: 0 0 1rem 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.highlight-pf {
    font-weight: 700;
}

.solution-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--secondary-text);
    margin: 0 auto 4rem auto;
    max-width: 600px;
    text-align: center;
    line-height: 1.5;
}

/* Video wrapper and container */
.solution-video-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.solution-video-container {
    width: 100%;
    margin: 0 auto 3rem auto;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.solution-video-container video {
    width: 100%;
    height: auto;
    display: block;
}

/* Closeline */
.solution-closeline {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--secondary-text);
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    font-style: italic;
}

/* ========================================
   What if your funnel didn't suck Section
======================================== */

.funnel-value-section {
    width: 100%;
    background: var(--color-snow);
    padding: 5rem 2rem;
    text-align: center;
}

.funnel-value-headline {
    font-size: 3rem;
    font-weight: 500;
    color: var(--text-color);
    margin: 0 0 3rem 0;
    line-height: 1.2;
}

.funnel-value-points {
    max-width: 1400px;
    margin: 0 auto 3rem auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-point {
    background: var(--color-sky-blue);
    border-radius: 24px;
    padding: 3rem 2rem;
    margin: 0;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.value-point:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.value-point:nth-child(1) {
    background: var(--color-sky-blue);
}

.value-point:nth-child(2) {
    background: var(--color-honey);
}

.value-point:nth-child(3) {
    background: var(--color-lavender-pink);
}

.value-point:nth-child(4) {
    background: var(--color-coral);
}

.value-number {
    font-size: 5rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1;
    margin-bottom: 1rem;
}

.value-text {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-color);
    line-height: 1.4;
    max-width: 280px;
}

.funnel-value-close {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-color);
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .social-proof-section {
        padding: 1.5rem 0;
    }

    .stats-scroll-track {
        gap: 2rem;
    }

    .stat-card .stat-number {
        font-size: 1.2rem;
    }

    .stat-card .stat-label {
        font-size: 0.75rem;
    }

    .problem-section {
        padding: 3rem 1.5rem;
    }

    .problem-section-headline {
        font-size: 1.75rem;
        margin: 0 0 2rem 0;
    }

    .problem-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .problem-card-interactive {
        padding: 2.5rem 1.5rem;
        min-height: 180px;
    }

    .problem-card-text {
        font-size: 1.2rem;
    }

    .problem-closeline-simple {
        font-size: 1.1rem;
    }

    .solution-section {
        padding: 3rem 1.5rem;
    }

    .solution-headline {
        font-size: 1.75rem;
        margin: 0 0 0.5rem 0;
    }

    .solution-subtitle {
        font-size: 1rem;
        margin: 0 auto 2rem auto;
    }

    .solution-video-container {
        margin: 0 auto 2rem auto;
    }

    .solution-closeline {
        font-size: 1rem;
    }

    .funnel-value-section {
        padding: 3rem 1.5rem;
    }

    .funnel-value-headline {
        font-size: 1.75rem;
        margin: 0 0 2rem 0;
    }

    .funnel-value-points {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 0 auto 2rem auto;
    }

    .value-point {
        padding: 2.5rem 1.5rem;
        min-height: 200px;
        border-radius: 20px;
    }

    .value-number {
        font-size: 3.5rem;
        margin-bottom: 0.75rem;
    }

    .value-text {
        font-size: 0.95rem;
    }

    .funnel-value-close {
        font-size: 1.1rem;
    }

    .flip-funnel-section {
        padding: 3rem 1.5rem;
    }

    .flip-funnel-headline {
        font-size: 1.75rem;
        margin: 0 0 0.5rem 0;
    }

    .flip-funnel-subhead {
        font-size: 0.95rem;
        margin: 0 0 2rem 0;
    }

    .flip-funnel-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .flip-funnel-card {
        height: 240px;
    }

    .flip-funnel-front h3 {
        font-size: 1.5rem;
    }

    .flip-funnel-back p {
        font-size: 1rem;
    }
}

/* ============================================
   SUCCESS STORIES SECTION
   ============================================ */

.success-stories-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #E8F5FF 0%, #F0E8FF 100%);
}

.success-container {
    padding: 0 8rem;
    max-width: 100%;
}

.success-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
    max-width: 100%;
}

.success-header h2 {
    font-size: 4.5rem;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.1;
    max-width: 700px;
    text-align: left;
}

.success-cta-btn {
    background: var(--text-color);
    color: #FFFFFF;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    white-space: nowrap;
    border: 2px solid var(--text-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.success-cta-btn:hover {
    background: #FFFFFF;
    color: var(--text-color);
    border-color: var(--text-color);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.success-carousel {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    margin-left: -8rem;
    margin-right: -8rem;
}

.success-cards-wrapper {
    width: 100vw;
    overflow-x: auto;
    overflow-y: hidden;
    padding-left: 8rem;
    cursor: grab;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Hide scrollbar for desktop */
.success-cards-wrapper::-webkit-scrollbar {
    display: none;
}

.success-cards-wrapper:active {
    cursor: grabbing;
}

.success-cards-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    padding-bottom: 1rem;
}

.success-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-width: 380px;
    flex-shrink: 0;
}

.success-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.success-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.success-logo {
    display: flex;
    align-items: center;
}

.success-logo-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-color);
}

.case-link {
    font-size: 0.9rem;
    color: var(--secondary-text);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.case-link:hover {
    color: var(--text-color);
    border-bottom-color: var(--text-color);
}

.success-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    background: #F5F5F5;
}

.success-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.success-stat {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #E8E8E8;
}

.success-stat .stat-number {
    font-size: 3rem;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1;
    flex-shrink: 0;
}

.success-stat .stat-label {
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: 500;
    line-height: 1.2;
}

.success-industry {
    font-size: 0.95rem;
    color: var(--secondary-text);
    font-weight: 500;
}

.carousel-controls {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    padding-left: 8rem;
}

.carousel-nav {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--text-color);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    color: var(--text-color);
}

.carousel-nav:hover {
    background: var(--text-color);
    color: #FFFFFF;
    transform: scale(1.05);
}

.carousel-nav:active {
    transform: scale(0.95);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .success-cards-track {
        grid-template-columns: repeat(4, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .success-stories-section {
        padding: 4rem 0;
    }

    .success-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .success-header h2 {
        font-size: 2rem;
    }

    .success-carousel {
        gap: 1rem;
    }

    .success-cards-track {
        grid-template-columns: repeat(4, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .success-card {
        padding: 1.5rem;
    }

    .success-image {
        height: 160px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */

.final-cta-section {
    padding: 15rem 2rem;
    background: #000000;
    position: relative;
    overflow: hidden;
}

/* Video Background - covers entire section */
.final-cta-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

.final-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.final-cta-card {
    background: transparent;
    border-radius: 32px;
    padding: 5rem 3rem;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

/* User Avatars */
.cta-avatars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: -0.5rem;
}

.cta-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid #000;
    object-fit: cover;
    margin-left: -12px;
    transition: transform 0.3s ease;
}

.cta-avatar:first-child {
    margin-left: 0;
}

.cta-avatar:hover {
    transform: translateY(-4px) scale(1.05);
    z-index: 10;
}

.cta-avatar-count {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #2A2A2A;
    border: 3px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: #FFFFFF;
    margin-left: -12px;
}

/* Headline */
.final-cta-headline {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 500;
    color: #FFFFFF;
    line-height: 1.2;
    max-width: 800px;
    margin: 0;
}

/* CTA Buttons */
.final-cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.final-cta-btn {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid transparent;
    white-space: nowrap;
}

.final-cta-btn.primary {
    background: #FFFFFF;
    color: #000000;
    border-color: #FFFFFF;
}

.final-cta-btn.primary:hover {
    background: var(--color-electric-blue);
    border-color: var(--color-electric-blue);
    color: #FFFFFF;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.3);
}

.final-cta-btn.secondary {
    background: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.final-cta-btn.secondary:hover {
    background: #FFFFFF;
    color: #000000;
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .final-cta-section {
        padding: 4rem 1.5rem;
    }

    .final-cta-card {
        padding: 3rem 2rem;
        border-radius: 24px;
        gap: 2rem;
    }

    .final-cta-card::before {
        border-radius: 24px;
    }

    .cta-avatars {
        gap: 0;
    }

    .cta-avatar {
        width: 44px;
        height: 44px;
        margin-left: -10px;
        border-width: 2px;
    }

    .cta-avatar-count {
        width: 44px;
        height: 44px;
        margin-left: -10px;
        font-size: 0.75rem;
        border-width: 2px;
    }

    .final-cta-headline {
        font-size: 1.75rem;
    }

    .final-cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .final-cta-btn {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* ========================================
   PRICING SECTION
   ======================================== */

.pricing-section {
    padding: 8rem 4rem;
    background: linear-gradient(135deg, var(--color-snow) 0%, var(--color-ice-blue) 100%);
}

.pricing-container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .pricing-container {
        padding: 0 1rem;
    }
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-header h2 {
    font-size: 4rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.pricing-subheadline {
    font-size: 1.25rem;
    color: var(--secondary-text);
    font-weight: 400;
}

/* Billing Toggle */
.billing-toggle-section {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.billing-toggle-wrapper {
    display: flex;
    background: #FFFFFF;
    border-radius: 50px;
    padding: 0.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    gap: 0.5rem;
}

.billing-option {
    padding: 0.875rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
    color: var(--secondary-text);
}

.billing-option.active {
    background: var(--text-color);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.billing-option:hover:not(.active) {
    background: #F5F7FA;
    color: var(--text-color);
}

.billing-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.billing-savings {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-color);
    margin: 0;
}

.billing-description {
    font-size: 1rem;
    color: var(--secondary-text);
    margin: 0;
}

.billing-upgrade {
    font-size: 0.95rem;
    color: var(--secondary-text);
    margin: 0;
    font-style: italic;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 100%;
    width: 100%;
}

/* Desktop - 5 columns that scale */
@media (min-width: 769px) {
    .pricing-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: clamp(0.5rem, 1.2vw, 1.5rem);
    }

    .pricing-card {
        min-width: 0; /* Allow cards to shrink below their content width */
    }
}

.pricing-card {
    background: #FFFFFF;
    border-radius: clamp(16px, 2vw, 24px);
    padding: clamp(1.25rem, 2vw, 3rem) clamp(0.75rem, 1.5vw, 2.5rem);
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 1.5vw, 2rem);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card.popular {
    border-color: var(--color-electric-blue);
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.2);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 16px 48px rgba(102, 126, 234, 0.25);
}

.popular-badge {
    position: absolute;
    top: clamp(-10px, -1vw, -12px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-electric-blue);
    color: #FFFFFF;
    padding: clamp(0.35rem, 0.4vw, 0.5rem) clamp(1rem, 1.2vw, 1.5rem);
    border-radius: 50px;
    font-size: clamp(0.65rem, 0.75vw, 0.85rem);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.plan-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.plan-name {
    font-size: clamp(1rem, 1.3vw, 1.75rem);
    font-weight: 500;
    color: var(--text-color);
    margin: 0;
}

.plan-description {
    font-size: clamp(0.75rem, 0.85vw, 1rem);
    color: var(--secondary-text);
    line-height: 1.4;
    margin: 0;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #F0F0F0;
}

.price-amount {
    font-size: clamp(1.75rem, 2.5vw, 3.5rem);
    font-weight: 500;
    color: var(--text-color);
    line-height: 1;
}

.price-period {
    font-size: clamp(0.85rem, 1vw, 1.25rem);
    color: var(--secondary-text);
    font-weight: 400;
}

.plan-highlight {
    background: #F5F7FA;
    padding: clamp(0.75rem, 1vw, 1rem) clamp(1rem, 1.2vw, 1.5rem);
    border-radius: 12px;
    font-size: clamp(0.75rem, 0.85vw, 0.95rem);
    font-weight: 500;
    color: var(--text-color);
    text-align: center;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(0.5rem, 0.8vw, 1rem);
    flex-grow: 1;
}

.plan-features li {
    font-size: clamp(0.75rem, 0.85vw, 1rem);
    color: var(--text-color);
    padding-left: clamp(1.25rem, 1.5vw, 1.75rem);
    position: relative;
    line-height: 1.5;
}

.plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-electric-blue);
    font-weight: 700;
    font-size: clamp(0.85rem, 0.95vw, 1.1rem);
}

.plan-features li strong {
    font-weight: 500;
    color: var(--text-color);
}

.plan-cta {
    background: var(--text-color);
    color: #FFFFFF;
    padding: clamp(0.85rem, 1vw, 1.25rem) clamp(1.25rem, 1.5vw, 2rem);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(0.85rem, 0.95vw, 1.1rem);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid var(--text-color);
    display: block;
}

.plan-cta:hover {
    background: #FFFFFF;
    color: var(--text-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.plan-cta.primary {
    background: var(--color-electric-blue);
    border-color: var(--color-electric-blue);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.plan-cta.primary:hover {
    background: #5568d3;
    color: #FFFFFF;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.5);
}

.plan-note {
    font-size: 0.9rem !important;
    color: var(--secondary-text) !important;
    font-style: italic;
}

/* Responsive */
/* Mobile - Carousel mode handled by mobile.css */
@media (max-width: 768px) {
    .pricing-section {
        padding: 4rem 1.5rem;
    }

    .pricing-header h2 {
        font-size: 2.5rem;
    }

    .billing-toggle-section {
        margin-top: 2rem;
        gap: 1rem;
    }

    .billing-toggle-wrapper {
        width: 100%;
        max-width: 400px;
    }

    .billing-option {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .billing-info {
        padding: 0 1rem;
    }

    .billing-savings {
        font-size: 1rem;
    }

    .billing-description {
        font-size: 0.9rem;
    }

    .billing-upgrade {
        font-size: 0.85rem;
    }

    /* Reset all clamp() values to normal sizes for mobile carousel */
    .pricing-card {
        padding: 2.5rem 2rem;
        gap: 2rem;
        border-radius: 24px;
    }

    .plan-name {
        font-size: 1.5rem;
    }

    .plan-description {
        font-size: 1rem;
        line-height: 1.5;
    }

    .price-amount {
        font-size: 2.75rem;
    }

    .price-period {
        font-size: 1.1rem;
    }

    .plan-highlight {
        font-size: 0.95rem;
        padding: 1rem 1.5rem;
    }

    .plan-features {
        gap: 1rem;
    }

    .plan-features li {
        font-size: 1rem;
        padding-left: 1.75rem;
    }

    .plan-features li::before {
        font-size: 1.1rem;
    }

    .plan-cta {
        font-size: 1.1rem;
        padding: 1.25rem 2rem;
    }

    .popular-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1.5rem;
        top: -12px;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
    padding: 6rem 4rem;
    background: #FAFAFA;
}

.faq-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 3rem;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 2rem;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #FAFAFA;
}

.faq-question h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-color);
    margin: 0;
    flex: 1;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--text-color);
    font-weight: 300;
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.75rem 2rem;
}

.faq-answer p {
    font-size: 1rem;
    color: var(--secondary-text);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 1.5rem;
    }

    .faq-section h2 {
        font-size: 2rem;
    }

    .faq-question {
        padding: 1.5rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
}

/* ========================================
   BOTTOM CTA SECTION
   ======================================== */

.bottom-cta-section {
    padding: 6rem 4rem;
    background: linear-gradient(135deg, var(--color-snow) 0%, var(--color-ice-blue) 100%);
    text-align: center;
}

.bottom-cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.bottom-cta-headline {
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.bottom-cta-subheadline {
    font-size: 1.35rem;
    color: var(--secondary-text);
    margin-bottom: 3rem;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bottom-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.bottom-cta-primary {
    display: inline-block;
    background: var(--text-color);
    color: #FFFFFF;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.15rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid var(--text-color);
}

.bottom-cta-primary:hover {
    background: #FFFFFF;
    color: var(--text-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.bottom-cta-secondary {
    display: inline-block;
    color: var(--text-color);
    padding: 1.25rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.15rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid var(--text-color);
    background: transparent;
}

.bottom-cta-secondary:hover {
    background: var(--text-color);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .bottom-cta-section {
        padding: 4rem 1.5rem;
    }

    .bottom-cta-headline {
        font-size: 2.25rem;
    }

    .bottom-cta-subheadline {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .bottom-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .bottom-cta-primary,
    .bottom-cta-secondary {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}
