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

:root {
    --bg-primary: #09090b;
    --bg-secondary: #111113;
    --bg-tertiary: #18181b;
    --bg-card: #1a1a1f;
    --bg-card-hover: #222228;
    --border: #27272a;
    --border-light: #333338;
    --text-primary: #fafafa;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --green: #2D694C;
    --green-bg: rgba(45, 105, 76, 0.15);
    --blue: #3b82f6;
    --blue-bg: rgba(59, 130, 246, 0.1);
    --purple: #a855f7;
    --purple-bg: rgba(168, 85, 247, 0.1);
    --amber: #f59e0b;
    --amber-bg: rgba(245, 158, 11, 0.1);
    --rose: #f43f5e;
    --rose-bg: rgba(244, 63, 94, 0.1);
    --teal: #14b8a6;
    --teal-bg: rgba(20, 184, 166, 0.1);
    --gradient-1: linear-gradient(135deg, #3a8a63, #2D694C);
    --gradient-2: linear-gradient(135deg, #3a8a63, #245a3f);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 48px;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(45, 105, 76, 0.3));
}

.green-text { color: var(--green); }
.blue-text { color: var(--blue); }
.purple-text { color: var(--purple); }
.red-text { color: var(--rose); }

.animate-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(9, 9, 11, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}

.nav-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 18px;
}

.logo-full {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.logo-full.small {
    height: 24px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-login {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-cta {
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 8px;
    background: var(--gradient-1);
    color: white;
    font-size: 14px;
    font-weight: 600;
    transition: opacity 0.2s;
}

.nav-cta:hover {
    opacity: 0.9;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.nav-dropdown-trigger svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 280px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-secondary) !important;
    font-size: 14px;
    transition: background 0.15s, color 0.15s;
}

.nav-dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary) !important;
}

.nav-dropdown-menu a > svg {
    width: 18px;
    height: 18px;
    color: var(--green);
    flex-shrink: 0;
}

.dd-title {
    display: block;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.3;
}

.dd-desc {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.3;
}

.mobile-menu-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 0;
}

.mobile-menu-divider {
    height: 1px;
    background: var(--border);
    margin: 4px 0;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 16px 24px;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
}

.nav-cta-mobile {
    display: inline-block;
    padding: 10px 20px !important;
    border-radius: 8px;
    background: var(--gradient-1);
    color: white !important;
    font-weight: 600 !important;
    text-align: center;
    margin-top: 4px;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

/* ── Hero split layout ── */
.hero--split {
    min-height: 100vh;
    padding: 0;
    overflow: hidden;
    align-items: stretch;
}

.hero-split-inner {
    display: grid;
    grid-template-columns: 42% 58%;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

.hero-left {
    padding: 60px 40px 60px 64px;
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: center;
}

.hero-left h1 {
    font-size: clamp(42px, 4.2vw, 76px);
    line-height: 1.08;
    margin-bottom: 24px;
    text-align: left;
}

.hero-left .hero-description {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 36px;
    text-align: left;
    max-width: 460px;
}

.hero-left .hero-buttons {
    justify-content: flex-start;
}

/* Right: screenshot */
.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0 60px 0;
}

.hero-screenshot-frame {
    position: relative;
    border-radius: 14px 0 0 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    border-right: none;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        -8px 0 40px rgba(0,0,0,0.6),
        -24px 0 80px rgba(0,0,0,0.5),
        0 0 120px rgba(44,128,86,0.12),
        0 40px 100px rgba(0,0,0,0.5);
    width: 100%;
}

.hero-screenshot-frame img {
    display: block;
    width: 100%;
    height: auto;
}

/* Ambient green glow behind screenshot */
.hero-right::before {
    content: '';
    position: absolute;
    inset: 10% -20% 10% 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(44,128,86,0.18) 0%, transparent 65%);
    pointer-events: none;
    z-index: -1;
}

/* Mobile: stack vertically */
@media (max-width: 900px) {
    .hero-split-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .hero-left {
        padding: 100px 32px 40px;
        align-items: center;
        text-align: center;
    }
    .hero-left h1 { text-align: center; }
    .hero-left .hero-description { text-align: center; max-width: 100%; }
    .hero-left .hero-buttons { justify-content: center; }
    .hero-right {
        min-height: auto;
        padding: 0 16px 60px;
    }
    .hero-screenshot-frame {
        border-radius: 14px;
        border-right: 1px solid rgba(255,255,255,0.12);
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/landing/img/hero-bg.png') right center / auto 100% no-repeat;
    opacity: 0.85;
    pointer-events: none;
    mask-image: linear-gradient(to right, transparent 0%, transparent 25%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0.6) 45%, black 55%, black 90%, rgba(0,0,0,0.6) 95%, transparent 100%),
                linear-gradient(to bottom, transparent 0%, transparent 10%, rgba(0,0,0,0.3) 16%, black 25%, black 75%, rgba(0,0,0,0.5) 88%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 25%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0.6) 45%, black 55%, black 90%, rgba(0,0,0,0.6) 95%, transparent 100%),
                        linear-gradient(to bottom, transparent 0%, transparent 10%, rgba(0,0,0,0.3) 16%, black 25%, black 75%, rgba(0,0,0,0.5) 88%, transparent 100%);
    -webkit-mask-composite: source-in;
}

.hero-glow {
    position: absolute;
    top: -100px;
    right: 10%;
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(45, 105, 76, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 48px;
    width: 100%;
}

.hero h1 {
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 0 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    background: var(--gradient-1);
    color: white;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(45, 105, 76, 0.3);
}

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

.btn-primary svg {
    width: 18px;
    height: 18px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: var(--bg-card);
    border-color: var(--border-light);
}

.btn-secondary svg {
    width: 18px;
    height: 18px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.hero-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

.hero-preview {
    position: relative;
    width: 100%;
    max-width: 1800px;
    margin: 60px auto 0;
    padding: 0 24px;
}

.hero-preview-glow {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 300px;
    background: radial-gradient(ellipse, rgba(45, 105, 76, 0.2) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.hero-preview-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px 16px 0 0;
    border: 1px solid var(--border);
    border-bottom: none;
    box-shadow: 0 -4px 60px rgba(45, 105, 76, 0.1), 0 20px 80px rgba(0, 0, 0, 0.5);
}

.hero-visual {
    position: relative;
    margin-top: 60px;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.mockup-window {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.03),
        0 20px 60px rgba(0,0,0,0.4),
        0 0 120px rgba(45, 105, 76, 0.08);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-tertiary);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-light);
}

.mockup-dots span:first-child { background: #f43f5e; }
.mockup-dots span:nth-child(2) { background: #f59e0b; }
.mockup-dots span:last-child { background: #2D694C; }

.mockup-title {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.mockup-body {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.hero-iframe {
    width: 100%;
    height: 400px;
    border: none;
    pointer-events: none;
    transform: scale(1);
    transform-origin: top left;
}

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


.showcase-section:nth-child(even) {
    background: var(--bg-secondary);
}

.showcase-screenshot {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.showcase-screenshot:hover {
    border-color: rgba(45, 105, 76, 0.4);
    box-shadow: 0 0 60px rgba(45, 105, 76, 0.12), 0 12px 48px rgba(0,0,0,0.4);
    transform: translateY(-4px);
}

.showcase-img {
    width: 100%;
    height: auto;
    display: block;
}

.showcase-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.showcase-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.sf-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 100px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.sf-item:hover {
    border-color: var(--border-light);
    color: var(--text-primary);
}

.sf-item svg {
    width: 16px;
    height: 16px;
    color: var(--green);
}

.trusted-by {
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
}


.trusted-label {
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

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

.trusted-logo-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s, background 0.3s;
}

.logo-icon svg {
    width: 32px;
    height: 32px;
}

.trusted-logo-box:hover .logo-icon {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.trusted-logo-box span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 100px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(45, 105, 76, 0.15);
}

.section-badge svg {
    width: 14px;
    height: 14px;
    color: var(--green);
}

.section-header h2,
.showcase-text h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

.showcase-row {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 48px;
}

.showcase-row.reverse {
    grid-template-columns: 1.6fr 1fr;
}

.showcase-row.reverse .showcase-media {
    order: -1;
}

.showcase-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.showcase-text h2 {
    text-align: left;
}

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

.showcase-text .showcase-features {
    margin-top: 8px;
}

.showcase-media {
    position: relative;
}

.showcase-media::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(45, 105, 76, 0.1) 0%, transparent 65%);
    pointer-events: none;
    z-index: -1;
}

.showcase-alt {
    background: var(--bg-secondary);
}

.pricing-section {
    padding: 120px 0;
    border-top: 1px solid var(--border);
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 56px;
    background: var(--bg-tertiary);
    border-radius: 10px;
    padding: 4px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--border);
}

.toggle-btn {
    padding: 8px 20px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.toggle-btn.active {
    background: var(--bg-card-hover);
    color: var(--text-primary);
}

.toggle-save {
    color: var(--green);
    font-size: 12px;
    font-weight: 600;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 100px;
}

.pricing-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: border-color 0.3s;
}

.pricing-card:hover {
    border-color: var(--border-light);
}

.pricing-card.popular {
    border-color: var(--green);
    background: linear-gradient(180deg, rgba(45, 105, 76, 0.08) 0%, var(--bg-secondary) 30%);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-1);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.plan-name-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.plan-name-row h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
}

.plan-icon {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
}

.pricing-card.popular .plan-icon {
    color: var(--green);
}

.plan-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 4px;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -2px;
    line-height: 1;
}

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

.plan-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.plan-note strong {
    color: var(--text-secondary);
}

.pricing-cta {
    display: block;
    text-align: center;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    margin-bottom: 28px;
}

.pricing-cta.outline {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-primary);
}

.pricing-cta.outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-muted);
}

.pricing-cta.filled {
    background: var(--gradient-1);
    border: 1px solid transparent;
    color: white;
}

.pricing-cta.filled:hover {
    opacity: 0.9;
}

.features-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-weight: 500;
}

.plan-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.plan-features li svg {
    width: 16px;
    height: 16px;
    color: var(--green);
    flex-shrink: 0;
}

.pricing-compare {
    text-align: center;
    margin-top: 40px;
}

.pricing-compare h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.compare-desc {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 48px;
}

.compare-table-wrap {
    overflow-x: auto;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.compare-table th,
.compare-table td {
    padding: 16px 20px;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}

.compare-table th {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 15px;
    padding-bottom: 20px;
}

.compare-table th:first-child,
.compare-table td:first-child {
    text-align: left;
    color: var(--text-secondary);
    font-weight: 500;
}

.compare-table td {
    color: var(--text-muted);
}

.highlight-col {
    background: rgba(45, 105, 76, 0.06);
}

.check-yes {
    width: 18px;
    height: 18px;
    color: var(--green);
}

.check-no {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    opacity: 0.4;
}

.cta-section {
    padding: 120px 0;
}

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

.cta-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(34, 197, 94, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-card h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
}

.cta-card p {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 36px;
    position: relative;
}

.cta-card .btn-primary {
    position: relative;
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 280px;
}

.footer-links-group h5 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links-group a {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

@media (max-width: 1024px) {
    .showcase-row,
    .showcase-row.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-description {
        margin: 0 auto 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .showcase-row.reverse .showcase-media {
        order: 0;
    }

    .showcase-text {
        align-items: center;
        text-align: center;
    }

    .showcase-text h2 {
        text-align: center;
    }

    .showcase-split {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-right {
        display: none;
    }

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

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

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-content {
        padding: 0 20px;
        text-align: center;
    }

    .hero-description {
        margin: 0 auto 40px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
    }

    .btn-primary, .btn-secondary {
        justify-content: center;
    }

    .showcase-section {
        padding: 80px 0;
    }

    .showcase-split {
        grid-template-columns: 1fr;
    }

    .showcase-features {
        gap: 12px;
    }

    .sf-item {
        padding: 8px 16px;
        font-size: 13px;
    }

    .trusted-logos {
        gap: 24px;
    }

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

    .cta-card {
        padding: 60px 24px;
    }

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

    .pricing-section {
        padding: 80px 0;
    }

    .compare-table th,
    .compare-table td {
        padding: 12px 8px;
        font-size: 12px;
    }
}
/* ── Navbar language toggle (shared across all pages) ── */
.lang-toggle {
    display: flex; align-items: center; gap: 4px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px; padding: 4px 10px;
    cursor: pointer; font-family: inherit;
    transition: border-color 0.2s;
}
.lang-toggle:hover { border-color: rgba(255,255,255,0.2); }
.lang-opt {
    font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.35);
    transition: color 0.2s; letter-spacing: 0.5px;
}
.lang-opt.active { color: #fff; }
.lang-sep { font-size: 11px; color: rgba(255,255,255,0.18); }
