:root {
    --bg: #050915;
    --surface: rgba(255, 255, 255, 0.06);
    --card: rgba(255, 255, 255, 0.07);
    --text: #e8ecf5;
    --muted: #9fb1d7;
    --accent-start: #2563eb;
    --accent-end: #22d3ee;
    --accent: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    --shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.25);
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --border: rgba(255, 255, 255, 0.08);
    --max-width: 1200px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body.page {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

.container {
    width: min(var(--max-width), 92vw);
    margin: 0 auto;
}

.background-gradient {
    position: fixed;
    inset: -40% -20% auto -20%;
    height: 80vh;
    background: radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.38), transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(34, 211, 238, 0.35), transparent 35%),
        linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(15, 23, 42, 0.6));
    filter: blur(50px);
    opacity: 0.9;
    pointer-events: none;
    transform: translateZ(0);
    transition: transform 0.6s ease, opacity 0.6s ease;
    z-index: 0;
}

.background-accents {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.orb {
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.55;
}

.orb-blue {
    background: #2563eb;
    top: 10%;
    left: 6%;
}

.orb-cyan {
    background: #22d3ee;
    top: 18%;
    right: 8%;
}

.grid-lines {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            rgba(255, 255, 255, 0.05) 1px,
            rgba(255, 255, 255, 0.0) 1px
        ),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, rgba(255, 255, 255, 0.0) 1px);
    background-size: 120px 120px;
    mask-image: radial-gradient(circle at 50% 30%, rgba(0, 0, 0, 0.5), transparent 60%);
}

.site-header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(14px);
    background: rgba(5, 9, 21, 0.85);
    border-bottom: 1px solid var(--border);
    z-index: 10;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 999px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.brand::after {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.14), rgba(34, 211, 238, 0.08));
    opacity: 0.6;
    pointer-events: none;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-weight: 700;
    color: #fff;
    position: relative;
    z-index: 1;
}

.brand-text {
    display: grid;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.brand-name {
    font-weight: 700;
}

.brand-sub {
    font-size: 12px;
    color: var(--muted);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-link {
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--muted);
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:focus-visible,
.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-1px);
}

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

.primary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 17px;
    border-radius: 12px;
    font-weight: 600;
    border: 1px solid var(--border);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-button {
    background-image: var(--accent);
    color: #fff;
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.4);
}

.primary-button:hover,
.primary-button:focus-visible {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 22px 50px rgba(37, 99, 235, 0.5);
}

.ghost-button {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.ghost-button:hover,
.ghost-button:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.text-link {
    color: #c8e1ff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    margin: 4px 0;
    transition: transform 0.2s ease;
}

.section {
    padding: 72px 0;
    position: relative;
    z-index: 1;
}

.hero {
    padding-top: 110px;
    padding-bottom: 40px;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: center;
    gap: 32px;
}

.hero-copy h1 {
    font-size: clamp(34px, 4vw, 52px);
    margin: 12px 0;
    line-height: 1.05;
}

.lead {
    color: var(--muted);
    font-size: 18px;
    margin: 0 0 14px;
}

.hero-actions {
    margin-top: 18px;
    align-items: center;
    gap: 12px;
}

.stats-bar {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.stat-title {
    font-size: 13px;
    color: var(--muted);
}

.stat-value {
    font-weight: 700;
}

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

.hero-mock {
    width: min(480px, 100%);
    padding: 18px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.hero-mock::after {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: inherit;
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.1), rgba(34, 211, 238, 0.06));
    filter: blur(12px);
    pointer-events: none;
}

.hero-mock-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    position: relative;
    z-index: 1;
    margin-bottom: 12px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 16px rgba(34, 197, 94, 0.7);
}

.chat-window {
    display: grid;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.animate-bubble {
    will-change: transform, opacity;
}

.chat-bubble {
    padding: 12px 14px;
    border-radius: 16px;
    max-width: 100%;
    box-shadow: var(--shadow-soft);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border);
    transform-origin: left center;
    opacity: 0;
    animation: bubble-in 1.4s forwards;
}

.from-agent {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.45), rgba(34, 211, 238, 0.3));
    border-color: rgba(255, 255, 255, 0.12);
}

.from-user {
    background: rgba(255, 255, 255, 0.08);
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.55s; }
.delay-3 { animation-delay: 0.95s; }
.delay-4 { animation-delay: 1.35s; }

.booking-card {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.booking-title {
    margin: 6px 0;
}

.price-chip {
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid var(--border);
    font-weight: 700;
}

.channels-bar {
    margin-top: 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.chip {
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    color: #e8ecf5;
}

.chip.ghost {
    background: rgba(255, 255, 255, 0.08);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 10px;
    background: rgba(37, 99, 235, 0.16);
    color: #dce8ff;
    border: 1px solid var(--border);
}

.badge.subtle {
    background: rgba(255, 255, 255, 0.08);
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
}

.section-header h1,
.section-header h2 {
    margin: 0;
    font-size: clamp(28px, 3vw, 40px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    color: var(--muted);
    font-weight: 600;
}

.muted {
    color: var(--muted);
}

.placeholder {
    color: #c5d0f5;
    opacity: 0.9;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.pill {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    font-size: 14px;
}

.grid {
    display: grid;
    gap: 18px;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.align-stretch {
    align-items: stretch;
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.12), transparent 45%);
    opacity: 0.9;
    pointer-events: none;
}

.card h3 {
    margin-top: 0;
    margin-bottom: 8px;
}

.icon-pill {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(37, 99, 235, 0.22);
    color: #fff;
    border: 1px solid var(--border);
    margin-bottom: 10px;
}

.feature-card {
    backdrop-filter: blur(6px);
}

.timeline {
    display: grid;
    gap: 12px;
}

.timeline-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px;
}

.step-number {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(37, 99, 235, 0.22);
    color: #fff;
    font-weight: 700;
}

.list {
    padding: 0;
    margin: 12px 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.list li {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--muted);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.tag-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.lift {
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 18px;
    align-items: start;
}

.glass-panel {
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(8px);
}

.pricing-card {
    padding: 24px;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.32), rgba(255, 255, 255, 0.08));
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.pricing-card::after {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: inherit;
    background: linear-gradient(125deg, rgba(37, 99, 235, 0.12), rgba(34, 211, 238, 0.08));
    filter: blur(12px);
}

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

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.price {
    font-size: 42px;
    margin: 8px 0;
}

.faq-panel {
    padding: 20px;
}

.faq-list details {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 14px;
    margin-bottom: 10px;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 700;
    outline: none;
}

.faq-list p {
    margin: 8px 0 0;
}

.cta-band {
    margin-top: 30px;
    padding: 28px;
    border-radius: var(--radius-lg);
    background: linear-gradient(120deg, rgba(37, 99, 235, 0.22), rgba(96, 165, 250, 0.12));
    border: 1px solid var(--border);
    display: grid;
    gap: 12px;
    align-items: center;
    box-shadow: var(--shadow-soft);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-proof {
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    padding: 18px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.logo-row {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.logo-pill {
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.06);
    color: #d9e4ff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    padding: 30px 0 12px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    display: grid;
    gap: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0 24px;
    gap: 12px;
    color: var(--muted);
    border-top: 1px solid var(--border);
}

.brand-inline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px 16px;
}

.form-grid .full-row {
    grid-column: 1 / -1;
}

label {
    font-weight: 600;
    display: inline-block;
    margin-bottom: 6px;
}

input,
textarea,
select {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 15px;
}

select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #9fb1d7 50%),
        linear-gradient(135deg, #9fb1d7 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

input:focus,
textarea:focus,
select:focus {
    outline: 2px solid rgba(37, 99, 235, 0.5);
    border-color: rgba(37, 99, 235, 0.5);
}

.error {
    color: #fca5a5;
    font-size: 14px;
    margin-top: 4px;
}

.status {
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.04);
}

.status.success {
    background: rgba(34, 197, 94, 0.08);
    color: #bbf7d0;
}

.status.error {
    background: rgba(248, 113, 113, 0.08);
    color: #fecdd3;
}

.floating-panel {
    padding: 18px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.floating-panel::after {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: inherit;
    background: linear-gradient(160deg, rgba(37, 99, 235, 0.12), rgba(255, 255, 255, 0.03));
    pointer-events: none;
}

.floating-panel > * {
    position: relative;
    z-index: 1;
}

.floating-panel .card:not(:first-child) {
    margin-top: 12px;
}

.info-box {
    margin-top: 12px;
    padding: 12px;
    border-radius: 12px;
    border: 1px dashed var(--border);
    background: rgba(255, 255, 255, 0.04);
}

.form-footer {
    margin-top: 12px;
    display: grid;
    gap: 6px;
}

.stacked-form {
    display: grid;
    gap: 10px;
}

.cta-inline {
    margin-top: 18px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.tilt-card {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    will-change: transform;
}

.tilt-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.site-footer {
    margin-top: 40px;
    padding: 30px 0 10px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border);
}

.small {
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 16px;
    left: 0;
    right: 0;
    display: grid;
    place-items: center;
    z-index: 20;
    pointer-events: none;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.cookie-banner.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.cookie-banner-body {
    width: min(var(--max-width), 92vw);
    background: rgba(5, 9, 21, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.65);
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr auto;
    align-items: center;
}

.banner-text p {
    margin: 6px 0;
}

.banner-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-preferences {
    width: min(var(--max-width), 92vw);
    margin: 8px auto 0;
}

.preference-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.preference-row input {
    width: auto;
    margin-top: 4px;
}

@keyframes bubble-in {
    0% { transform: translateY(12px) scale(0.96); opacity: 0; }
    40% { opacity: 1; }
    100% { transform: translateY(0) scale(1); opacity: 1; }
}

@media (max-width: 900px) {
    .site-nav,
    .nav-actions {
        display: none;
    }

    .nav-toggle {
        display: inline-block;
    }

    .site-nav.open,
    .nav-actions.open {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        gap: 10px;
        margin-top: 10px;
    }

    .header-inner {
        flex-wrap: wrap;
        padding: 14px 0;
    }

    .hero {
        padding-top: 80px;
    }

    .price-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-banner-body {
        grid-template-columns: 1fr;
    }

    .banner-actions {
        justify-content: flex-start;
    }
}

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

    .background-gradient {
        opacity: 0.6;
    }
}

.iti {
    position: relative;
    display: block !important;
}

.iti__dropdown-content{
    background: var(--bg) !important;
    color: var(--text) !important;
}
