/* ===================================================
   MENERO LANDING PAGE — CSS
   Colors: #55B359 (green) / #B9E932 (lime)
   =================================================== */

/* --- CSS Custom Properties --- */
:root {
    /* Brand */
    --green: #55B359;
    --lime: #B9E932;
    --gradient: linear-gradient(135deg, #55B359, #B9E932);

    /* Fonts */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --duration: 0.3s;
}

/* Dark theme (default) */
[data-theme="dark"] {
    --bg: #0A0A0A;
    --bg-secondary: #111111;
    --bg-card: #161616;
    --bg-card-hover: #1A1A1A;
    --bg-glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    --text: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-tertiary: rgba(255, 255, 255, 0.4);
    --shadow: 0 0 0 1px rgba(255,255,255,0.05);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --navbar-bg: rgba(10, 10, 10, 0.8);
    --pain-bg: var(--bg-card);
    --pain-border: var(--border);
    --pain-icon: var(--text-secondary);
}

/* Light theme */
[data-theme="light"] {
    --bg: #FAFAFA;
    --bg-secondary: #F0F0F0;
    --bg-card: #FFFFFF;
    --bg-card-hover: #F5F5F5;
    --bg-glass: rgba(0, 0, 0, 0.02);
    --border: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(0, 0, 0, 0.15);
    --text: #111111;
    --text-secondary: rgba(0, 0, 0, 0.6);
    --text-tertiary: rgba(0, 0, 0, 0.4);
    --shadow: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --navbar-bg: rgba(250, 250, 250, 0.85);
    --pain-bg: var(--bg-card);
    --pain-border: var(--border);
    --pain-icon: var(--text-secondary);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background var(--duration) var(--ease), color var(--duration) var(--ease);
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* --- Gradient Text --- */
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: 12px;
    transition: all var(--duration) var(--ease);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient);
    color: #000;
    box-shadow: 0 4px 20px rgba(85, 179, 89, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 30px rgba(85, 179, 89, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--green);
    color: var(--green);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
    border-radius: 14px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
    border-radius: 10px;
}

/* --- Apple App Store Button --- */
.apple-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-family: var(--font);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.apple-text {
    display: flex;
    flex-direction: column;
}

.apple-small {
    font-size: 10px;
    line-height: 1.2;
}

.apple-big {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
}

[data-theme="dark"] .apple-button {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
}

[data-theme="light"] .apple-button {
    background-color: #000000;
    color: #ffffff;
    border: 1px solid #000000;
}

.apple-button:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.apple-logo {
    width: 22px;
    height: 22px;
    margin-right: 10px;
}

[data-theme="dark"] .apple-logo {
    fill: #000000;
}

[data-theme="light"] .apple-logo {
    fill: #ffffff;
}

.btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.top-text {
    font-size: 10px;
    font-weight: 400;
}

.bottom-text {
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

/* --- Section Headers --- */
.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--green);
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

#features .section-header {
    max-width: 900px;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-title em {
    font-style: italic;
}

.section-lead {
    font-size: 16px;
    color: var(--text-tertiary);
    font-weight: 400;
    margin-bottom: 12px;
    line-height: 1.5;
}

/* ===========================================
   NAVBAR
   =========================================== */
.navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    padding: 5px 36px 0px 36px;
    width: auto;
    max-width: 1300px;
    background: var(--navbar-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 100px;
    transition: all var(--duration) var(--ease);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.navbar.scrolled {
    padding: 10px 36px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding-bottom: 30px;
}

/* Theme-aware logo visibility */
.nav-logo-light { display: none; }
.nav-logo-dark { display: block; }

[data-theme="light"] .nav-logo-dark { display: none; }
[data-theme="light"] .nav-logo-light { display: block; }

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

.nav-links a {
    font-size: 14px;
    white-space: nowrap;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--duration) var(--ease);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-actions .btn {
    padding: 8px 20px;
    font-size: 13px;
    border-radius: 100px;
}

.nav-apple-btn {
    padding: 5px 16px !important;
    border-radius: 100px !important;
    gap: 8px !important;
    white-space: nowrap;
    height: 38px;
}

.nav-apple-btn .apple-logo {
    width: 16px !important;
    height: 16px !important;
}

.nav-apple-btn .apple-text {
    gap: 0 !important;
}

.nav-apple-btn .apple-small {
    font-size: 8px !important;
    line-height: 1.2 !important;
}

.nav-apple-btn .apple-big {
    font-size: 14px !important;
    line-height: 1.2 !important;
}

.theme-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    transition: all var(--duration) var(--ease);
    color: var(--text-secondary);
}

.theme-toggle:hover {
    border-color: var(--border-hover);
    color: var(--text);
}

[data-theme="dark"] .icon-moon { display: none; }
[data-theme="light"] .icon-sun { display: none; }

.mobile-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

/* ===========================================
   HERO
   =========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 0 60px;
    overflow: clip;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}


.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #55B359, transparent);
    top: -200px;
    left: -100px;
}

.hero-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #B9E932, transparent);
    bottom: -100px;
    right: -150px;
    opacity: 0.25;
}

[data-theme="light"] .hero-gradient-orb {
    opacity: 0.15;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

[data-theme="light"] .hero-grid-overlay {
    background-image:
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.hero-badge svg {
    color: var(--lime);
}

.hero-title {
    font-size: clamp(36px, 6vw, 68px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
}

.hero-bullets li {
    font-size: clamp(15px, 1.8vw, 17px);
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
}

.hero-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gradient);
}

.hero-bullets li:last-child {
    color: var(--text);
    font-weight: 600;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.stars {
    display: flex;
    gap: 2px;
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    overflow: visible;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.hero-image img {
    width: 70vw;
    max-width: 1000px;
    height: auto;
    position: relative;
    z-index: 2;
    border-radius: 16px;
}

.phone-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(85,179,89,0.3), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    border-radius: 50%;
    filter: blur(60px);
}

[data-theme="light"] .phone-glow {
    opacity: 0.3;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-tertiary);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===========================================
   LOGOS
   =========================================== */
.logos-section {
    padding: 48px 0;
    border-bottom: 1px solid var(--border);
}

.logos-label {
    text-align: center;
    font-size: 13px;
    color: var(--text-tertiary);
    margin-bottom: 32px;
}

.logos-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-tertiary);
    font-size: 15px;
    font-weight: 600;
    opacity: 0.5;
    transition: opacity var(--duration) var(--ease);
}

.logo-item:hover {
    opacity: 0.8;
}

/* ===========================================
   PROBLEM
   =========================================== */
.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.pain-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--pain-bg);
    border: 1px solid var(--pain-border);
    border-radius: 16px;
    transition: all var(--duration) var(--ease);
}

.pain-card:hover {
    transform: translateY(-2px);
    border-color: var(--border-hover);
}

.pain-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--pain-icon);
}

.pain-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.pain-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.transition-text {
    text-align: center;
}

.transition-text p {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
}

/* ===========================================
   SOLUTION
   =========================================== */
.solution-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.solution-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 16px;
}

.solution-desc:first-of-type {
    margin-top: 24px;
}

.solution-desc:last-of-type {
    margin-bottom: 32px;
}

.solution-highlight {
    color: var(--text);
    font-weight: 600;
    font-size: 17px;
}

.solution-dimmed {
    color: var(--text-tertiary);
    font-style: italic;
}

.solution-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.solution-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 320px;
}

.sol-card {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all var(--duration) var(--ease);
}

.sol-card:hover {
    border-color: var(--border-hover);
    transform: translateX(4px);
}

.sol-card span {
    font-weight: 600;
    font-size: 15px;
}

.sol-card p {
    font-size: 13px;
    color: var(--text-tertiary);
    margin-left: auto;
}

/* ===========================================
   HOW IT WORKS
   =========================================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    padding: 40px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all var(--duration) var(--ease);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity var(--duration) var(--ease);
}

.step-card:hover::before {
    opacity: 1;
}

.step-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.step-number {
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 24px;
}

.step-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(85, 179, 89, 0.1);
    border: 1px solid rgba(85, 179, 89, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-footnote {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #B9E932;
    letter-spacing: 0.02em;
}

/* ===========================================
   FEATURES
   =========================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all var(--duration) var(--ease);
}

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.feature-card-lg {
    grid-column: span 2;
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(85, 179, 89, 0.1);
    border: 1px solid rgba(85, 179, 89, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Feature visual mini-card */
.feature-visual {
    margin-top: 24px;
}

.feature-mini-card {
    padding: 16px 20px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.fmc-label {
    display: block;
    font-size: 12px;
    color: var(--text-tertiary);
    margin-bottom: 8px;
}

.fmc-bar {
    height: 6px;
    background: rgba(255,255,255,0.08);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

[data-theme="light"] .fmc-bar {
    background: rgba(0,0,0,0.06);
}

.fmc-fill {
    height: 100%;
    background: var(--gradient);
    border-radius: 3px;
}

.fmc-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Feature tags */
.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.feature-tag {
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 100px;
    background: rgba(85, 179, 89, 0.1);
    border: 1px solid rgba(85, 179, 89, 0.15);
    color: var(--green);
}

/* ===========================================
   GOALS
   =========================================== */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.goal-card {
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all var(--duration) var(--ease);
}

.goal-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.goal-card-highlight {
    background: linear-gradient(135deg, rgba(85,179,89,0.08), rgba(185,233,50,0.05));
    border-color: rgba(85,179,89,0.2);
}

.goal-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(85, 179, 89, 0.1);
    border: 1px solid rgba(85, 179, 89, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    margin-bottom: 20px;
}

.goal-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.goal-tagline {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #B9E932;
    margin-bottom: 12px;
}

.goal-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===========================================
   VALUE (Daily Life)
   =========================================== */
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.value-card {
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all var(--duration) var(--ease);
}

.value-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.value-stat {
    font-size: 36px;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    line-height: 1;
}

.value-stat svg {
    stroke: var(--green);
}

.value-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===========================================
   BEFORE & AFTER
   =========================================== */
.ba-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: stretch;
}

.ba-column {
    padding: 36px;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.ba-before {
    background: var(--pain-bg);
    border-color: var(--pain-border);
}

.ba-after {
    background: rgba(85, 179, 89, 0.05);
    border-color: rgba(85, 179, 89, 0.15);
}

.ba-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
}

.ba-before .ba-header { color: var(--pain-icon); }
.ba-after .ba-header { color: var(--green); }

.ba-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ba-list li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
    padding-left: 24px;
    position: relative;
}

.ba-before .ba-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pain-icon);
    opacity: 0.5;
}

.ba-after .ba-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    opacity: 0.6;
}

.ba-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ba-divider span {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-tertiary);
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
}

/* ===========================================
   TESTIMONIALS
   =========================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.testimonial-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all var(--duration) var(--ease);
}

.testimonial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: #000;
}

.testimonial-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.testimonial-role {
    display: block;
    font-size: 13px;
    color: var(--text-tertiary);
}

/* ===========================================
   COMPARISON TABLE
   =========================================== */
.comparison-table-wrap {
    overflow-x: auto;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: var(--bg-card);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    font-weight: 600;
    font-size: 15px;
    padding: 20px 24px;
    color: var(--text-secondary);
}

.comparison-table td:first-child,
.comparison-table th:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table td:first-child {
    color: var(--text-secondary);
}

.highlight-col {
    background: rgba(85, 179, 89, 0.05);
}

.comparison-table thead .highlight-col {
    color: var(--green) !important;
    font-weight: 700 !important;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.table-note {
    font-size: 12px;
    color: var(--text-tertiary);
    font-style: italic;
}

.table-yes,
.table-no,
.table-warn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    white-space: nowrap;
}

.table-yes {
    color: #55B359;
    font-weight: 600;
}

.table-no {
    color: var(--text-tertiary);
    opacity: 0.6;
}

.table-warn {
    color: #f59e0b;
}

.comparison-table th,
.comparison-table td {
    font-size: 13px;
}

.comparison-table td:first-child {
    font-size: 14px;
}

/* ===========================================
   DARK SHOWCASE
   =========================================== */
.dark-showcase-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 64px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
}

.dark-showcase-content h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.dark-showcase-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.dark-showcase-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ds-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 10px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    color: var(--text-secondary);
}

/* Chart visual */
.ds-chart {
    padding: 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.ds-chart-label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-tertiary);
    margin-bottom: 20px;
}

.ds-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 120px;
}

.ds-bar {
    flex: 1;
    background: rgba(85, 179, 89, 0.2);
    border-radius: 4px 4px 0 0;
    transition: all var(--duration) var(--ease);
}

.ds-bar.active {
    background: var(--gradient);
}

.ds-bar:hover {
    background: var(--gradient);
    opacity: 0.8;
}

.ds-chart-line {
    display: flex;
    justify-content: flex-end;
    margin-top: 12px;
}

.ds-percent {
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===========================================
   PRICING
   =========================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    transition: all var(--duration) var(--ease);
    position: relative;
}

.pricing-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.pricing-card-popular {
    border-color: rgba(85, 179, 89, 0.3);
    background: linear-gradient(180deg, rgba(85,179,89,0.06) 0%, var(--bg-card) 100%);
}

.pricing-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gradient);
    color: #000;
    font-size: 12px;
    font-weight: 700;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-header {
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.price-period {
    font-size: 16px;
    color: var(--text-tertiary);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

.pricing-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-tertiary);
    margin-top: 12px;
}

.pricing-tagline {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.pricing-description {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
}

/* ===========================================
   FAQ
   =========================================== */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    transition: color var(--duration) var(--ease);
}

.faq-question:hover {
    color: var(--green);
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform var(--duration) var(--ease);
    color: var(--text-tertiary);
}

.faq-item.active .faq-question svg {
    transform: rotate(45deg);
    color: var(--green);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding-bottom: 24px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===========================================
   FINAL CTA
   =========================================== */
.final-cta-section {
    padding: 80px 0;
}

.final-cta-wrapper {
    position: relative;
    text-align: center;
    padding: 80px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 32px;
    overflow: hidden;
}

.final-cta-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.final-cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.final-cta-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(85, 179, 89, 0.2);
    top: -200px;
    right: -100px;
}

.final-cta-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(185, 233, 50, 0.15);
    bottom: -150px;
    left: -50px;
}

[data-theme="light"] .final-cta-orb {
    opacity: 0.3;
}

.final-cta-wrapper h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.final-cta-wrapper p {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.final-cta-wrapper .btn {
    position: relative;
    z-index: 1;
}

.final-cta-note {
    display: block;
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-tertiary);
    position: relative;
    z-index: 1;
}

/* ===========================================
   FOOTER
   =========================================== */
.footer {
    padding: 64px 0 32px;
    border-top: 1px solid var(--border);
}

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

.footer-brand .nav-logo {
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-tertiary);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    transition: all var(--duration) var(--ease);
}

.footer-social a:hover {
    border-color: var(--green);
    color: var(--green);
}

.footer-links-group h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text);
}

.footer-links-group a {
    display: block;
    font-size: 14px;
    color: var(--text-tertiary);
    margin-bottom: 10px;
    transition: color var(--duration) var(--ease);
}

.footer-links-group a:hover {
    color: var(--text);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-tertiary);
}

/* ===========================================
   ANIMATIONS
   =========================================== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1024px) {
    .pain-points-grid { grid-template-columns: repeat(2, 1fr); }

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

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

    .feature-card-lg {
        grid-column: span 1;
    }

    .dark-showcase-wrapper {
        grid-template-columns: 1fr;
        padding: 40px;
    }

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

@media (max-width: 768px) {
    .section { padding: 80px 0; }

    .nav-links { display: none; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navbar-bg);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 24px;
        border-bottom: 1px solid var(--border);
        gap: 16px;
    }

    .mobile-menu-toggle { display: flex; }

    .nav-actions .btn { display: none; }

    .hero-title { margin-bottom: 20px; }

    .hero-cta-group { flex-direction: column; }

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

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

    .solution-wrapper { grid-template-columns: 1fr; gap: 40px; }

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

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

    .ba-wrapper {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ba-divider { padding: 8px 0; }

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

    .comparison-table-wrap { margin: 0 -24px; border-radius: 0; }

    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }

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

    .dark-showcase-wrapper { padding: 32px 24px; }

    .final-cta-wrapper { padding: 48px 24px; }

    .hero-image img { max-width: 100%; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }

    .hero { padding: 100px 0 40px; }

    .hero-badge { font-size: 12px; padding: 6px 12px; }

    .logos-track { gap: 24px; }
    .logo-item span { display: none; }

    .pain-points-grid { grid-template-columns: 1fr; }
}
