/*
 * ZapAgents Landing Page Styles
 * Inspired by Orbitly - Dark theme with green aurora effects
 */

/* ===== CSS Variables ===== */
:root {
    /* Colors */
    --bg-dark: #0a0a0b;
    --bg-darker: #050506;
    --bg-card: #111113;
    --bg-card-hover: #1a1a1d;
    --bg-card-border: #1f1f23;

    --green-primary: #22c55e;
    --green-light: #4ade80;
    --green-dark: #16a34a;
    --green-glow: rgba(34, 197, 94, 0.15);
    --green-glow-strong: rgba(34, 197, 94, 0.3);

    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;

    /* Gradients */
    --gradient-green: linear-gradient(135deg, #22c55e 0%, #4ade80 50%, #86efac 100%);
    --gradient-aurora: linear-gradient(180deg,
        transparent 0%,
        rgba(34, 197, 94, 0.05) 20%,
        rgba(34, 197, 94, 0.1) 40%,
        rgba(34, 197, 94, 0.05) 60%,
        transparent 100%
    );

    /* Typography */
    --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --container-max: 1200px;
    --section-padding: 120px;
    --section-padding-mobile: 60px;

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
}

/* ===== Reset & Base ===== */
*, *::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-family);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

ul {
    list-style: none;
}

/* ===== Container ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Typography ===== */
.gradient-text {
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.btn-icon {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-base);
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--green-primary);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: var(--green-light);
    box-shadow: 0 0 30px var(--green-glow-strong);
}

.btn-ghost {
    color: var(--text-primary);
}

.btn-ghost:hover {
    color: var(--green-light);
}

.btn-outline {
    border: 1px solid var(--bg-card-border);
    color: var(--text-primary);
}

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

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    background: rgba(10, 10, 11, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

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

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

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

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

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

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

/* Language Switcher */
.lang-switcher {
    position: relative;
}

.lang-switcher::before {
    content: '|';
    position: absolute;
    left: -16px;
    color: var(--text-muted);
    font-weight: 300;
}

.no-wrap {
    white-space: nowrap;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 8px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
}

.lang-btn:hover {
    color: var(--text-primary);
}

.lang-code {
    font-weight: 500;
}

.lang-arrow {
    width: 12px;
    height: 12px;
    opacity: 0.6;
    transition: transform var(--transition-fast);
}

.lang-switcher:hover .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 60px;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 8px;
    padding: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.lang-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: center;
    transition: all var(--transition-fast);
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.lang-option.active {
    color: var(--green-primary);
}

/* Mobile Language Switcher */
.mobile-lang-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 0;
    border-bottom: 1px solid var(--bg-card-border);
    margin-bottom: 16px;
}

.mobile-lang-option {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.mobile-lang-option:hover {
    color: var(--text-primary);
}

.mobile-lang-option.active {
    background: rgba(37, 211, 102, 0.15);
    color: var(--green-primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--bg-card-border);
    padding: 24px;
    z-index: 99;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-links {
    margin-bottom: 24px;
}

.mobile-nav-links li {
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-card-border);
}

.mobile-nav-links a {
    font-size: 16px;
    font-weight: 500;
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 160px 0 80px;
    overflow: hidden;
}

/* Aurora Effect */
.hero-aurora {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(34, 197, 94, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 30% at 50% 10%, rgba(74, 222, 128, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 40% 20% at 50% 5%, rgba(134, 239, 172, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-aurora::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 40%;
    width: 20%;
    height: 60%;
    background: linear-gradient(180deg,
        rgba(34, 197, 94, 0.3) 0%,
        rgba(34, 197, 94, 0.1) 50%,
        transparent 100%
    );
    filter: blur(60px);
    animation: aurora-pulse 8s ease-in-out infinite;
}

.hero-aurora::after {
    content: '';
    position: absolute;
    top: -5%;
    left: 45%;
    width: 10%;
    height: 50%;
    background: linear-gradient(180deg,
        rgba(74, 222, 128, 0.4) 0%,
        rgba(74, 222, 128, 0.15) 40%,
        transparent 100%
    );
    filter: blur(40px);
    animation: aurora-pulse 6s ease-in-out infinite;
    animation-delay: -2s;
}

@keyframes aurora-pulse {
    0%, 100% {
        opacity: 1;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.7;
        transform: scaleY(1.1);
    }
}

/* Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--green-light);
    border-radius: 50%;
    box-shadow:
        100px 50px 0 rgba(34, 197, 94, 0.5),
        200px 150px 0 rgba(74, 222, 128, 0.4),
        300px 80px 0 rgba(134, 239, 172, 0.3),
        400px 200px 0 rgba(34, 197, 94, 0.5),
        500px 120px 0 rgba(74, 222, 128, 0.4),
        600px 180px 0 rgba(134, 239, 172, 0.3),
        700px 60px 0 rgba(34, 197, 94, 0.5),
        800px 140px 0 rgba(74, 222, 128, 0.4),
        900px 100px 0 rgba(134, 239, 172, 0.3),
        1000px 160px 0 rgba(34, 197, 94, 0.5);
    animation: particles-float 20s linear infinite;
}

@keyframes particles-float {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100vh);
    }
}

/* Hero Content */
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--green-light);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

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

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

.hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
}

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

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

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 1;
}

.app-mockup {
    position: relative;
}

.mockup-browser {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 80px var(--green-glow);
}

.browser-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--bg-card-border);
}

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

.browser-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.browser-dots .red { background: #ff5f57; }
.browser-dots .yellow { background: #febc2e; }
.browser-dots .green { background: #28c840; }

.browser-url {
    flex: 1;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
}

.browser-content {
    position: relative;
    aspect-ratio: 16/10;
    background: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

.card-conversations {
    top: 20%;
    left: -60px;
    animation-delay: -1s;
}

.card-ai {
    bottom: 20%;
    right: -40px;
    animation-delay: -3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.card-icon {
    font-size: 24px;
}

.card-content {
    display: flex;
    flex-direction: column;
}

.card-number {
    font-size: 20px;
    font-weight: 700;
    color: var(--green-primary);
}

.card-label {
    font-size: 13px;
    color: var(--text-secondary);
}

.card-status {
    font-size: 12px;
    color: var(--green-primary);
    font-weight: 600;
}

/* ===== Trust Section ===== */
.trust-section {
    padding: 60px 0;
    border-top: 1px solid var(--bg-card-border);
    border-bottom: 1px solid var(--bg-card-border);
}

.trust-text {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

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

.trust-logo {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.6;
    transition: opacity var(--transition-base);
}

.trust-logo:hover {
    opacity: 1;
}

/* ===== Section Styles ===== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--green-light);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== Features Section ===== */
.features-section {
    padding: var(--section-padding) 0;
}

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

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

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(34, 197, 94, 0.3);
    transform: translateY(-4px);
}

.feature-card.featured {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.feature-icon-wrap {
    margin-bottom: 20px;
}

.feature-icon {
    font-size: 32px;
}

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

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

.feature-visual {
    padding: 24px;
    background: var(--bg-darker);
    border-radius: var(--radius-md);
}

.chat-preview {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-bubble {
    padding: 14px 18px;
    border-radius: var(--radius-lg);
    font-size: 14px;
    line-height: 1.5;
    max-width: 85%;
}

.chat-bubble.user {
    background: var(--green-primary);
    color: var(--bg-dark);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-bubble.bot {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

/* ===== How It Works Section ===== */
.how-it-works-section {
    padding: var(--section-padding) 0;
    background: var(--bg-darker);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.step {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.step:nth-child(even) {
    direction: rtl;
}

.step:nth-child(even) > * {
    direction: ltr;
}

.step-number {
    font-size: 64px;
    font-weight: 800;
    color: var(--bg-card-border);
    font-feature-settings: 'tnum';
}

.step-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.step-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.step-visual {
    display: flex;
    justify-content: center;
}

/* Phone Mockup */
.phone-mockup {
    width: 260px;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-xl);
    padding: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    background: var(--bg-darker);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.wa-header {
    display: flex;
    flex-direction: column;
    padding: 12px 16px;
    background: #075e54;
}

.wa-name {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.wa-status {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

.wa-chat {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 200px;
}

.wa-msg {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.4;
    max-width: 85%;
}

.wa-msg.received {
    background: var(--bg-card);
    align-self: flex-start;
    border-bottom-left-radius: 0;
}

.wa-msg.sent {
    background: #075e54;
    align-self: flex-end;
    border-bottom-right-radius: 0;
}

/* Config Preview */
.config-preview {
    padding: 20px;
}

.config-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-lg);
    padding: 20px;
}

.config-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.config-icon {
    font-size: 24px;
}

.config-name {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
}

.config-status {
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

.config-status.active {
    background: rgba(34, 197, 94, 0.15);
    color: var(--green-primary);
}

.config-stats {
    display: flex;
    gap: 24px;
}

.config-stat {
    display: flex;
    flex-direction: column;
}

.config-stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--green-primary);
}

.config-stat-label {
    font-size: 12px;
    color: var(--text-muted);
}

/* Dashboard Preview */
.dashboard-preview {
    display: flex;
    gap: 16px;
}

.dash-stat {
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-md);
    text-align: center;
}

.dash-number {
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.dash-stat.green .dash-number { color: var(--green-primary); }
.dash-stat.blue .dash-number { color: #3b82f6; }
.dash-stat.purple .dash-number { color: #8b5cf6; }

.dash-label {
    font-size: 12px;
    color: var(--text-muted);
}

/* ===== Use Cases Section ===== */
.use-cases-section {
    padding: var(--section-padding) 0;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.use-case-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.use-case-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(34, 197, 94, 0.3);
}

.use-case-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

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

.use-case-card p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.use-case-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.use-case-benefits li {
    padding: 6px 12px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: var(--radius-full);
    font-size: 12px;
    color: var(--green-light);
}

/* ===== Pricing Section ===== */
.pricing-section {
    padding: var(--section-padding) 0;
    background: var(--bg-darker);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    padding: 40px 32px;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: var(--green-primary);
    box-shadow: 0 0 40px var(--green-glow);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--green-primary);
    color: var(--bg-dark);
    font-size: 12px;
    font-weight: 700;
    border-radius: var(--radius-full);
}

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

.pricing-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.pricing-price {
    margin-bottom: 12px;
}

.price-currency {
    font-size: 20px;
    font-weight: 600;
    vertical-align: top;
}

.price-amount {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
}

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

.pricing-description {
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-features {
    flex: 1;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--bg-card-border);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .check {
    color: var(--green-primary);
    font-weight: 700;
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: var(--section-padding) 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

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

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--text-muted);
    transition: transform var(--transition-base);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

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

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

/* ===== CTA Section ===== */
.cta-section {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.cta-aurora {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 50% 90%, rgba(74, 222, 128, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.cta-note {
    font-size: 14px;
    color: var(--text-muted);
}

/* ===== Footer ===== */
.footer {
    padding: 80px 0 40px;
    background: var(--bg-darker);
    border-top: 1px solid var(--bg-card-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

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

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

.footer-tagline {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    transition: all var(--transition-base);
}

.social-link:hover {
    color: var(--green-primary);
    border-color: var(--green-primary);
}

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

.footer-links h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

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

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

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

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .floating-card {
        display: none;
    }

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

    .feature-card.featured {
        grid-column: span 2;
        grid-template-columns: 1fr;
    }

    .step {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .step:nth-child(even) {
        direction: ltr;
    }

    .step-number {
        font-size: 48px;
    }

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

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

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

    .footer-brand {
        grid-column: span 2;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-mobile);
    }

    .nav-links,
    .nav-actions,
    .lang-switcher {
        display: none;
    }

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

    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

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

    .hero-cta .btn {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

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

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

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-preview {
        flex-direction: column;
    }

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

    .footer-brand {
        grid-column: span 1;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .step-number {
        font-size: 36px;
    }

    .step-content h3 {
        font-size: 22px;
    }

    .phone-mockup {
        width: 100%;
        max-width: 260px;
    }
}
