/* ═══════════════════════════════════════════════════════
   ULTIMATE AI MASTER — Landing Page Stylesheet
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── Tokens ─────────────────────────────────────────── */
:root {
    --bg: #080b18;
    --surface: #0d1124;
    --surface2: #111630;
    --border: rgba(99, 102, 241, .2);
    --border2: rgba(99, 102, 241, .08);
    --accent: #6366f1;
    --accent2: #8b5cf6;
    --accent3: #06b6d4;
    --green: #10b981;
    --amber: #f59e0b;
    --red: #ef4444;
    --text: #e2e8f0;
    --text2: #94a3b8;
    --text3: #4b5563;
    --grad: linear-gradient(135deg, #6366f1, #8b5cf6);
    --grad2: linear-gradient(135deg, #06b6d4, #6366f1);
    --shadow: 0 20px 60px rgba(0, 0, 0, .5);
    --glow: 0 0 40px rgba(99, 102, 241, .25);
    --r: 16px;
    --r-sm: 10px;
    --trans: .25s cubic-bezier(.4, 0, .2, 1);
}

/* ── Reset ───────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

/* ── Container ───────────────────────────────────────── */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Gradient text ───────────────────────────────────── */
.gradient-text {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ══════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: var(--trans);
}

.nav.scrolled {
    background: rgba(8, 11, 24, .92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -.3px;
    white-space: nowrap;
}

.logo-icon {
    font-size: 22px;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, .6));
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        filter: drop-shadow(0 0 10px rgba(99, 102, 241, .6));
    }

    50% {
        filter: drop-shadow(0 0 20px rgba(139, 92, 246, .9));
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
    margin-left: auto;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text2);
    transition: color var(--trans);
}

.nav-links a:hover {
    color: var(--text);
}

.nav-cta {
    padding: 9px 22px;
    background: var(--grad);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 40px;
    box-shadow: 0 4px 20px rgba(99, 102, 241, .4);
    transition: var(--trans);
    white-space: nowrap;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(99, 102, 241, .55);
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}

.nav-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text2);
    border-radius: 2px;
    transition: var(--trans);
}

/* ══════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--trans);
    white-space: nowrap;
}

.btn-xl {
    padding: 14px 34px;
    font-size: 16px;
}

.btn-primary {
    background: var(--grad);
    color: #fff;
    box-shadow: 0 4px 20px rgba(99, 102, 241, .4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(99, 102, 241, .6);
}

.btn-ghost {
    background: rgba(255, 255, 255, .06);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(99, 102, 241, .5);
}

/* ══════════════════════════════════════════════════════
   SECTION COMMON
   ══════════════════════════════════════════════════════ */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--accent);
    background: rgba(99, 102, 241, .1);
    border: 1px solid rgba(99, 102, 241, .25);
    padding: 5px 14px;
    border-radius: 40px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -.5px;
    margin-bottom: 18px;
}

.section-sub {
    font-size: 18px;
    color: var(--text2);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Animate-on-scroll */
[data-aos] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
}

[data-aos].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .55;
}

.hero-orb1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, .4), transparent 70%);
    top: -180px;
    left: -120px;
    animation: float 8s ease-in-out infinite;
}

.hero-orb2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, .35), transparent 70%);
    bottom: -100px;
    right: -80px;
    animation: float 10s ease-in-out infinite reverse;
}

.hero-orb3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(6, 182, 212, .3), transparent 70%);
    top: 40%;
    left: 50%;
    animation: float 12s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -20px) scale(1.05);
    }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99, 102, 241, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, .04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero .container {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    background: rgba(99, 102, 241, .1);
    border: 1px solid rgba(99, 102, 241, .3);
    padding: 6px 16px;
    border-radius: 40px;
    margin-bottom: 28px;
    animation: fadeUp .6s ease both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }
}

.hero-title {
    font-size: clamp(44px, 7vw, 80px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    animation: fadeUp .7s .1s ease both;
}

.hero-sub {
    font-size: 18px;
    color: var(--text2);
    line-height: 1.75;
    max-width: 580px;
    margin-bottom: 40px;
    animation: fadeUp .7s .2s ease both;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
    animation: fadeUp .7s .3s ease both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: fadeUp .7s .4s ease both;
}

.hero-stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 34px;
    font-weight: 900;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: .8px;
    font-weight: 600;
    margin-top: 4px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Floating card */
.hero-card-float {
    position: absolute;
    right: max(24px, calc(50% - 680px));
    top: 50%;
    transform: translateY(-50%);
    animation: fadeUp .8s .5s ease both, cardFloat 6s 1s ease-in-out infinite;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(-50%) translateY(0);
    }

    50% {
        transform: translateY(-50%) translateY(-16px);
    }
}

.float-card {
    width: 300px;
    background: rgba(13, 17, 36, .95);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .6), 0 0 0 1px rgba(99, 102, 241, .15), var(--glow);
    backdrop-filter: blur(20px);
}

.float-card-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: rgba(99, 102, 241, .1);
    border-bottom: 1px solid var(--border2);
}

.float-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.float-dot.green {
    background: #10b981;
}

.float-dot.amber {
    background: #f59e0b;
}

.float-dot.red {
    background: #ef4444;
}

.float-card-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text2);
    margin-left: 6px;
}

.float-card-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float-line {
    height: 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .08);
    position: relative;
    overflow: hidden;
}

.float-line.glow {
    background: rgba(99, 102, 241, .2);
}

.float-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, .3), transparent);
    animation: shimmer 2s ease-in-out infinite;
    background-size: 200% 100%;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.w80 {
    width: 80%;
}

.w60 {
    width: 60%;
}

.w90 {
    width: 90%;
}

.w50 {
    width: 50%;
}

.float-btn-row {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.float-btn-pill {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    background: var(--grad);
    color: #fff;
}

.float-btn-pill.secondary {
    background: rgba(255, 255, 255, .07);
    color: var(--text2);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ══════════════════════════════════════════════════════
   FEATURES GRID
   ══════════════════════════════════════════════════════ */
.features {
    background: var(--surface);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card.card-wide {
    grid-column: span 2;
}

.feature-card {
    background: var(--bg);
    border: 1px solid var(--border2);
    border-radius: var(--r);
    padding: 28px;
    transition: var(--trans);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top left, rgba(99, 102, 241, .06), transparent 60%);
    pointer-events: none;
}

.feature-card:hover {
    border-color: rgba(99, 102, 241, .35);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .4), var(--glow);
    transform: translateY(-4px);
}

.card-wide {
    flex-direction: row;
    align-items: flex-start;
    gap: 28px;
}

.card-wide .feat-content {
    flex: 1;
}

.feat-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--clr-rgb, 99, 102, 241), .12);
    border: 1px solid rgba(var(--clr-rgb, 99, 102, 241), .2);
    flex-shrink: 0;
    color: var(--clr, var(--accent));
    box-shadow: 0 0 20px rgba(var(--clr-rgb, 99, 102, 241), .15);
}

.feat-icon-wrap svg {
    stroke: var(--clr, var(--accent));
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}

.feature-card p {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.7;
}

.feat-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 4px;
}

.tag {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    background: rgba(99, 102, 241, .1);
    border: 1px solid rgba(99, 102, 241, .2);
    padding: 3px 10px;
    border-radius: 20px;
}

/* Feature card previews */
.feat-preview {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 120px;
    align-self: center;
}

.preview-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.preview-line {
    height: 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .07);
}

.preview-line.glow {
    background: rgba(99, 102, 241, .25);
    box-shadow: 0 0 12px rgba(99, 102, 241, .3);
}

/* Chat preview */
.feat-chat-preview {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 200px;
    padding: 14px;
    background: rgba(0, 0, 0, .3);
    border-radius: 12px;
    border: 1px solid var(--border2);
}

.chat-bubble {
    padding: 9px 13px;
    border-radius: 12px;
    font-size: 12px;
    max-width: 90%;
    line-height: 1.5;
}

.chat-bubble.bot {
    background: rgba(99, 102, 241, .15);
    border: 1px solid rgba(99, 102, 241, .2);
    color: var(--text);
}

.chat-bubble.user {
    background: var(--grad);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

/* ══════════════════════════════════════════════════════
   AI PROVIDERS
   ══════════════════════════════════════════════════════ */
.providers {
    background: var(--bg);
}

.providers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.provider-card {
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: var(--r);
    padding: 36px 28px;
    position: relative;
    transition: var(--trans);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.provider-card:hover {
    border-color: var(--border);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .4);
    transform: translateY(-4px);
}

.provider-card.active {
    border-color: rgba(99, 102, 241, .45);
    box-shadow: 0 8px 40px rgba(99, 102, 241, .2);
}

.provider-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.provider-logo {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 6px;
}

.provider-logo.gemini {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.provider-logo.openai {
    color: #10b981;
}

.provider-card h3 {
    font-size: 22px;
    font-weight: 800;
}

.provider-card p {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.7;
}

.provider-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-top: 6px;
}

.provider-list li {
    font-size: 13px;
    color: var(--text2);
    font-weight: 500;
}

.provider-list li::first-letter {
    color: var(--green);
}

.provider-auto {
    background: linear-gradient(135deg, rgba(99, 102, 241, .12), rgba(139, 92, 246, .08));
    border: 1px solid rgba(99, 102, 241, .3);
    border-radius: var(--r);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
}

.provider-auto-icon {
    font-size: 36px;
    background: var(--grad2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.provider-auto h3 {
    font-size: 22px;
    font-weight: 800;
}

.provider-auto p {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.7;
}

/* ══════════════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════════════ */
.how {
    background: var(--surface);
}

.steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
}

.step-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--grad);
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 28px rgba(99, 102, 241, .45);
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.7;
}

.step-connector {
    flex: 0 0 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    margin-top: 30px;
    opacity: .5;
}

/* ══════════════════════════════════════════════════════
   SHOWCASE
   ══════════════════════════════════════════════════════ */
.showcase {
    background: var(--bg);
}

.showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.showcase-tab {
    padding: 9px 22px;
    border-radius: 40px;
    border: 1px solid var(--border2);
    background: var(--surface);
    color: var(--text2);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--trans);
    font-family: 'Inter', sans-serif;
}

.showcase-tab:hover {
    border-color: var(--border);
    color: var(--text);
}

.showcase-tab.active {
    background: var(--grad);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 20px rgba(99, 102, 241, .4);
}

.showcase-pane {
    display: none;
}

.showcase-pane.active {
    display: block;
}

/* Mock Browser */
.mock-browser {
    border-radius: 14px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .6), var(--glow);
    max-width: 900px;
    margin: 0 auto;
}

.mock-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 16px;
    background: #0a0d1e;
    border-bottom: 1px solid var(--border2);
}

.mock-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.mock-dot.r {
    background: #ef4444;
}

.mock-dot.a {
    background: #f59e0b;
}

.mock-dot.g {
    background: #10b981;
}

.mock-url {
    font-size: 12px;
    color: var(--text3);
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border2);
    border-radius: 6px;
    padding: 3px 12px;
    flex: 1;
    max-width: 400px;
    margin-left: 8px;
}

.mock-screen {
    background: var(--surface);
    padding: 16px;
    min-height: 340px;
}

.mock-header-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: linear-gradient(135deg, rgba(99, 102, 241, .15), rgba(139, 92, 246, .08));
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 14px;
}

.mock-logo {
    font-size: 14px;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mock-badge {
    font-size: 11px;
    background: var(--grad);
    color: #fff;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 600;
}

.mock-pills {
    display: flex;
    gap: 4px;
    margin-left: auto;
}

.mock-pill {
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .06);
    color: var(--text2);
    border: 1px solid var(--border2);
    font-weight: 600;
}

.mock-pill.active {
    background: var(--grad);
    color: #fff;
    border-color: transparent;
}

.mock-tabs-row {
    display: flex;
    gap: 6px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.mock-tab {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
    background: transparent;
    color: var(--text3);
}

.mock-tab.active {
    background: var(--grad);
    color: #fff;
}

.mock-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mock-panel {
    background: rgba(0, 0, 0, .2);
    border: 1px solid var(--border2);
    border-radius: 10px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mock-panel.result {
    gap: 10px;
    padding: 16px;
    justify-content: center;
}

.mock-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: var(--text3);
}

.mock-input-box {
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 12px;
    color: var(--text2);
}

.mock-input-box.short {
    font-size: 11px;
}

.mock-select-box {
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 7px 10px;
    font-size: 12px;
    color: var(--text2);
}

.mock-btn-primary {
    background: var(--grad);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 9px 14px;
    border-radius: 8px;
    text-align: center;
    margin-top: 4px;
}

.mock-result-line {
    height: 9px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .07);
}

.mock-result-line.w90 {
    width: 90%;
}

.mock-result-line.w70 {
    width: 70%;
}

.mock-result-line.w80 {
    width: 80%;
}

.mock-result-line.w60 {
    width: 60%;
}

.mock-result-line.w85 {
    width: 85%;
}

.mock-result-line.w50 {
    width: 50%;
}

.mock-result-line.glow {
    background: rgba(99, 102, 241, .3);
    box-shadow: 0 0 10px rgba(99, 102, 241, .3);
}

/* SEO screen */
.mock-audit-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 14px;
}

.mock-stat-card {
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    border: 1px solid;
}

.mock-stat-card.red {
    background: rgba(239, 68, 68, .1);
    border-color: rgba(239, 68, 68, .25);
}

.mock-stat-card.amber {
    background: rgba(245, 158, 11, .1);
    border-color: rgba(245, 158, 11, .25);
}

.mock-stat-card.blue {
    background: rgba(99, 102, 241, .1);
    border-color: rgba(99, 102, 241, .25);
}

.mock-stat-card.green {
    background: rgba(16, 185, 129, .1);
    border-color: rgba(16, 185, 129, .25);
}

.mock-stat-num {
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
}

.mock-stat-lbl {
    font-size: 9px;
    color: var(--text2);
    font-weight: 600;
}

.mock-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 6px;
    padding: 6px 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text3);
    background: rgba(255, 255, 255, .03);
    border-radius: 6px;
    margin-bottom: 4px;
}

.mock-table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 6px;
    padding: 8px 10px;
    align-items: center;
    border-bottom: 1px solid var(--border2);
    font-size: 11px;
}

.mock-line {
    height: 8px;
    border-radius: 5px;
    background: rgba(255, 255, 255, .1);
    display: block;
}

.mock-badge-sm {
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    text-align: center;
}

.mock-badge-sm.green {
    background: rgba(16, 185, 129, .2);
    color: #10b981;
}

.mock-badge-sm.red {
    background: rgba(239, 68, 68, .2);
    color: #ef4444;
}

.mock-badge-sm.amber {
    background: rgba(245, 158, 11, .2);
    color: #f59e0b;
}

.mock-badge-sm.small {
    font-size: 9px;
}

.mock-score {
    font-size: 11px;
    font-weight: 700;
}

.mock-score.green {
    color: #10b981;
}

.mock-score.amber {
    color: #f59e0b;
}

.mock-score.red {
    color: #ef4444;
}

.mock-btn-sm {
    font-size: 10px;
    padding: 3px 8px;
    background: rgba(99, 102, 241, .15);
    color: var(--accent);
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
}

/* Image screen */
.mock-panel.img-preview {
    justify-content: center;
    align-items: center;
    min-height: 160px;
}

.mock-img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: 140px;
    border-radius: 8px;
    border: 2px dashed var(--border);
    position: relative;
    overflow: hidden;
    justify-content: center;
}

.mock-img-placeholder span {
    font-size: 11px;
    color: var(--text3);
    z-index: 1;
}

.mock-img-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, .05), rgba(139, 92, 246, .08));
    animation: shimmer 2s ease-in-out infinite;
}

/* Links screen */
.mock-link-suggest {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px;
}

.mock-link-header {
    font-size: 12px;
    color: var(--text2);
    padding: 4px 0 8px;
    border-bottom: 1px solid var(--border2);
    margin-bottom: 4px;
}

.mock-link-item {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr auto;
    gap: 8px;
    align-items: center;
    padding: 9px 10px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--border2);
    border-radius: 8px;
}

.mock-link-anchor {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
}

.mock-link-url {
    font-size: 11px;
    color: var(--text3);
}

/* Chatbot screen */
.chatbot-screen {
    position: relative;
    padding: 0;
    min-height: 360px;
}

.mock-site-bg {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mock-site-line {
    height: 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .06);
}

.mock-chatbot-widget {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 250px;
    background: #0d1124;
    border: 1px solid rgba(99, 102, 241, .35);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .5), 0 0 30px rgba(99, 102, 241, .15);
}

.mock-chatbot-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: linear-gradient(135deg, rgba(99, 102, 241, .2), rgba(139, 92, 246, .1));
    border-bottom: 1px solid rgba(99, 102, 241, .15);
    font-size: 12px;
}

.mock-chatbot-msgs {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.mock-chat-msg {
    padding: 7px 10px;
    border-radius: 10px;
    font-size: 11px;
    line-height: 1.5;
    max-width: 90%;
}

.mock-chat-msg.bot {
    background: rgba(99, 102, 241, .14);
    border: 1px solid rgba(99, 102, 241, .2);
    color: var(--text);
}

.mock-chat-msg.user {
    background: var(--grad);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 3px;
}

.mock-chatbot-input {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border-top: 1px solid rgba(99, 102, 241, .12);
    background: rgba(0, 0, 0, .15);
    font-size: 11px;
    color: var(--text3);
}

.mock-send-btn {
    margin-left: auto;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
}

/* ══════════════════════════════════════════════════════
   BENEFITS
   ══════════════════════════════════════════════════════ */
.benefits {
    background: var(--surface);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-item {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg);
    border: 1px solid var(--border2);
    border-radius: var(--r);
    transition: var(--trans);
}

.benefit-item:hover {
    border-color: var(--border);
    transform: translateY(-4px);
    box-shadow: var(--glow);
}

.benefit-icon {
    font-size: 38px;
    margin-bottom: 16px;
    display: block;
}

.benefit-item h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.7;
}

/* ══════════════════════════════════════════════════════
   CONTACT / CTA
   ══════════════════════════════════════════════════════ */
.contact {
    background: var(--bg);
}

.cta-box {
    position: relative;
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(99, 102, 241, .1), rgba(139, 92, 246, .06));
    border: 1px solid rgba(99, 102, 241, .3);
    border-radius: 24px;
    overflow: hidden;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .5;
    pointer-events: none;
}

.cta-orb1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, .4), transparent 70%);
    top: -100px;
    left: -80px;
}

.cta-orb2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(139, 92, 246, .4), transparent 70%);
    bottom: -80px;
    right: -60px;
}

.cta-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    background: rgba(99, 102, 241, .12);
    border: 1px solid rgba(99, 102, 241, .3);
    padding: 5px 16px;
    border-radius: 40px;
    margin-bottom: 24px;
}

.cta-title {
    font-size: clamp(32px, 5vw, 50px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -.5px;
    margin-bottom: 18px;
}

.cta-sub {
    font-size: 17px;
    color: var(--text2);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 13px;
    font-weight: 600;
    color: var(--text2);
}

.cta-trust span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ══════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════ */
.footer {
    background: var(--surface);
    border-top: 1px solid var(--border2);
    padding: 32px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 800;
}

.footer-name {
    color: var(--text2);
}

.footer-copy {
    font-size: 13px;
    color: var(--text3);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 13px;
    color: var(--text3);
    transition: color var(--trans);
}

.footer-links a:hover {
    color: var(--accent);
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-card-float {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .feature-card.card-wide {
        grid-column: span 2;
    }

    .providers-grid {
        grid-template-columns: 1fr 1fr;
    }

    .provider-auto {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .nav-links {
        display: none;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(8, 11, 24, .97);
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--border);
        backdrop-filter: blur(16px);
    }

    .nav-links.open a {
        font-size: 16px;
    }

    .nav-cta {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card.card-wide {
        grid-column: span 1;
        flex-direction: column;
    }

    .providers-grid {
        grid-template-columns: 1fr;
    }

    .provider-auto {
        grid-column: span 1;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        width: 2px;
        height: 40px;
        margin: 0;
    }

    .mock-two-col {
        grid-template-columns: 1fr;
    }

    .mock-audit-stats {
        grid-template-columns: 1fr 1fr;
    }

    .mock-table-header,
    .mock-table-row {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .mock-table-row span:nth-child(4),
    .mock-table-row span:nth-child(5),
    .mock-table-header span:nth-child(4),
    .mock-table-header span:nth-child(5) {
        display: none;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-stats {
        gap: 18px;
        flex-wrap: wrap;
    }

    .hero-stat-divider {
        display: none;
    }

    .cta-box {
        padding: 52px 24px;
    }

    .footer-inner {
        justify-content: center;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .mock-link-item {
        grid-template-columns: 1fr 1fr;
    }

    .mock-link-item>*:nth-child(3),
    .mock-link-item>*:nth-child(4) {
        display: none;
    }
}
.hire-btn-fiverr {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(29, 191, 115, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
}

.hire-btn-fiverr:hover {
    transform: translateY(-2px);
    background: #22d67f !important;
    box-shadow: 0 8px 25px rgba(29, 191, 115, 0.6);
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 15px rgba(29, 191, 115, 0.3); }
    50% { box-shadow: 0 0 25px rgba(29, 191, 115, 0.5); }
}