/* ─── Reset & Base ─────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --black: #0B0E12;
    --charcoal: #1A1B23;
    --charcoal-2: #23252F;
    --blue: #1070FF;
    --blue-light: #5A98FF;
    --blue-dim: rgba(16, 112, 255, 0.12);
    --gold: rgb(255, 213, 106);
    --gold-dim: rgba(255, 213, 106, 0.12);
    --neutral: #B8B9C0;
    --soft-gray: #EAEFF3;
    --light-gray: #F6F8FB;
    --surface: #FFFFFF;
    --text: #0B0E12;
    --text-muted: #4B5563;
    --border: #E6EBF3;

    --font-display: 'IBM Plex Sans', 'Inter', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;

    --shadow-orbital: 0 4px 16px -2px rgba(16, 112, 255, 0.12), 0 2px 8px -2px rgba(16, 112, 255, 0.08);
    --shadow-glow: 0 0 40px rgba(90, 152, 255, 0.18);
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.06);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--surface);
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ─── Utility ──────────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
}

.tag-gold {
    background: var(--gold-dim);
    color: var(--gold);
    border: 1px solid rgba(255, 213, 106, 0.25);
}

.tag-blue {
    background: var(--blue-dim);
    color: var(--blue-light);
    border: 1px solid rgba(90, 152, 255, 0.25);
}

.tag-dark {
    background: rgba(255, 255, 255, 0.06);
    color: var(--neutral);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ─── Screenshot Placeholder ───────────────────────────────────────── */
.screenshot-placeholder {
    width: 100%;
    /* 624px = 1248px image ÷ 2 (retina). Prevents upscaling on 2x displays. */
    max-width: 624px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.screenshot-placeholder--dark {
    background: var(--charcoal-2);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.screenshot-placeholder--light {
    background: var(--light-gray);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
}

/* Placeholder inner — no forced aspect-ratio or padding so a real <img>
       fills the full card edge-to-edge at its natural proportions */
.screenshot-inner {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0;
}

/* Any <img> placed inside a screenshot placeholder fills edge-to-edge */
.screenshot-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

/* Browser chrome bar */
.browser-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.browser-bar--light {
    border-bottom-color: var(--border);
}

.browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.screenshot-placeholder--dark .browser-dot:nth-child(1) {
    background: #FF5F57;
}

.screenshot-placeholder--dark .browser-dot:nth-child(2) {
    background: #FEBC2E;
}

.screenshot-placeholder--dark .browser-dot:nth-child(3) {
    background: #28C840;
}

.screenshot-placeholder--light .browser-dot:nth-child(1) {
    background: #FFBDBA;
}

.screenshot-placeholder--light .browser-dot:nth-child(2) {
    background: #FFDDA6;
}

.screenshot-placeholder--light .browser-dot:nth-child(3) {
    background: #B5F0C4;
}

.screenshot-label {
    font-size: 13px;
    font-weight: 500;
}

.screenshot-placeholder--dark .screenshot-label {
    color: rgba(255, 255, 255, 0.25);
}

.screenshot-placeholder--light .screenshot-label {
    color: rgba(11, 14, 18, 0.3);
}

.screenshot-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screenshot-placeholder--dark .screenshot-icon {
    background: rgba(255, 255, 255, 0.06);
}

.screenshot-placeholder--light .screenshot-icon {
    background: rgba(16, 112, 255, 0.08);
}

/* ─── Nav ──────────────────────────────────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(11, 14, 18, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: box-shadow 200ms ease;
}

nav.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-mark {
    width: 32px;
    height: 32px;
    background: var(--blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-orbital);
}

.nav-logo-mark svg {
    display: block;
}

.nav-wordmark {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--neutral);
    transition: color 150ms ease;
}

.nav-links a:hover {
    color: #FFFFFF;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: none;
    transition: all 150ms ease;
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary {
    background: var(--blue);
    color: #FFFFFF;
    padding: 10px 20px;
    box-shadow: var(--shadow-orbital);
}

.btn-primary:hover {
    background: #0D5FE0;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(16, 112, 255, 0.35);
}

.btn-secondary {
    background: var(--gold);
    color: #000000;
    padding: 10px 20px;
    box-shadow: var(--shadow-orbital);
}

.btn-secondary:hover {
    background: var(--light-gray);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 213, 106, 0.35);
}

.btn-primary-lg {
    padding: 14px 28px;
    font-size: 15px;
    border-radius: var(--radius-lg);
}

.btn-ghost {
    background: transparent;
    color: var(--neutral);
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-ghost:hover {
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
}

.btn-ghost-lg {
    padding: 14px 28px;
    font-size: 15px;
    border-radius: var(--radius-lg);
}

.btn-outline-blue {
    background: transparent;
    color: var(--blue-light);
    padding: 10px 20px;
    border: 1px solid rgba(90, 152, 255, 0.3);
}

.btn-outline-blue:hover {
    background: var(--blue-dim);
    border-color: rgba(90, 152, 255, 0.5);
}

/* ─── Hero ─────────────────────────────────────────────────────────── */
.hero {
    background: var(--black);
    padding: 140px 0 0;
    overflow: hidden;
    position: relative;
}


.hero-content {
    position: relative;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    padding-bottom: 64px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 28px;
}

.hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

.hero-eyebrow-text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(42px, 6vw, 68px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 18px;
    line-height: 1.65;
    color: var(--neutral);
    margin-bottom: 40px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-screen-wrap {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
}

/* Gradient fade at the bottom of the hero screenshot */
.hero-screen-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--black));
    pointer-events: none;
}

.hero-screen {
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: none;
    box-shadow: 0 -8px 60px rgba(16, 112, 255, 0.12), 0 -2px 20px rgba(0, 0, 0, 0.4);
}

.hero-browser-bar {
    background: #13151C;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-browser-bar .url-bar {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    height: 28px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 6px;
    margin: 0 12px;
}

.url-bar-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.url-bar-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    font-family: var(--font-body);
}

/* Hero screenshot body — hosts either a real <img> or the placeholder.
       No forced aspect-ratio here — the img defines its own height naturally. */
.hero-screenshot-body {
    background: #0F1117;
    position: relative;
    overflow: hidden;
}

/* When a real image is dropped in, it fills full width at its natural proportions */
.hero-screenshot-body>img {
    width: 100%;
    height: auto;
    display: block;
}

/* Placeholder — fills the body when no image is present */
.hero-placeholder-content {
    min-height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    border: 2px dashed rgba(16, 112, 255, 0.25);
    border-radius: 0;
    margin: 20px;
    border-radius: 8px;
}

.hero-placeholder-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(16, 112, 255, 0.15);
    border: 1px solid rgba(16, 112, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-placeholder-title {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.01em;
}

.hero-placeholder-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.18);
    max-width: 260px;
    line-height: 1.5;
}

/* ─── Stats Bar ────────────────────────────────────────────────────── */
.stats-bar {
    background: var(--charcoal);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 16px 24px;
    position: relative;
}

.stat-item+.stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-number .accent {
    color: var(--blue-light);
}

.stat-number .gold {
    color: var(--gold);
}

.stat-label {
    font-size: 13px;
    color: var(--neutral);
    font-weight: 500;
}

/* ─── Section Base ─────────────────────────────────────────────────── */
.section {
    padding: 112px 0;
}

.section-dark {
    background: var(--black);
}

.section-alt {
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 72px;
}

.section-header .tag {
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-header h2.light {
    color: #FFFFFF;
}

.section-header h2.dark {
    color: var(--text);
}

.section-header p {
    font-size: 17px;
    line-height: 1.65;
}

.section-header p.light {
    color: var(--neutral);
}

.section-header p.dark {
    color: var(--text-muted);
}

/* ─── Feature Row ───────────────────────────────────────────────────── */
.feature-row {
    display: grid;
    /* text column narrower, visual column wider */
    grid-template-columns: 2fr 3fr;
    gap: 56px;
    align-items: center;
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-row--dark {
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

/* Reversed: visual on left — flip column sizes so visual stays in the 3fr track */
.feature-row--reverse {
    grid-template-columns: 3fr 2fr;
}

.feature-row--reverse .feature-visual {
    order: -1;
}

.feature-row--dark-reverse {
    grid-template-columns: 3fr 2fr;
}

.feature-row--dark-reverse .feature-visual {
    order: -1;
}

.feature-text .tag {
    margin-bottom: 20px;
}

.feature-text h3 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.feature-text h3.light {
    color: #FFFFFF;
}

.feature-text h3.dark {
    color: var(--text);
}

.feature-text .feature-desc {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.feature-text .feature-desc.light {
    color: var(--neutral);
}

.feature-text .feature-desc.dark {
    color: var(--text-muted);
}

.feature-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-bullet {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.feature-bullet.light {
    color: rgba(255, 255, 255, 0.7);
}

.feature-bullet.dark {
    color: var(--text-muted);
}

.bullet-icon {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.bullet-icon--blue {
    background: var(--blue-dim);
}

.bullet-icon--gold {
    background: var(--gold-dim);
}

.bullet-icon--green {
    background: rgba(16, 185, 129, 0.12);
}

/* ─── Feature Cards (used in How it Works) ─────────────────────────── */
.step-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    counter-reset: steps;
}

.step-card {
    background: var(--charcoal-2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    position: relative;
    counter-increment: steps;
    transition: border-color 200ms ease, transform 200ms ease;
}

.step-card:hover {
    border-color: rgba(90, 152, 255, 0.3);
    transform: translateY(-2px);
}

.step-number {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.step-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--blue-dim);
    border: 1px solid rgba(90, 152, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.step-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.step-desc {
    font-size: 13px;
    line-height: 1.55;
    color: var(--neutral);
}

/* Connector line between steps */
.step-grid .step-card::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -9px;
    width: 18px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.step-grid .step-card:last-child::after {
    display: none;
}

/* ─── CTA Section ──────────────────────────────────────────────────── */
.cta-section {
    background: var(--black);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}


.cta-inner {
    position: relative;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 20px;
}

.cta-inner p {
    font-size: 17px;
    color: var(--neutral);
    line-height: 1.6;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ─── Footer ───────────────────────────────────────────────────────── */
footer {
    background: var(--charcoal);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 40px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-wordmark {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

/* ─── Animations ───────────────────────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-delay-1 {
    transition-delay: 100ms;
}

.fade-up-delay-2 {
    transition-delay: 200ms;
}

.fade-up-delay-3 {
    transition-delay: 300ms;
}

.fade-up-delay-4 {
    transition-delay: 400ms;
}

/* ─── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(3)::before {
        display: none;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .feature-row--reverse .feature-visual {
        order: unset;
    }

    .feature-row--dark-reverse .feature-visual {
        order: unset;
    }

    .step-grid {
        grid-template-columns: 1fr 1fr;
    }

    .step-grid .step-card::after {
        display: none;
    }
}

@media (max-width: 560px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .step-grid {
        grid-template-columns: 1fr;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-ctas .btn {
        text-align: center;
    }
}

/* ─── Accent border top ────────────────────────────────────────────── */
.accent-border-top {
    border-top: 2px solid var(--gold);
}

/* Special inline highlight */
.inline-highlight {
    background: var(--blue-dim);
    border: 1px solid rgba(90, 152, 255, 0.2);
    border-radius: 4px;
    padding: 1px 6px;
    color: var(--blue-light);
    font-size: 0.9em;
    font-weight: 500;
}

/* ─── Web-to-Lead Form ─────────────────────────────────────────────── */
.wtl-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
}

.wtl-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.wtl-form input {
    width: 100%;
    padding: 11px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 150ms;
    box-sizing: border-box;
}

.wtl-form input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.wtl-form input:focus {
    border-color: rgba(90, 152, 255, 0.55);
    background: rgba(255, 255, 255, 0.08);
}

.wtl-form textarea {
    width: 100%;
    padding: 11px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 150ms;
    box-sizing: border-box;
    resize: vertical;
    min-height: 90px;
}

.wtl-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.wtl-form select {
    width: 100%;
    padding: 11px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 150ms;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(255,255,255,0.35)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

.wtl-form select:focus {
    border-color: rgba(90, 152, 255, 0.55);
    background-color: rgba(255, 255, 255, 0.08);
}

.wtl-form select option {
    background: #0f1117;
    color: #fff;
}

.wtl-form select.wtl-placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.wtl-form textarea:focus {
    border-color: rgba(90, 152, 255, 0.55);
    background: rgba(255, 255, 255, 0.08);
}

.wtl-thankyou {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 24px;
    background: rgba(52, 211, 153, 0.06);
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-radius: 16px;
    max-width: 400px;
    margin: 0 auto;
}

.wtl-thankyou-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(52, 211, 153, 0.12);
    border: 1px solid rgba(52, 211, 153, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wtl-thankyou h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.wtl-thankyou p {
    font-size: 14px;
    color: var(--neutral);
    margin: 0;
    text-align: center;
    line-height: 1.55;
}

@media (max-width: 560px) {
    .wtl-row {
        grid-template-columns: 1fr;
    }
}