/* ===== CSS VARIABLES ===== */
:root {
    --color-primary: #2563eb;
    --color-primary-light: #38bdf8;
    --color-primary-dark: #1e3a8a;
    --color-accent: #f59e0b;
    --color-accent-cool: #22d3ee;
    --color-text: #e2e8f0;
    --color-text-light: #94a3b8;
    --color-background: #0b1220;
    --color-white: #f8fafc;
    --color-surface: rgba(15, 23, 42, 0.65);
    --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
    --font-body: 'Manrope', 'Segoe UI', sans-serif;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 48px;
    --spacing-xl: 96px;
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-text);
    background: radial-gradient(circle at 15% 20%, rgba(34, 211, 238, 0.18), transparent 45%),
                radial-gradient(circle at 80% 15%, rgba(37, 99, 235, 0.25), transparent 55%),
                linear-gradient(180deg, #0b1220 0%, #0f1c2e 45%, #10273f 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
}

body::before,
body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    pointer-events: none;
    z-index: -1;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

body::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.65), transparent 65%);
    top: -200px;
    left: -200px;
    animation: floatGradient1 20s ease-in-out infinite;
}

body::after {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.45), transparent 70%);
    bottom: -300px;
    right: -300px;
    animation: floatGradient2 25s ease-in-out infinite;
}

@keyframes floatGradient1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(100px, 150px) scale(1.2);
    }
    66% {
        transform: translate(-50px, 100px) scale(0.9);
    }
}

@keyframes floatGradient2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-150px, -100px) scale(1.1);
    }
    66% {
        transform: translate(100px, -50px) scale(0.95);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===== GLASS EFFECTS ===== */
.glass-card {
    background: var(--color-surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: var(--border-radius);
    box-shadow: 0 18px 40px rgba(5, 10, 20, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    --glow-x: 50%;
    --glow-y: 50%;
    --glow-opacity: 0;
}

.reveal-item {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

.reveal-item.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.glass-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        600px circle at var(--glow-x) var(--glow-y),
        rgba(34, 211, 238, var(--glow-opacity)),
        transparent 40%
    );
    opacity: var(--glow-opacity);
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 0;
}

.glass-card > * {
    position: relative;
    z-index: 1;
}

.glass-card:hover {
    border-color: rgba(148, 163, 184, 0.4);
    box-shadow: 0 18px 48px rgba(10, 20, 40, 0.45),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.glass-nav {
    background: rgba(11, 18, 32, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.glass-badge {
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 50px;
    padding: 8px 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(248, 250, 252, 0.9);
}

.glass-badge i {
    font-size: 0.75rem;
}

/* ===== METAL EFFECTS ===== */
.metal-circle {
    background: linear-gradient(145deg, #d4d9e0, #a8b0bb);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.3),
        inset 0 -2px 8px rgba(0, 0, 0, 0.2),
        inset 0 2px 8px rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.metal-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    animation: metalShine 3s infinite;
}

@keyframes metalShine {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.metal-bar {
    background: linear-gradient(180deg, #e8ecf0, #b8bec6);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.5),
        inset 0 -1px 2px rgba(0, 0, 0, 0.1);
}

.metal-badge {
    background: linear-gradient(135deg, #ffd700, #ffed4e, #ffd700);
    color: #8b6914;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow:
        0 4px 12px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

.metal-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: badgeShine 2s infinite;
}

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

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    font-family: var(--font-display);
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.logo i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    padding: 8px 12px;
    border-radius: 8px;
    border-bottom: 2px solid transparent;
    position: relative;
}

.nav-links a:hover {
    color: var(--color-white);
    border-color: rgba(56, 189, 248, 0.8);
    background: rgba(15, 23, 42, 0.35);
}

.nav-links a.is-active {
    color: var(--color-white);
    border-color: rgba(56, 189, 248, 0.9);
}

.nav-actions {
    display: flex;
    gap: var(--spacing-sm);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== BUTTONS ===== */
.btn-gradient {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent-cool) 60%, var(--color-primary-light) 100%);
    color: var(--color-white);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(37, 99, 235, 0.45);
}

.btn-gradient:hover::before {
    left: 100%;
}

.btn-glass {
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--color-white);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.btn-glass {
    position: relative;
    overflow: hidden;
}

.btn-glass::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-glass:hover::before {
    width: 300px;
    height: 300px;
}

.btn-glass:hover {
    background: rgba(15, 23, 42, 0.65);
    border-color: rgba(148, 163, 184, 0.4);
    transform: translateY(-2px);
}

.nav-actions .btn-gradient::before,
.nav-actions .btn-glass::before {
    content: none;
}

.nav-actions .btn-gradient,
.nav-actions .btn-glass {
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

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

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 15% 40%, rgba(37, 99, 235, 0.2) 0%, transparent 55%),
        radial-gradient(circle at 85% 20%, rgba(34, 211, 238, 0.16) 0%, transparent 55%),
        linear-gradient(180deg, rgba(8, 14, 26, 0.95) 0%, rgba(9, 18, 32, 0.65) 55%, rgba(12, 25, 40, 0.2) 100%);
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(10px);
    opacity: 0.7;
    mix-blend-mode: screen;
    will-change: transform;
    animation: orbPulse 12s ease-in-out infinite;
    pointer-events: none;
}

.orb-one {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.6), transparent 70%);
    top: -180px;
    left: -120px;
}

.orb-two {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.55), transparent 70%);
    bottom: -120px;
    right: -80px;
    animation-delay: 1.5s;
}

.orb-three {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.4), transparent 70%);
    top: 20%;
    right: 18%;
    animation-delay: 3s;
}

.hero-grid {
    position: absolute;
    inset: -30%;
    display: block;
    background-image:
        linear-gradient(transparent 0%, rgba(148, 163, 184, 0.12) 100%),
        repeating-linear-gradient(
            90deg,
            rgba(148, 163, 184, 0.08),
            rgba(148, 163, 184, 0.08) 1px,
            transparent 1px,
            transparent 120px
        ),
        repeating-linear-gradient(
            0deg,
            rgba(148, 163, 184, 0.08),
            rgba(148, 163, 184, 0.08) 1px,
            transparent 1px,
            transparent 120px
        );
    opacity: 0.25;
    transform: translateY(-10%);
    animation: gridDrift 30s linear infinite;
    will-change: transform;
    pointer-events: none;
}

@keyframes orbPulse {
    0%, 100% {
        opacity: 0.55;
    }
    50% {
        opacity: 0.85;
    }
}

@keyframes gridDrift {
    0% {
        transform: translateY(-10%);
    }
    100% {
        transform: translateY(10%);
    }
}

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

.hero-content {
    color: var(--color-white);
    transform: translate3d(0, var(--parallax-y, 0px), 0);
    opacity: var(--parallax-opacity, 1);
    transition: opacity 0.4s ease;
    will-change: transform, opacity;
}

.hero-visual {
    transform: translate3d(0, var(--parallax-y, 0px), 0);
    transition: transform 0.4s ease;
    will-change: transform;
}

.hero-badge {
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.35), rgba(15, 23, 42, 0.7));
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 12px 30px rgba(5, 10, 20, 0.35);
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 18px 40px rgba(5, 10, 20, 0.35);
}

.gradient-text {
    background: linear-gradient(120deg, #38bdf8, #2563eb, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(226, 232, 240, 0.82);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.35));
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    font-family: var(--font-display);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* ===== SCREEN MOCKUP ===== */
.screen-mockup {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.screen-mockup::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius);
    border: 1px solid rgba(148, 163, 184, 0.25);
    pointer-events: none;
    z-index: 1;
}

.screen-header {
    padding: 12px 20px;
    display: flex;
    align-items: center;
}

.screen-dots {
    display: flex;
    gap: 8px;
}

.screen-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.screen-content {
    padding: 60px;
    min-height: 400px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(34, 211, 238, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.screen-content::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 60%);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.mockup-animation {
    position: relative;
    width: 100%;
    height: 300px;
    z-index: 1;
}

.mockup-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.92);
    text-align: center;
    opacity: 0;
    filter: blur(6px) saturate(0.8);
    transition: opacity 0.9s ease, transform 0.9s ease, filter 0.9s ease;
}

.mockup-slide.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    filter: blur(0) saturate(1.1);
}

.mockup-slide i {
    font-size: 4rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
}

.mockup-slide h3 {
    font-size: 1.8rem;
    color: var(--color-white);
}

/* ===== SECTIONS ===== */
section {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

section:not(.hero) {
    background: linear-gradient(180deg, rgba(12, 22, 38, 0.6) 0%, rgba(12, 22, 38, 0.2) 100%);
}

section:not(.hero)::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
    transform: translate3d(var(--orb-x, 0px), var(--orb-y, 0px), 0);
    transition: transform 0.4s ease;
}

section:not(.hero):nth-child(odd)::before {
    background: radial-gradient(circle, rgba(37, 99, 235, 0.6), transparent 70%);
    top: -250px;
    right: -250px;
}

section:not(.hero):nth-child(even)::before {
    background: radial-gradient(circle, rgba(34, 211, 238, 0.5), transparent 70%);
    bottom: -250px;
    left: -250px;
}

section:not(.hero)::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.08), transparent 50%);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

section > .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin: var(--spacing-sm) 0;
}

.section-subtitle {
    font-size: 1.125rem;
    color: rgba(226, 232, 240, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== FEATURES ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
}

.feature-card {
    padding: var(--spacing-lg);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.35);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    font-size: 2rem;
    color: var(--color-primary-dark);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-sm);
}

.feature-list {
    list-style: none;
    text-align: left;
    margin-top: var(--spacing-sm);
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.feature-list i {
    color: #10b981;
    font-size: 0.875rem;
}

/* ===== HOW IT WORKS ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-sm);
    position: relative;
}

.step {
    padding: var(--spacing-lg);
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary-dark);
}

.step-content h3 {
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.step-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.step-icon {
    margin-top: var(--spacing-md);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
}

.step-connector {
    position: absolute;
    top: 50%;
    left: 25%;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.3) 100%);
    transform: translateY(-50%);
}

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.pricing-card {
    padding: var(--spacing-lg);
    text-align: center;
    position: relative;
    overflow: visible;
}

.pricing-card.featured {
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 12px 48px rgba(37, 99, 235, 0.3);
    transform: scale(1.05);
    animation: pulseBorder 3s ease-in-out infinite;
}

@keyframes pulseBorder {
    0%, 100% {
        box-shadow: 0 12px 48px rgba(37, 99, 235, 0.3);
    }
    50% {
        box-shadow: 0 12px 48px rgba(37, 99, 235, 0.5),
                    0 0 60px rgba(34, 211, 238, 0.2);
    }
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.pricing-header h3 {
    font-size: 1.8rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-xs);
}

.pricing-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.pricing-price {
    margin: var(--spacing-md) 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-currency {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.price-amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-white);
}

.price-period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.pricing-features {
    list-style: none;
    margin: var(--spacing-md) 0;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features i {
    color: #10b981;
    font-size: 1rem;
}

.pricing-note {
    text-align: center;
    padding: var(--spacing-md);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.pricing-note i {
    font-size: 1.5rem;
    color: var(--color-primary-light);
}


/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
}

.testimonial-card {
    padding: var(--spacing-lg);
}

.testimonial-stars {
    color: #fbbf24;
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-dark);
    font-size: 1.25rem;
}

.author-name {
    font-weight: 600;
    color: var(--color-white);
}

.author-title {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== CTA ===== */
.cta {
    padding: var(--spacing-xl) 0;
}

/* ===== WORKFLOW ===== */
.workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.workflow-card {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.workflow-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.workflow-step {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(56, 189, 248, 0.85);
    font-weight: 600;
}

.workflow-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #0b1220;
}

.workflow-card h3 {
    font-size: 1.4rem;
    color: var(--color-white);
}

.workflow-card p {
    color: rgba(226, 232, 240, 0.72);
}

.workflow-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
    color: rgba(226, 232, 240, 0.75);
    font-size: 0.95rem;
}

.workflow-list i {
    color: var(--color-accent);
    margin-right: 8px;
}

.workflow-diagram {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: var(--spacing-lg);
}

.workflow-node {
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(15, 23, 42, 0.55);
    color: var(--color-white);
    font-weight: 600;
}

.workflow-arrow {
    color: rgba(226, 232, 240, 0.5);
    font-size: 1.4rem;
}

.cta-content {
    text-align: center;
    padding: var(--spacing-xl);
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.cta-content > p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-lg);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

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

/* ===== CONTACT ===== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-lg);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item {
    padding: var(--spacing-md);
    text-align: center;
}

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    font-size: 1.5rem;
    color: var(--color-primary-dark);
}

.contact-item h4 {
    font-size: 1.125rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-xs);
}

.contact-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.contact-form {
    padding: var(--spacing-lg);
}

.form-status {
    display: none;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md);
    border: 1px solid transparent;
}

.form-status.is-visible {
    display: block;
}

.form-status.is-success {
    background: rgba(34, 211, 238, 0.15);
    border-color: rgba(34, 211, 238, 0.4);
    color: rgba(226, 232, 240, 0.9);
}

.form-status.is-error {
    background: rgba(248, 113, 113, 0.15);
    border-color: rgba(248, 113, 113, 0.45);
    color: rgba(226, 232, 240, 0.9);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 8px;
    color: var(--color-white);
    font-size: 1rem;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: rgba(37, 99, 235, 0.6);
    background: rgba(15, 23, 42, 0.6);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

.robot-check {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(226, 232, 240, 0.85);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md);
}

.robot-check input {
    width: 18px;
    height: 18px;
    accent-color: #38bdf8;
}

/* ===== FOOTER ===== */
.footer {
    background: rgba(11, 18, 32, 0.9);
    backdrop-filter: blur(20px);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    border-top: 1px solid rgba(148, 163, 184, 0.15);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.footer-logo .logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.footer-logo i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-md);
}

.footer-col h4 {
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    display: inline-block;
    padding-left: 0;
}

.footer-col ul a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s;
}

.footer-col ul a:hover {
    color: var(--color-white);
    padding-left: 20px;
}

.footer-col ul a:hover::before {
    opacity: 1;
    left: 0;
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-dark);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, #38bdf8, #2563eb);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.social-link:hover::before {
    opacity: 1;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.social-link:hover {
    transform: translateY(-4px) scale(1.1);
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    color: var(--color-primary-dark);
    font-size: 1.25rem;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-4px);
}

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

    .hero-title {
        font-size: 2.5rem;
    }

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

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

    .step-connector {
        display: none;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

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

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

    .nav-actions {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-container {
        position: relative;
    }

    .nav-links.active {
        display: flex;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 6px;
        padding: 16px;
        background: rgba(11, 18, 32, 0.96);
        border-radius: 16px;
        border: 1px solid rgba(148, 163, 184, 0.18);
        box-shadow: 0 18px 40px rgba(5, 10, 20, 0.5);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        z-index: 1200;
    }

    .nav-links.active a {
        display: block;
        width: 100%;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

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

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

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

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .orb-one {
        width: 360px;
        height: 360px;
    }

    .orb-two {
        width: 320px;
        height: 320px;
    }

    .orb-three {
        width: 220px;
        height: 220px;
        right: 10%;
    }

    .hero-grid {
        opacity: 0.12;
    }
}

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

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

    .hero-grid {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
