/* ==========================================
   WEBSHIFT – Main Stylesheet
   ========================================== */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #6C3CE1;
    --primary-dark: #5429C7;
    --primary-light: #8B5CF6;
    --accent: #00D4FF;
    --accent-2: #FF6B6B;
    --dark: #0A0A1A;
    --dark-2: #12122A;
    --dark-3: #1A1A3E;
    --text: #E2E8F0;
    --text-muted: #94A3B8;
    --text-light: #CBD5E1;
    --white: #FFFFFF;
    --card-bg: rgba(255, 255, 255, 0.04);
    --card-border: rgba(255, 255, 255, 0.08);
    --gradient: linear-gradient(135deg, #6C3CE1 0%, #00D4FF 100%);
    --gradient-2: linear-gradient(135deg, #8B5CF6 0%, #06B6D4 100%);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --shadow: 0 4px 24px rgba(108, 60, 225, 0.15);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    --nav-height: 72px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    background-color: var(--dark);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ---------- Container ---------- */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(108, 60, 225, 0.5);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: rgba(255,255,255,0.2);
}
.btn-outline:hover {
    border-color: var(--primary-light);
    color: var(--white);
    background: rgba(108, 60, 225, 0.1);
}

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    border-color: transparent;
    padding: 12px 16px;
}
.btn-ghost:hover { color: var(--white); }

.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    font-weight: 700;
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,255,255,0.3);
}

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

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

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

/* ---------- Section Header ---------- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-tag {
    display: inline-block;
    background: rgba(108, 60, 225, 0.15);
    color: var(--primary-light);
    border: 1px solid rgba(108, 60, 225, 0.3);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 16px;
}
.section-header p {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 580px;
    margin: 0 auto;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition: var(--transition);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(10, 10, 26, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}
.logo-icon {
    width: 38px;
    height: 38px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.logo-accent { color: var(--accent); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}
.nav-links li a {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--transition);
}
.nav-links li a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.05);
}

.nav-cta { display: flex; align-items: center; gap: 8px; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--nav-height);
    background: var(--dark-2);
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(108, 60, 225, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108, 60, 225, 0.07) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}
.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(108, 60, 225, 0.25);
    top: -100px;
    right: -100px;
}
.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(0, 212, 255, 0.12);
    bottom: 0;
    left: -50px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 40px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(108, 60, 225, 0.12);
    border: 1px solid rgba(108, 60, 225, 0.3);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 24px;
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.8;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; }
.stat-number {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
}
.stat-label { font-size: 13px; color: var(--text-muted); }
.stat-divider { width: 1px; height: 40px; background: var(--card-border); }

/* --- Browser Mockup --- */
.hero-visual { position: relative; }

.browser-mockup {
    background: rgba(18, 18, 42, 0.9);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(108,60,225,0.2);
    position: relative;
    z-index: 2;
    animation: float-browser 6s ease-in-out infinite;
}
@keyframes float-browser {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

.browser-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(0,0,0,0.3);
    border-bottom: 1px solid var(--card-border);
}
.browser-dots { display: flex; gap: 6px; }
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.dot-red { background: #FF5F57; }
.dot-yellow { background: #FEBC2E; }
.dot-green { background: #28C840; }

.browser-url {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 12px;
    color: var(--text-muted);
    flex: 1;
}
.browser-url i { color: #22C55E; font-size: 10px; }

.browser-content { padding: 0; }

.app-ui-mockup {
    display: flex;
    height: 340px;
}

.app-sidebar {
    width: 56px;
    background: rgba(0,0,0,0.3);
    border-right: 1px solid var(--card-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 0;
    gap: 8px;
}
.sidebar-item {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}
.sidebar-item.active {
    background: var(--gradient);
    color: white;
}

.app-main { flex: 1; padding: 16px; overflow: hidden; }

.app-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.app-title-bar { font-size: 14px; font-weight: 600; color: var(--white); }
.app-actions { display: flex; gap: 8px; }
.action-btn {
    width: 72px;
    height: 28px;
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
}
.primary-action { background: linear-gradient(135deg, #6C3CE1, #00D4FF); }

.app-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}
.app-card {
    border-radius: 10px;
    padding: 12px;
}
.card-blue { background: linear-gradient(135deg, rgba(59,130,246,0.25), rgba(59,130,246,0.1)); border: 1px solid rgba(59,130,246,0.2); }
.card-purple { background: linear-gradient(135deg, rgba(139,92,246,0.25), rgba(139,92,246,0.1)); border: 1px solid rgba(139,92,246,0.2); }
.card-green { background: linear-gradient(135deg, rgba(34,197,94,0.25), rgba(34,197,94,0.1)); border: 1px solid rgba(34,197,94,0.2); }

.card-num { font-size: 18px; font-weight: 700; color: var(--white); }
.card-lbl { font-size: 10px; color: var(--text-muted); margin-top: 2px; }

.app-chart-area {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
    padding-bottom: 4px;
}
.chart-bar {
    flex: 1;
    background: rgba(108,60,225,0.3);
    border-radius: 4px 4px 0 0;
    transition: var(--transition);
}
.chart-bar.active { background: linear-gradient(180deg, #6C3CE1, #00D4FF); }

/* Floating Elements */
.conversion-badge {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #22C55E, #16A34A);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
    white-space: nowrap;
    z-index: 3;
}

.floating-tag {
    position: absolute;
    background: rgba(18, 18, 42, 0.95);
    border: 1px solid var(--card-border);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow);
    z-index: 3;
    animation: float-tag 4s ease-in-out infinite;
}
.floating-tag i { color: var(--accent); }
.tag-1 { top: -20px; right: -20px; animation-delay: 0s; }
.tag-2 { bottom: 40px; right: -30px; animation-delay: 2s; }
@keyframes float-tag {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* --- Hero Logos --- */
.hero-logos {
    position: relative;
    z-index: 1;
    padding: 40px 0 20px;
    border-top: 1px solid var(--card-border);
}
.logos-title {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}
.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.logo-placeholder {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    opacity: 0.6;
    transition: var(--transition);
}
.logo-placeholder:hover { opacity: 1; color: var(--text-light); }
.logo-placeholder i { font-size: 18px; }

/* ==========================================
   PROBLEM / SOLUTION
   ========================================== */
.problem-solution {
    padding: 80px 0;
    background: var(--dark);
}
.problem-solution .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
}
.problem-card, .solution-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.problem-card { border-left: 4px solid #EF4444; }
.solution-card { border-left: 4px solid #22C55E; }

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}
.problem-icon { background: rgba(239,68,68,0.15); color: #EF4444; }
.solution-icon { background: rgba(34,197,94,0.15); color: #22C55E; }

.problem-card h3, .solution-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}
.problem-list li, .solution-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--card-border);
    font-size: 14px;
    color: var(--text-muted);
}
.problem-list li:last-child, .solution-list li:last-child { border-bottom: none; }
.problem-list li i { color: #EF4444; margin-top: 3px; flex-shrink: 0; }
.solution-list li i { color: #22C55E; margin-top: 3px; flex-shrink: 0; }

.vs-divider {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 18px;
    color: white;
    box-shadow: 0 0 30px rgba(108,60,225,0.4);
    flex-shrink: 0;
}

/* ==========================================
   FEATURES
   ========================================== */
.features {
    padding: 100px 0;
    background: var(--dark-2);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.feature-large {
    grid-column: span 2;
    grid-row: span 1;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient);
    opacity: 0;
    transition: var(--transition);
}
.feature-card:hover {
    border-color: rgba(108, 60, 225, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(108, 60, 225, 0.15);
}

.feature-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(108, 60, 225, 0.15);
    border: 1px solid rgba(108, 60, 225, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary-light);
    margin-bottom: 20px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}
.feature-card:hover .feature-icon-wrap {
    background: var(--gradient);
    color: white;
    border-color: transparent;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    position: relative;
    z-index: 1;
}
.feature-tags span {
    background: rgba(108,60,225,0.15);
    border: 1px solid rgba(108,60,225,0.25);
    color: var(--primary-light);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
}

/* ==========================================
   HOW IT WORKS
   ========================================== */
.how-it-works {
    padding: 100px 0;
    background: var(--dark);
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 60px;
}

.step {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    position: relative;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 800;
    color: rgba(108,60,225,0.12);
    position: absolute;
    top: 16px;
    right: 24px;
    line-height: 1;
}

.step-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(108,60,225,0.2), rgba(0,212,255,0.1));
    border: 1px solid rgba(108,60,225,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-light);
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.step h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.step p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.step-detail {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.step-detail span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}
.step-detail i { color: #22C55E; }

.step-arrow {
    color: var(--primary-light);
    font-size: 24px;
    opacity: 0.5;
}

.how-cta { text-align: center; }

/* ==========================================
   USE CASES
   ========================================== */
.use-cases {
    padding: 100px 0;
    background: var(--dark-2);
}

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

.use-case-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}
.use-case-card:hover {
    border-color: rgba(108,60,225,0.4);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.uc-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    margin-bottom: 20px;
}

.use-case-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}
.use-case-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}
.uc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-light);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}
.uc-link:hover { gap: 12px; }

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials {
    padding: 100px 0;
    background: var(--dark);
}

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

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}
.testimonial-card.featured {
    border-color: rgba(108,60,225,0.4);
    background: linear-gradient(135deg, rgba(108,60,225,0.08), rgba(0,212,255,0.04));
    transform: scale(1.03);
}
.testimonial-card:hover { border-color: rgba(108,60,225,0.3); }

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}
.testimonial-stars i { color: #FBBF24; font-size: 14px; }

.testimonial-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-card p::before { content: '"'; }
.testimonial-card p::after { content: '"'; }

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}
.author-info strong { display: block; font-size: 14px; color: var(--white); }
.author-info span { font-size: 12px; color: var(--text-muted); }

/* ==========================================
   PRICING PREVIEW
   ========================================== */
.pricing-preview {
    padding: 100px 0;
    background: var(--dark-2);
}

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

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    transition: var(--transition);
}
.pricing-card:hover { border-color: rgba(108,60,225,0.4); transform: translateY(-4px); }
.pricing-card.featured {
    border-color: rgba(108,60,225,0.5);
    background: linear-gradient(135deg, rgba(108,60,225,0.12), rgba(0,212,255,0.05));
    transform: scale(1.04);
}

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

.plan-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}
.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}
.plan-price span:first-child {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
}
.plan-price span:last-child { font-size: 16px; color: var(--text-muted); }

.plan-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--card-border);
}

.plan-features {
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
}
.plan-features i { color: #22C55E; }

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

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

/* ==========================================
   FINAL CTA
   ========================================== */
.final-cta {
    padding: 120px 0;
    background: var(--dark-3);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}
.cta-orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(108,60,225,0.3);
    top: -200px;
    left: -100px;
}
.cta-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(0,212,255,0.15);
    bottom: -100px;
    right: -50px;
}

.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}
.cta-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }

.cta-reassurance {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 14px;
    color: var(--text-muted);
    flex-wrap: wrap;
}
.cta-reassurance i { color: var(--primary-light); margin-right: 4px; }
.cta-reassurance span { opacity: 0.4; }

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--dark);
    border-top: 1px solid var(--card-border);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    padding: 80px 24px 60px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 16px;
    margin-bottom: 24px;
    line-height: 1.7;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 12px;
}
.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-muted);
    transition: var(--transition);
}
.social-links a:hover {
    background: var(--gradient);
    color: white;
    border-color: transparent;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
    font-size: 14px;
    color: var(--text-muted);
    transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid var(--card-border);
    padding: 20px 24px;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.footer-bottom i { color: #EF4444; }
.footer-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
}
.footer-badges i { color: var(--primary-light); }

/* ==========================================
   PRICING PAGE
   ========================================== */
.page-hero {
    padding: 140px 0 80px;
    background: var(--dark-2);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(108,60,225,0.15);
    border-radius: 50%;
    filter: blur(100px);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}
.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}
.page-hero p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
}

.pricing-full {
    padding: 80px 0 100px;
    background: var(--dark);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}
.toggle-label { font-size: 15px; color: var(--text-muted); }
.toggle-label.active { color: var(--white); font-weight: 600; }
.toggle-switch {
    width: 52px;
    height: 28px;
    background: rgba(108,60,225,0.3);
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(108,60,225,0.4);
    transition: var(--transition);
}
.toggle-switch.active { background: var(--gradient); }
.toggle-thumb {
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 3px;
    transition: var(--transition);
}
.toggle-switch.active .toggle-thumb { left: 27px; }
.annual-badge {
    background: rgba(34,197,94,0.15);
    border: 1px solid rgba(34,197,94,0.3);
    color: #22C55E;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

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

/* FAQ */
.faq-section {
    padding: 80px 0 100px;
    background: var(--dark-2);
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}
.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition);
}
.faq-question:hover { color: var(--primary-light); }
.faq-question i { transition: var(--transition); color: var(--text-muted); }
.faq-item.open .faq-question i { transform: rotate(180deg); color: var(--primary-light); }
.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 200px; padding: 0 24px 20px; }

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-section {
    padding: 140px 0 100px;
    background: var(--dark);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}
.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}
.contact-info p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
}
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.contact-item-icon {
    width: 48px;
    height: 48px;
    background: rgba(108,60,225,0.15);
    border: 1px solid rgba(108,60,225,0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 18px;
    flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 14px; color: var(--white); margin-bottom: 2px; }
.contact-item span { font-size: 14px; color: var(--text-muted); }

/* Form */
.contact-form-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.form-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}
.form-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group.full { grid-column: span 2; }
.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--text);
    font-family: var(--font-main);
    font-size: 14px;
    transition: var(--transition);
    width: 100%;
}
.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(108,60,225,0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { appearance: none; cursor: pointer; }

.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; }

.form-success {
    display: none;
    text-align: center;
    padding: 40px;
}
.form-success.visible { display: block; }
.success-icon {
    width: 72px;
    height: 72px;
    background: rgba(34,197,94,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #22C55E;
    margin: 0 auto 20px;
}
.form-success h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}
.form-success p { color: var(--text-muted); }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1100px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-large { grid-column: span 2; }
    .footer-container { grid-template-columns: 1fr; gap: 40px; }
    .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .hero-container { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { display: none; }
    .problem-solution .container { grid-template-columns: 1fr; }
    .vs-divider { margin: 0 auto; }
    .steps-container { grid-template-columns: 1fr; }
    .step-arrow { transform: rotate(90deg); text-align: center; }
    .use-cases-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial-card.featured { transform: scale(1); }
    .pricing-cards { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: scale(1); }
    .pricing-full-cards { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full { grid-column: span 1; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: rgba(10,10,26,0.97);
        backdrop-filter: blur(20px);
        padding: 24px;
        border-bottom: 1px solid var(--card-border);
        gap: 8px;
        z-index: 999;
    }
    .nav-links.open + .nav-cta {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: calc(var(--nav-height) + 220px);
        left: 0;
        right: 0;
        background: rgba(10,10,26,0.97);
        padding: 16px 24px;
        z-index: 999;
    }
    .nav-toggle { display: flex; }
    .use-cases-grid { grid-template-columns: 1fr; }
    .logos-grid { gap: 20px; }
    .footer-links { grid-template-columns: 1fr 1fr; }
    .hero-stats { gap: 16px; }
    .pricing-toggle { flex-wrap: wrap; }
}

@media (max-width: 480px) {
    .hero-cta { flex-direction: column; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .footer-links { grid-template-columns: 1fr; }
}
