:root {
    --blue: #005ed8;
    --deep-blue: #062a78;
    --sky: #19c7f3;
    --navy: #071b45;
    --text: #1f2b3d;
    --muted: #65758b;
    --light: #f4f8ff;
    --white: #ffffff;
    --line: #d8e2f2;
    --shadow: 0 20px 50px rgba(7, 27, 69, 0.12);
    --radius: 22px;
}

* { box-sizing: border-box; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

.top-language-bar {
    background: linear-gradient(135deg, var(--navy), var(--deep-blue));
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

.language-inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    font-weight: 700;
}

.language-inner a {
    color: rgba(255,255,255,0.86);
    padding: 3px 8px;
    border-radius: 999px;
}

.language-inner a:hover,
.language-inner a.active {
    background: rgba(255,255,255,0.16);
    color: #fff;
}

.language-inner .divider {
    opacity: 0.45;
}

.header-inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand img {
    width: 185px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.main-nav a {
    padding: 12px 15px;
    border-radius: 999px;
    color: var(--navy);
}

.main-nav a:hover,
.main-nav a.active {
    background: var(--light);
    color: var(--blue);
}

.main-nav .nav-cta {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--sky));
    box-shadow: 0 10px 25px rgba(0, 94, 216, 0.25);
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta.active {
    color: var(--white);
    background: linear-gradient(135deg, var(--deep-blue), var(--blue));
}

.mobile-menu-button {
    display: none;
    border: 0;
    background: var(--blue);
    color: var(--white);
    border-radius: 12px;
    font-size: 26px;
    padding: 8px 13px;
}

.hero {
    background:
        radial-gradient(circle at top right, rgba(25,199,243,0.20), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #eef7ff 100%);
    padding: 86px 0 70px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 54px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--blue);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.eyebrow.light { color: #aeeeff; }

h1, h2, h3 { color: var(--navy); line-height: 1.12; margin-top: 0; }

h1 { font-size: clamp(2.3rem, 5vw, 4.8rem); margin-bottom: 22px; }
h2 { font-size: clamp(1.8rem, 3vw, 3rem); margin-bottom: 16px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; }

.hero-text {
    font-size: 1.22rem;
    color: var(--muted);
    max-width: 670px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
    min-height: 52px;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover { transform: translateY(-2px); }

.button.primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--sky));
    box-shadow: 0 14px 30px rgba(0, 94, 216, 0.25);
}

.button.secondary {
    color: var(--deep-blue);
    background: var(--white);
    border: 1px solid var(--line);
}

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

.trust-row span {
    background: rgba(255,255,255,0.85);
    border: 1px solid var(--line);
    color: var(--deep-blue);
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
}

.hero-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 34px;
    box-shadow: var(--shadow);
    padding: 28px;
    transform: rotate(1deg);
}

.section { padding: 78px 0; }
.section-heading { max-width: 720px; margin-bottom: 32px; }

.cards {
    display: grid;
    gap: 22px;
}

.cards.four { grid-template-columns: repeat(4, 1fr); }

.card, .contact-card, .quote-form, .stat-card, .cta-box, .checklist-box, .service-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(7, 27, 69, 0.07);
}

.card { padding: 28px; }
.card p { color: var(--muted); margin-bottom: 0; }
.icon { font-size: 2.3rem; margin-bottom: 12px; }

.blue-band {
    color: var(--white);
    background:
        radial-gradient(circle at top right, rgba(25,199,243,0.30), transparent 35%),
        linear-gradient(135deg, var(--deep-blue), var(--blue));
}

.blue-band h2, .blue-band p { color: var(--white); }

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: center;
}

.checklist-box {
    padding: 30px;
    background: rgba(255,255,255,0.11);
    border-color: rgba(255,255,255,0.20);
}

.checklist, .mini-list, .site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.checklist li, .mini-list li {
    position: relative;
    padding-left: 30px;
    margin: 12px 0;
}

.checklist li::before, .mini-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: var(--sky);
    color: var(--deep-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 900;
}

.cta-section { background: var(--light); }
.cta-box { padding: 42px; text-align: center; }
.cta-box p { color: var(--muted); max-width: 700px; margin: 0 auto 26px; }

.page-hero {
    padding: 74px 0;
    background:
        radial-gradient(circle at top right, rgba(25,199,243,0.18), transparent 35%),
        linear-gradient(180deg, #ffffff 0%, #f2f8ff 100%);
}

.page-hero p { max-width: 780px; color: var(--muted); font-size: 1.15rem; }
.page-hero .eyebrow { color: var(--blue); }
.page-hero h1 { max-width: 900px; }

.service-list { display: grid; gap: 22px; }

.service-item {
    padding: 32px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: start;
}

.service-item p { color: var(--muted); margin-bottom: 0; }

.about-split p { color: var(--muted); }
.stat-card { padding: 34px; background: var(--light); }

.contact-grid {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 30px;
    align-items: start;
}

.contact-card, .quote-form { padding: 30px; }
.contact-card p { color: var(--muted); }
.note-box {
    margin-top: 24px;
    padding: 20px;
    border-radius: 18px;
    background: var(--light);
    border: 1px solid var(--line);
}
.note-box p { margin-bottom: 0; }

.form-row {
    display: grid;
    gap: 18px;
    margin-bottom: 18px;
}
.form-row.two { grid-template-columns: 1fr 1fr; }

label, legend {
    display: block;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

input, select, textarea {
    width: 100%;
    margin-top: 8px;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px 15px;
    font: inherit;
    color: var(--text);
    background: #fff;
}

textarea { resize: vertical; }

fieldset {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    margin: 0 0 18px;
}

.check-option {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 8px 16px 8px 0;
    font-weight: 700;
    color: var(--text);
}

.check-option input { width: auto; margin: 0; }
.form-button { width: 100%; margin-top: 8px; }

.alert {
    padding: 16px 18px;
    border-radius: 16px;
    margin-bottom: 22px;
    font-weight: 700;
}
.alert p { margin: 0 0 5px; }
.alert.success { background: #eafaf0; color: #0f6b35; border: 1px solid #bde8cc; }
.alert.error { background: #fff0f0; color: #9b1c1c; border: 1px solid #ffc9c9; }

.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.82);
    padding-top: 54px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 36px;
}
.footer-logo { width: 170px; background: #fff; border-radius: 18px; padding: 8px; margin-bottom: 18px; }
.site-footer h3 { color: var(--white); }
.site-footer a { color: var(--sky); }
.site-footer li { margin: 8px 0; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.14);
    text-align: center;
    margin-top: 36px;
    padding: 18px;
}
.footer-bottom p { margin: 0; }

@media (max-width: 900px) {
    .mobile-menu-button { display: block; }
    .main-nav {
        display: none;
        position: absolute;
        left: 20px;
        right: 20px;
        top: 92px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 20px;
        box-shadow: var(--shadow);
        padding: 12px;
        flex-direction: column;
        align-items: stretch;
    }
    body.menu-open .main-nav { display: flex; }
    .hero-grid, .split, .service-item, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
    .cards.four { grid-template-columns: repeat(2, 1fr); }
    .hero { padding-top: 48px; }
}

@media (max-width: 640px) {
    .language-inner { justify-content: center; }
    .container { width: min(100% - 28px, 1160px); }
    .cards.four, .form-row.two { grid-template-columns: 1fr; }
    .brand img { width: 145px; }
    .section { padding: 54px 0; }
    .hero-card { padding: 16px; border-radius: 22px; }
    .contact-card, .quote-form, .service-item, .cta-box { padding: 22px; }
}

/* More visible language switcher in the main header */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 2px solid var(--blue);
    background: #ffffff;
    border-radius: 999px;
    padding: 4px;
    box-shadow: 0 10px 25px rgba(0, 94, 216, 0.12);
}

.language-switcher a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 34px;
    border-radius: 999px;
    color: var(--deep-blue);
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
}

.language-switcher a.active,
.language-switcher a:hover {
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--sky));
}

@media (max-width: 900px) {
    .header-inner {
        min-height: 82px;
    }
    .main-nav {
        top: 118px;
    }
    .language-switcher a {
        min-width: 38px;
        height: 32px;
        font-size: 0.82rem;
    }
}
