/* ==========================================================================
   Sebenza Landing Page - Ultra-High-Conversion Design
   Viticulture & Horticulture Industry Focus
   Matches Sebenza App Theme (Dark Mode Default)
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables - Sebenza Official Theme
   -------------------------------------------------------------------------- */
:root {
    /* Light Mode - Sebenza Official v1.0 */
    --background: #E0F7FA;
    --foreground: #111827;
    --card: #FFFFFF;
    --card-foreground: #111827;
    --primary: #F5A623;
    --primary-foreground: #FFFFFF;
    --primary-hover: #E09000;
    --secondary: #F3F4F6;
    --secondary-foreground: #1F2937;
    --muted: #F3F4F6;
    --muted-foreground: #6B7280;
    --border: #E5E7EB;
    --ring: #F5A623;

    /* Teal accent for industry feel */
    --teal: #0D9488;
    --teal-light: rgba(13, 148, 136, 0.15);

    /* Status colors */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #DC2626;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 40px rgba(245, 166, 35, 0.3);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
}

/* Dark Mode (Default) */
.dark {
    --background: #0A0A0A;
    --foreground: #FAFAFA;
    --card: #141414;
    --card-foreground: #F5F5F5;
    --primary: #FFAB91;
    --primary-foreground: #1A1A1A;
    --primary-hover: #FFB07A;
    --secondary: #1E1E1E;
    --secondary-foreground: #E0E0E0;
    --muted: #262626;
    --muted-foreground: #A3A3A3;
    --border: rgba(255, 255, 255, 0.08);
    --ring: #FFAB91;

    --teal: #2DD4BF;
    --teal-light: rgba(45, 212, 191, 0.15);

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.6);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 60px rgba(255, 171, 145, 0.2);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--foreground);
    background-color: var(--background);
    transition: background-color var(--transition-slow), color var(--transition-slow);
}

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

a {
    color: inherit;
    text-decoration: none;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-xl);
    }
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all var(--transition-slow);
}

:root .nav {
    background: rgba(255, 255, 255, 0.9);
}

.dark .nav {
    background: rgba(10, 10, 10, 0.85);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-lg);
}

.nav-logo-text {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--foreground);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.nav-toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--card);
    border-bottom: 1px solid var(--border);
    padding: var(--space-lg);
    flex-direction: column;
    gap: var(--space-md);
}

.nav-menu.active {
    display: flex;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: var(--font-weight-medium);
    color: var(--muted-foreground);
    padding: var(--space-sm) 0;
    transition: color var(--transition-fast);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.theme-toggle:hover {
    background: var(--muted);
    border-color: var(--primary);
}

.theme-icon {
    width: 20px;
    height: 20px;
    color: var(--foreground);
}

.theme-icon-moon {
    display: none;
}

.dark .theme-icon-sun {
    display: none;
}

.dark .theme-icon-moon {
    display: block;
}

/* Desktop Navigation */
@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        background: none;
        border: none;
        padding: 0;
        gap: var(--space-xl);
    }

    .nav-actions .btn {
        display: inline-flex;
    }
}

@media (max-width: 1023px) {
    .nav-actions .btn {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.875rem 1.75rem;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: var(--font-weight-semibold);
    line-height: 1;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-icon {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: linear-gradient(135deg, #F5A623, #E09000);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(245, 166, 35, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.5);
}

.dark .btn-primary {
    background: linear-gradient(135deg, #FFAB91, #FF8A65);
    color: #1A1A1A;
    box-shadow: 0 4px 14px rgba(255, 171, 145, 0.3);
}

.dark .btn-primary:hover {
    box-shadow: 0 8px 25px rgba(255, 171, 145, 0.4);
}

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

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

.btn-outline-light {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

.btn-full {
    width: 100%;
}

/* --------------------------------------------------------------------------
   Hero Section - Vineyard Theme
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 var(--space-4xl);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.9) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><linearGradient id="g" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%230D9488;stop-opacity:0.1"/><stop offset="100%" style="stop-color:%23F5A623;stop-opacity:0.05"/></linearGradient></defs><rect fill="url(%23g)" width="100" height="100"/></svg>');
    z-index: 0;
}

/* Light mode hero background */
:root .hero-bg {
    background:
        linear-gradient(135deg, rgba(224, 247, 250, 0.95) 0%, rgba(224, 247, 250, 0.8) 50%, rgba(224, 247, 250, 0.95) 100%),
        radial-gradient(ellipse at 30% 20%, rgba(245, 166, 35, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(13, 148, 136, 0.15) 0%, transparent 40%);
}

.dark .hero-bg {
    background:
        radial-gradient(ellipse at 20% 30%, rgba(45, 212, 191, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 171, 145, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(20, 20, 20, 1) 0%, rgba(10, 10, 10, 1) 100%);
}

/* Animated glow orbs */
.hero-bg::before,
.hero-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 8s ease-in-out infinite;
}

.hero-bg::before {
    width: 400px;
    height: 400px;
    background: var(--teal);
    top: 10%;
    left: 5%;
    opacity: 0.1;
}

.hero-bg::after {
    width: 300px;
    height: 300px;
    background: var(--primary);
    bottom: 20%;
    right: 10%;
    opacity: 0.08;
    animation-delay: -4s;
}

@keyframes float {

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

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

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: var(--space-4xl);
    }
}

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

@media (min-width: 1024px) {
    .hero-content {
        text-align: left;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--teal-light);
    border: 1px solid var(--teal);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    color: var(--teal);
    margin-bottom: var(--space-lg);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: var(--font-weight-extrabold);
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: var(--space-xl);
    max-width: 560px;
    line-height: 1.8;
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

@media (min-width: 480px) {
    .hero-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-actions {
        justify-content: flex-start;
    }
}

.hero-trust {
    margin-top: var(--space-lg);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
}

@media (min-width: 1024px) {
    .trust-badges {
        justify-content: flex-start;
    }
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    padding: var(--space-xs) var(--space-sm);
    background: var(--secondary);
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
}

.trust-badge svg {
    width: 16px;
    height: 16px;
    color: var(--teal);
}

/* Hero Dashboard Mockup */
.hero-visual {
    display: none;
}

@media (min-width: 1024px) {
    .hero-visual {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.hero-mockup {
    perspective: 1000px;
    width: 100%;
    max-width: 420px;
}

.mockup-screen {
    background: var(--card);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    overflow: hidden;
    transform: rotateY(-8deg) rotateX(5deg);
    transition: transform var(--transition-slow);
    border: 1px solid var(--border);
}

.mockup-screen:hover {
    transform: rotateY(-2deg) rotateX(2deg);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: var(--space-md) var(--space-lg);
    background: var(--secondary);
    border-bottom: 1px solid var(--border);
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mockup-dot.red {
    background: #FF5F57;
}

.mockup-dot.yellow {
    background: #FFBD2E;
}

.mockup-dot.green {
    background: #28CA41;
}

.mockup-title {
    flex: 1;
    text-align: center;
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
    color: var(--muted-foreground);
}

.mockup-content {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.mockup-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
}

.mockup-stat {
    background: var(--secondary);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border);
}

.mockup-stat .stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary);
}

.mockup-stat .stat-desc {
    font-size: 0.6875rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mockup-stat.teal .stat-value {
    color: var(--teal);
}

.mockup-job-card {
    background: var(--secondary);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.job-icon {
    width: 40px;
    height: 40px;
    background: var(--teal-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.job-info {
    flex: 1;
}

.job-title {
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    color: var(--foreground);
    margin-bottom: 2px;
}

.job-meta {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.job-status {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: var(--font-weight-bold);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.job-status.live {
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.job-status.pending {
    background: rgba(245, 166, 35, 0.15);
    color: #F5A623;
}

.dark .job-status.pending {
    color: #FFAB91;
}

.mockup-map {
    background: var(--secondary);
    border-radius: var(--radius-lg);
    height: 80px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.mockup-map::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, var(--border) 0px, var(--border) 1px, transparent 1px, transparent 20px),
        repeating-linear-gradient(90deg, var(--border) 0px, var(--border) 1px, transparent 1px, transparent 20px);
    opacity: 0.5;
}

.map-pins {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: var(--space-md);
}

.map-pin {
    width: 10px;
    height: 10px;
    background: var(--teal);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--teal);
    animation: pulse 2s ease-in-out infinite;
}

.map-pin:nth-child(2) {
    animation-delay: 0.5s;
}

.map-pin:nth-child(3) {
    animation-delay: 1s;
}

.map-pin:nth-child(4) {
    animation-delay: 1.5s;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
}

/* --------------------------------------------------------------------------
   Pain Points Section
   -------------------------------------------------------------------------- */
.pain-section {
    padding: var(--space-5xl) 0;
    background: var(--card);
}

.pain-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

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

.pain-card {
    padding: var(--space-2xl);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.pain-card.before {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), rgba(220, 38, 38, 0.02));
    border-color: rgba(220, 38, 38, 0.2);
}

.pain-card.after {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(16, 185, 129, 0.02));
    border-color: rgba(16, 185, 129, 0.3);
}

.pain-card-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-lg);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
}

.pain-card.before .pain-card-label {
    background: rgba(220, 38, 38, 0.1);
    color: #DC2626;
}

.pain-card.after .pain-card-label {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.pain-card h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-lg);
}

.pain-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.pain-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    font-size: 1rem;
    color: var(--muted-foreground);
}

.pain-list li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pain-card.before .pain-list li svg {
    color: #DC2626;
}

.pain-card.after .pain-list li svg {
    color: #10B981;
}

.pain-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border);
}

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

.pain-stat-value {
    font-size: 2rem;
    font-weight: var(--font-weight-extrabold);
    color: #10B981;
}

.pain-stat-label {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

/* --------------------------------------------------------------------------
   Section Styles
   -------------------------------------------------------------------------- */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: var(--font-weight-semibold);
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.8;
}

/* --------------------------------------------------------------------------
   Audience Tabs Section
   -------------------------------------------------------------------------- */
.audience-section {
    padding: var(--space-5xl) 0;
}

.audience-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

.audience-tab {
    padding: var(--space-md) var(--space-xl);
    font-size: 0.9375rem;
    font-weight: var(--font-weight-semibold);
    color: var(--muted-foreground);
    background: var(--secondary);
    border: 2px solid var(--border);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.audience-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.audience-tab.active {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

.audience-content {
    display: none;
}

.audience-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .audience-grid {
        grid-template-columns: 1fr 1fr;
    }

    .audience-grid.reverse {
        direction: rtl;
    }

    .audience-grid.reverse>* {
        direction: ltr;
    }
}

.audience-info h3 {
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-md);
}

.audience-info p {
    font-size: 1.0625rem;
    color: var(--muted-foreground);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

.audience-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.audience-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    font-size: 1rem;
}

.audience-features li svg {
    width: 22px;
    height: 22px;
    color: var(--teal);
    flex-shrink: 0;
    margin-top: 2px;
}

.audience-visual {
    background: var(--card);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.visual-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.visual-stat {
    text-align: center;
    padding: var(--space-lg);
    background: var(--secondary);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
}

.visual-stat-value {
    font-size: 2.5rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.visual-stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.visual-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.flow-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--teal));
    color: #FFFFFF;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
}

.flow-step span {
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    color: var(--foreground);
}

.flow-arrow {
    font-size: 1.5rem;
    color: var(--muted-foreground);
}

.visual-caption {
    text-align: center;
    margin-top: var(--space-xl);
    font-size: 0.9375rem;
    color: var(--muted-foreground);
}

.visual-caption strong {
    color: var(--primary);
}

/* --------------------------------------------------------------------------
   Features Grid
   -------------------------------------------------------------------------- */
.features-section {
    padding: var(--space-5xl) 0;
    background: var(--card);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    padding: var(--space-xl);
    background: var(--background);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--teal));
    opacity: 0;
    transition: opacity var(--transition-fast);
}

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

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

.feature-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--teal-light), rgba(245, 166, 35, 0.1));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.feature-icon svg {
    width: 26px;
    height: 26px;
    color: var(--teal);
}

.feature-card h3 {
    font-size: 1.0625rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-sm);
}

.feature-card p {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonials-section {
    padding: var(--space-5xl) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

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

@media (min-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--card);
    padding: var(--space-2xl);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    flex: 1;
    margin-bottom: var(--space-xl);
}

.testimonial-stars {
    color: #FBBF24;
    font-size: 1rem;
    margin-bottom: var(--space-md);
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--foreground);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--teal));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    color: #FFFFFF;
    font-size: 0.875rem;
}

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

.author-name {
    font-weight: var(--font-weight-semibold);
    font-size: 0.9375rem;
}

.author-role {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

/* --------------------------------------------------------------------------
   NZ Section
   -------------------------------------------------------------------------- */
.nz-section {
    padding: var(--space-5xl) 0;
    background: var(--card);
    position: relative;
    overflow: hidden;
}

.nz-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: var(--teal-light);
    border-radius: 50%;
    filter: blur(100px);
    transform: translateY(-50%);
    opacity: 0.5;
}

.nz-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .nz-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.nz-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-lg);
}

.nz-content>p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: var(--space-2xl);
    line-height: 1.8;
}

.nz-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.nz-feature {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--background);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
}

.nz-feature svg {
    width: 32px;
    height: 32px;
    color: var(--teal);
    flex-shrink: 0;
}

.nz-feature strong {
    display: block;
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.nz-feature p {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    margin: 0;
}

.nz-badge-container {
    display: flex;
    justify-content: center;
}

.nz-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, var(--secondary), var(--card));
    border: 3px solid var(--border);
    border-radius: 50%;
    box-shadow: var(--shadow-xl);
}

.nz-badge-icon {
    font-size: 4rem;
    margin-bottom: var(--space-md);
}

.nz-badge-text {
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    color: var(--foreground);
    text-align: center;
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */
.cta-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, #F5A623, #E09000);
    position: relative;
    overflow: hidden;
}

.dark .cta-section {
    background: linear-gradient(135deg, #FFAB91, #FF8A65);
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>');
    background-size: 100px;
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: var(--font-weight-bold);
    color: #FFFFFF;
    margin-bottom: var(--space-md);
}

.dark .cta-title {
    color: #1A1A1A;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.dark .cta-subtitle {
    color: rgba(26, 26, 26, 0.8);
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    justify-content: center;
    align-items: center;
    margin-bottom: var(--space-lg);
}

@media (min-width: 480px) {
    .cta-actions {
        flex-direction: row;
    }
}

.cta-section .btn-primary {
    background: #FFFFFF;
    color: #F5A623;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-primary:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.dark .cta-note {
    color: rgba(26, 26, 26, 0.7);
}

/* --------------------------------------------------------------------------
   Demo Form Section
   -------------------------------------------------------------------------- */
.demo-section {
    padding: var(--space-5xl) 0;
    background: var(--background);
}

.demo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

@media (min-width: 1024px) {
    .demo-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.demo-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-md);
}

.demo-content>p {
    font-size: 1.0625rem;
    color: var(--muted-foreground);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

.demo-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.demo-benefits li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 1rem;
}

.demo-benefits li svg {
    width: 22px;
    height: 22px;
    color: var(--teal);
}

.demo-form-container {
    background: var(--card);
    padding: var(--space-2xl);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 480px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-group label {
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    color: var(--foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem var(--space-md);
    font-family: inherit;
    font-size: 1rem;
    color: var(--foreground);
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
    min-height: 48px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
}

.dark .form-group input:focus,
.dark .form-group select:focus,
.dark .form-group textarea:focus {
    box-shadow: 0 0 0 3px rgba(255, 171, 145, 0.15);
}

.form-group input::placeholder {
    color: var(--muted-foreground);
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: var(--space-sm);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-logo-img {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--foreground);
}

.footer-tagline {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-links h4 {
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-lg);
    color: var(--foreground);
}

.footer-links a {
    display: block;
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    padding: var(--space-xs) 0;
    transition: color var(--transition-fast);
}

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

.footer-contact p {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    margin-bottom: var(--space-sm);
}

.footer-contact a {
    color: var(--primary);
}

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

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */
.animate-fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* --------------------------------------------------------------------------
   Waitlist Modal
   -------------------------------------------------------------------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--card);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    max-width: 420px;
    width: 100%;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform var(--transition-slow);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xl);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: var(--muted);
    border-color: var(--primary);
}

.modal-close svg {
    width: 18px;
    height: 18px;
    color: var(--muted-foreground);
}

.modal-icon {
    width: 64px;
    height: 64px;
    background: var(--teal-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
}

.modal-icon svg {
    width: 32px;
    height: 32px;
    color: var(--teal);
}

.modal-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin-bottom: var(--space-sm);
}

.modal-subtitle {
    text-align: center;
    color: var(--muted-foreground);
    margin-bottom: var(--space-xl);
    font-size: 0.9375rem;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.modal-field {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.modal-field label {
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    color: var(--foreground);
}

.modal-field input {
    padding: 0.875rem var(--space-md);
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    font-family: inherit;
    font-size: 1rem;
    color: var(--foreground);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.modal-field input:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px var(--teal-light);
}

.modal-field input::placeholder {
    color: var(--muted-foreground);
}

.modal-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: var(--space-md);
}

/* Success state for modal */
.modal-success {
    text-align: center;
    padding: var(--space-xl) 0;
}

.modal-success-icon {
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
}

.modal-success-icon svg {
    width: 40px;
    height: 40px;
    color: #10B981;
}

.modal-success h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-sm);
}

.modal-success p {
    color: var(--muted-foreground);
}

/* Phone input styles */
.optional-label {
    font-weight: var(--font-weight-normal);
    color: var(--muted-foreground);
    font-size: 0.85rem;
}

.modal-divider {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin: var(--space-md) 0;
}

.modal-divider::before,
.modal-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.modal-divider span {
    color: var(--muted-foreground);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.phone-input-group {
    display: flex;
    gap: var(--space-xs);
}

.country-dropdown {
    position: relative;
}

.country-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--card-bg);
    color: var(--foreground);
    font-size: 0.95rem;
    cursor: pointer;
    transition: border-color var(--transition-fast);
    min-width: 100px;
    height: 44px;
}

.country-trigger:hover {
    border-color: var(--primary);
}

.country-flag {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}

.country-code {
    font-weight: var(--font-weight-medium);
    font-size: 0.9rem;
}

.dropdown-arrow {
    width: 14px;
    height: 14px;
    color: var(--muted-foreground);
    margin-left: 2px;
    flex-shrink: 0;
}

.country-list {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 220px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    display: none;
    max-height: 220px;
    overflow-y: auto;
}

.country-list.active {
    display: block;
}

.country-option {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border: none;
    background: transparent;
    color: var(--foreground);
    cursor: pointer;
    transition: background var(--transition-fast);
    text-align: left;
}

.country-option:hover {
    background: var(--muted);
}

.country-option .country-name {
    flex: 1;
    font-size: 0.9rem;
}

.country-option .country-dial {
    color: var(--muted-foreground);
    font-size: 0.85rem;
}

.phone-input-group input[type="tel"] {
    flex: 1;
}