@charset "UTF-8";

/* Base */
:root {
    --navy: #0f2343;
    --navy-dark: #09162b;
    --blue: #1e63c6;
    --red: #cf1f2e;
    --yellow: #f4c400;
    --white: #ffffff;
    --offwhite: #f5f7fb;
    --text: #1f2937;
    --muted: #6b7280;
    --border: #dbe2ea;
    --shadow: 0 10px 30px rgba(15, 35, 67, 0.12);
    --radius: 18px;
    --max: 1200px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--offwhite);
    line-height: 1.55;
}

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

.container {
    width: min(calc(100% - 32px), var(--max));
    margin: 0 auto;
}

section {
    padding: 72px 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--yellow);
    color: var(--navy-dark);
}

.btn-secondary {
    background: var(--red);
    color: var(--white);
}

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

/* Header */
.site-header {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    color: var(--white);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 900;
}

.brand-logo {
    height: 54px;
    width: auto;
    display: block;
}

.brand-text {
    font-size: 28px;
    line-height: 1;
}

.brand-text span:first-child {
    color: var(--white);
}

.brand-text span:last-child {
    color: var(--yellow);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    font-weight: 700;
}

.nav-links a:not(.btn) {
    color: var(--white);
    opacity: 0.95;
}

.nav-links a:not(.btn):hover {
    opacity: 1;
}

/* Hero */
.hero {
    background: radial-gradient(circle at top right, rgba(255,255,255,0.16), transparent 35%), linear-gradient(135deg, var(--navy), #163565 60%, #20498b);
    color: var(--white);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    padding: 72px 0;
}

.eyebrow {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(38px, 6vw, 64px);
    line-height: 1.05;
    margin: 0 0 18px;
}

.hero h1 .accent {
    color: var(--yellow);
}

.hero p {
    font-size: 19px;
    color: rgba(255,255,255,0.92);
    margin: 0 0 28px;
    max-width: 650px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 10px;
}

.hero-point {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 16px;
    padding: 14px;
    font-weight: 700;
}

.hero-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 24px;
    padding: 26px;
}

.dart-case {
    min-height: 420px;
    border-radius: 22px;
    background: linear-gradient(145deg, #111827, #1f2937);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 26px;
}

.dart-case:before,
.dart-case:after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 2px solid rgba(255,255,255,0.07);
    border-radius: 18px;
}

.dart-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    position: relative;
    z-index: 2;
    margin-top: 22px;
}

.dart {
    height: 112px;
    position: relative;
}

.dart:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--red), #ff5b69);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.dart:after {
    content: "";
    position: absolute;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 76px;
    background: linear-gradient(180deg, #d1d5db, #9ca3af);
    border-radius: 999px;
}

.offer-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.badge {
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
}

.badge-yellow {
    background: var(--yellow);
    color: var(--navy-dark);
}

.badge-white {
    background: rgba(255,255,255,0.12);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.14);
}

/* Section titles */
.section-title {
    text-align: center;
    margin-bottom: 14px;
    color: var(--navy);
    font-size: clamp(30px, 5vw, 42px);
    line-height: 1.1;
}

.section-intro {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
    color: var(--muted);
    font-size: 18px;
}

/* Grids */
.feature-grid,
.steps-grid,
.why-grid,
.faq-grid {
    display: grid;
    gap: 22px;
}

.feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.why-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Cards */
.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.card-icon {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 30px;
    background: linear-gradient(135deg, rgba(30,99,198,0.12), rgba(244,196,0,0.3));
    margin-bottom: 18px;
}

.card h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 24px;
}

.card p {
    margin: 0;
    color: var(--muted);
}

.step-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
    margin-bottom: 14px;
}

.process {
    background: linear-gradient(180deg, #ffffff, #eef4fb);
}

.info-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}

.panel-dark {
    background: linear-gradient(135deg, var(--navy), #14315f);
    color: var(--white);
}

.panel-dark h3,
.panel-dark p,
.panel-dark li {
    color: var(--white);
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
}

.check-list li:before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--yellow);
    font-weight: 900;
}

/* FAQ */
.faq-grid {
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item details {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 22px;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 800;
    color: var(--navy);
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    color: var(--muted);
    margin: 14px 0 0;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, var(--red), #e53746);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    color: var(--white);
    margin: 0 0 12px;
    font-size: clamp(30px, 5vw, 46px);
}

.cta p {
    color: rgba(255,255,255,0.92);
    max-width: 700px;
    margin: 0 auto 28px;
    font-size: 18px;
}

/* Footer */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.9);
    padding: 28px 0;
    margin-top: 40px;
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid,
    .info-split,
    .feature-grid,
    .steps-grid,
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-points {
        grid-template-columns: 1fr;
    }
}
.status-timeline {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin: 22px 0;
}

.timeline-step {
    position: relative;
    background: #f9fbff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 14px;
    text-align: center;
}

.timeline-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 28px;
    right: -14px;
    width: 28px;
    height: 2px;
    background: #dbe2ea;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #cbd5e1;
    margin: 0 auto 10px;
}

.timeline-title {
    font-weight: 800;
    color: var(--navy);
    font-size: 15px;
    line-height: 1.2;
}

.timeline-meta {
    margin-top: 6px;
    font-size: 13px;
    color: var(--muted);
}

.timeline-step.is-complete {
    background: #ecfdf5;
    border-color: #86efac;
}

.timeline-step.is-complete .timeline-dot {
    background: #16a34a;
}

.timeline-step.is-current {
    background: #eff6ff;
    border-color: #93c5fd;
}

.timeline-step.is-current .timeline-dot {
    background: #2563eb;
}

.timeline-step.is-inactive {
    opacity: 0.9;
}
.timeline-note-declined {
    color: #991b1b;
    font-weight: 700;
    margin-top: 14px;
}
@media (max-width: 900px) {
    .status-timeline {
        grid-template-columns: 1fr;
    }

    .timeline-step:not(:last-child)::after {
        display: none;
    }
}
@media (max-width: 760px) {
    .nav-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        width: 100%;
    }

    .brand-text {
        font-size: 24px;
    }

    .hero-grid,
    .info-split,
    .feature-grid,
    .steps-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        padding: 48px 0;
    }

    section {
        padding: 56px 0;
    }

    .footer-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
	
}
.cookie-banner,
.install-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 9999;
    background: #ffffff;
    border: 1px solid #dbe2ea;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(15, 35, 67, 0.18);
    padding: 16px;
}

.cookie-banner__content,
.install-banner__content {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

.cookie-banner p,
.install-banner p {
    margin: 0;
    flex: 1 1 320px;
    color: #1f2937;
    font-size: 14px;
}

.cookie-banner__actions,
.install-banner__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.images-grid > div {
    width: 200px;
}

.images-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
@media (max-width: 640px) {
    .cookie-banner,
    .install-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 14px;
    }

    .cookie-banner__content,
    .install-banner__content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner__actions,
    .install-banner__actions {
        width: 100%;
    }

    .cookie-banner__actions .btn,
    .install-banner__actions .btn {
        width: 100%;
        text-align: center;
    }
}