:root {
    --bg: #0b1220;
    --card: #121b2f;
    --accent: #62d2ff;
    --accent-dark: #4aa2ff;
    --text: #f5f7ff;
    --muted: rgba(245, 247, 255, 0.65);
    --border: rgba(255, 255, 255, 0.08);
    --font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font);
    background: radial-gradient(circle at top, #1b2b4f, var(--bg));
    color: var(--text);
    min-height: 100vh;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
    color: #fff;
}
.phone-pill {
    position: fixed;
    top: 24px;
    left: 24px;
    z-index: 20;
    padding: 10px 24px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(10, 18, 32, 0.85);
    color: var(--text);
    font-weight: 600;
    box-shadow: 0 20px 40px rgba(2, 5, 12, 0.4);
    backdrop-filter: blur(6px);
}

.phone-pill span {
    white-space: nowrap;
}

.wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 16px;
}

.quiz-card {
    width: 100%;
    max-width: 1100px;
    background: rgba(9, 14, 24, 0.8);
    border: 1px solid var(--border);
    border-radius: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 0;
    overflow: hidden;
    box-shadow: 0 40px 120px rgba(7, 12, 22, 0.8);
}

.quiz-info {
    padding: 50px;
    background: linear-gradient(180deg, rgba(24, 37, 66, 0.8), rgba(10, 15, 26, 0.9));
    border-right: 1px solid var(--border);
}

.quiz-info h1 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin: 0 0 16px;
}

.quiz-info .muted {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.5;
}

.quiz-phone {
    margin-top: 24px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
}

.quiz-phone__label {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    color: var(--muted);
}

.quiz-phone a {
    display: inline-block;
    margin-top: 6px;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent);
}

.quiz-form {
    padding: 50px 60px;
    background: var(--card);
}

.quiz-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 32px;
}

.quiz-progress__bar {
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    transition: width 0.3s ease;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.steps {
    display: flex;
    flex-direction: column;
}

.step {
    display: none;
    animation: fade 0.3s ease;
}

.step.active {
    display: block;
}

.step-label {
    color: var(--muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 8px;
}

.step h2 {
    margin: 0 0 24px;
    font-size: 1.6rem;
}

.options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.option {
    position: relative;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.option input {
    display: none;
}

.option span {
    font-weight: 500;
    color: var(--text);
}

.option input:checked + span {
    color: var(--accent);
}

.option:has(input:checked) {
    border-color: var(--accent);
    background: rgba(98, 210, 255, 0.08);
}

.form-control,
.form-select {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 16px;
    color: var(--text);
}

.form-control::placeholder {
    color: rgba(245, 247, 255, 0.4);
}

.form-label {
    margin-bottom: 6px;
    color: var(--muted);
}

.contact-methods {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.btn {
    border-radius: 14px;
    padding: 12px 22px;
    font-weight: 600;
}

.btn-primary {
    background: linear-gradient(120deg, var(--accent), var(--accent-dark));
    border: none;
    color: #020710;
    box-shadow: 0 15px 30px rgba(76, 147, 255, 0.35);
}

.btn-link {
    color: var(--muted);
    text-decoration: none;
}

.btn-link:hover {
    color: var(--text);
    text-decoration: none;
}

.step-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.footnote {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 12px;
}

.alert {
    border-radius: 14px;
}

.contact-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 30;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.contact-float__toggle {
    background: rgba(8, 14, 30, 0.95);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 14px 18px;
    font-weight: 600;
    min-width: 210px;
    text-align: left;
    box-shadow: 0 25px 60px rgba(3, 7, 16, 0.6);
}

.contact-float__toggle small {
    display: block;
    color: var(--muted);
    font-weight: 400;
    margin-top: 3px;
}

.contact-float__panel {
    width: 220px;
    background: rgba(5, 10, 22, 0.95);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 25px 80px rgba(3, 7, 16, 0.75);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-float.open .contact-float__panel {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.contact-link {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text);
    font-weight: 500;
}

.contact-link:last-child {
    border-bottom: none;
}

.contact-link sup {
    font-size: 0.65em;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .quiz-card {
        grid-template-columns: 1fr;
        border-radius: 28px;
    }

    .quiz-info {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .quiz-form {
        padding: 40px 30px;
    }

    .phone-pill {
        left: 16px;
        right: 16px;
        text-align: center;
    }

    .contact-float {
        right: 16px;
        bottom: 5px;
        align-items: stretch;
    }

    .contact-float__toggle {
        width: 100%;
        max-width: 110px;
        min-width: auto;
    }

    .contact-float__panel {
        width: 100%;
    }
    .quiz-phone a{
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .options {
        grid-template-columns: 1fr;
    }

    .wrap {
        padding: 24px 12px;
    }
}
:root {
    --primary: #2166f5;
    --dark: #111827;
    --muted: #6b7280;
    --bg: #f4f6fb;
    --radius: 18px;
    --font: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--dark);
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

p {
    color: var(--muted);
}

.container {
    max-width: 1200px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 9;
    padding: 14px 0;
    backdrop-filter: blur(14px);
    background-color: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.brand {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.brand small {
    font-weight: 500;
    text-transform: lowercase;
    color: var(--primary);
}

.site-header nav a {
    margin-left: 28px;
    font-weight: 500;
    color: var(--muted);
    transition: color 0.2s ease;
}

.site-header nav a:hover {
    color: var(--dark);
}

.site-header.menu-open nav {
    position: absolute;
    top: 70px;
    left: 5%;
    right: 5%;
    background: #fff;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 40px 90px rgba(15, 23, 42, 0.18);
    display: flex;
    flex-direction: column;
}

.site-header.menu-open nav a {
    margin: 8px 0;
}

.menu-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.menu-btn span {
    width: 18px;
    height: 2px;
    background: var(--dark);
    display: inline-block;
}

.hero {
    position: relative;
    padding: 140px 0 90px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(244, 246, 251, 0.95));
}

.hero .container,
.hero .row {
    position: relative;
    z-index: 1;
}

.eyebrow {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.hero h1 {
    font-size: clamp(2rem, 3vw, 3.2rem);
    margin-bottom: 16px;
}

.hero .lead {
    font-size: 1.08rem;
    margin-bottom: 32px;
}

.hero-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.hero-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-weight: 500;
}

.hero-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.hero-cta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: 0 40px 90px rgba(19, 48, 130, 0.12);
}

.hero-card ul {
    padding-left: 20px;
    color: var(--muted);
}

.hero-card .card-label {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--primary);
    font-size: 0.8rem;
}

.hero-card .card-note {
    margin-top: 18px;
    font-size: 0.9rem;
    color: var(--muted);
}

.approach {
    padding: 90px 0;
    background: #fff;
}

.section-intro h2 {
    font-size: 2.5rem;
}

.stat-card {
    margin-top: 24px;
    padding: 24px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #2166f5, #6d9ffb);
    color: #fff;
}

.stat-card span {
    font-size: 2.4rem;
    font-weight: 600;
}

.timeline article {
    display: flex;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.timeline img {
    width: 44px;
    height: 44px;
}

.solutions {
    padding: 90px 0;
    background: var(--bg);
}

.solution-card {
    background: #fff;
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid rgba(15, 23, 42, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.solution-card ul {
    padding-left: 20px;
    margin: 0;
    color: var(--muted);
}

.cases {
    padding: 90px 0;
}

.case-list article {
    border-left: 3px solid var(--primary);
    padding-left: 18px;
    margin-bottom: 24px;
}

.case-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.case-gallery img {
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}

.cta {
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 17, 34, 0.86);
}

.cta .container,
.cta .row {
    position: relative;
    z-index: 1;
}

.cta ul {
    color: #cbd5f5;
}

.cta-panel {
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 32px;
    backdrop-filter: blur(10px);
}

.faq {
    padding: 90px 0;
    background: var(--bg);
}

.contact {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(8, 11, 24, 0.88);
}

.contact .container,
.contact .row {
    position: relative;
    z-index: 1;
    color: #fff;
}

.contact h2,
.contact p,
.contact li {
    color: #e5e7ff;
}

.contact-list {
    padding-left: 20px;
}

.contact-info a {
    display: block;
    color: #fff;
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius);
    padding: 32px;
    color: var(--dark);
}

.form-note {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 12px;
}

.site-footer {
    padding: 28px 0;
    background: #010410;
    color: #9ca3af;
}

.site-footer a {
    color: #e5e7ff;
    margin-left: 18px;
}

.pt-120 {
    padding-top: 120px;
}

.pb-90 {
    padding-bottom: 90px;
}

@media (max-width: 991px) {
    .site-header nav {
        display: none;
    }

    .site-header.menu-open nav {
        display: flex;
    }

    .hero {
        padding: 110px 0 70px;
    }

    .hero-card {
        margin-top: 40px;
    }
}

