:root {
    --bg: #ffffff;
    --bg-alt: #f5f8fb;
    --text: #1f2937;
    --muted: #64748b;
    --line: #e2e8f0;
    --primary: #06a7b8;
    --primary-dark: #08798a;
    --navy: #0f172a;
    --card: #ffffff;
    --shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.75;
}
a { color: var(--primary-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(760px, calc(100% - 40px)); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.site-logo {
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
    font-size: 1.1rem;
}
.site-logo:hover { text-decoration: none; }
.site-nav { display: flex; gap: 24px; align-items: center; }
.site-nav a {
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
}
.site-nav a[aria-current="page"] { color: var(--primary-dark); }
.nav-toggle { display: none; }

.hero {
    padding: 96px 0 72px;
    background:
        radial-gradient(circle at top right, rgba(6, 167, 184, 0.14), transparent 35%),
        linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}
.eyebrow {
    color: var(--primary-dark);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
    margin: 0 0 12px;
}
h1, h2, h3 { color: var(--navy); line-height: 1.25; margin-top: 0; }
h1 { font-size: clamp(2.4rem, 6vw, 4.7rem); letter-spacing: -0.06em; margin-bottom: 20px; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); letter-spacing: -0.04em; }
h3 { font-size: 1.15rem; }
.hero-lead { font-size: 1.12rem; color: var(--muted); max-width: 680px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.button:hover { text-decoration: none; transform: translateY(-1px); }
.button.primary { color: #fff; background: var(--primary); box-shadow: 0 12px 28px rgba(6, 167, 184, 0.22); }
.button.secondary { color: var(--navy); background: #fff; border-color: var(--line); }
.hero-card {
    display: grid;
    gap: 14px;
    padding: 28px;
    border-radius: 28px;
    background: var(--navy);
    box-shadow: var(--shadow);
}
.hero-card span {
    display: block;
    padding: 16px 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    border-radius: 16px;
    font-weight: 800;
}

.section { padding: 84px 0; }
.section.alt { background: var(--bg-alt); }
.section-heading { max-width: 780px; margin-bottom: 36px; }
.section-heading p { color: var(--muted); }
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.cards.four { grid-template-columns: repeat(4, 1fr); }
.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}
.card p { color: var(--muted); }
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.policy-list { display: grid; gap: 16px; }
.policy-list > div {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px;
}
.policy-list p { color: var(--muted); margin-bottom: 0; }
.badge {
    display: inline-block;
    margin: 0 0 14px;
    color: var(--primary-dark) !important;
    background: rgba(6, 167, 184, 0.1);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
}
.text-link { font-weight: 800; }
.cta { padding: 72px 0; background: var(--navy); color: #fff; }
.cta h2 { color: #fff; }
.cta p { color: rgba(255,255,255,0.78); max-width: 720px; }
.cta-inner { display: grid; gap: 16px; justify-items: start; }

.page-hero { padding: 72px 0 46px; background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 10px; }
.page-hero p:last-child { max-width: 760px; color: var(--muted); }
.service-list { display: grid; gap: 18px; }
.service-item {
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 28px;
    background: #fff;
}
.service-item p { color: var(--muted); margin-bottom: 0; }
.prose { max-width: 860px; }
.prose h2 { margin-top: 36px; font-size: 1.55rem; }
.prose p, .prose li { color: var(--muted); }
.info-table { width: 100%; border-collapse: collapse; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; display: table; }
.info-table th, .info-table td { padding: 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.info-table th { width: 180px; background: var(--bg-alt); color: var(--navy); }
.note { font-size: 0.9rem; }

.contact-form { display: grid; gap: 18px; }
.contact-form label { display: grid; gap: 8px; font-weight: 700; }
.contact-form label span b { color: var(--primary-dark); font-size: 0.75rem; margin-left: 6px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    font: inherit;
    background: #fff;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 3px solid rgba(6, 167, 184, 0.16);
    border-color: var(--primary);
}
.check-label { display: flex !important; grid-template-columns: auto 1fr; gap: 10px !important; align-items: start; font-weight: 500 !important; }
.check-label input { width: auto; margin-top: 7px; }
.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.alert { border-radius: 16px; padding: 16px 18px; margin-bottom: 22px; }
.alert.error { background: #fff1f2; border: 1px solid #fecdd3; color: #9f1239; }
.alert.success { background: #ecfeff; border: 1px solid #a5f3fc; color: #155e75; }
.alert p { margin-top: 0; }

.site-footer { background: #f8fafc; border-top: 1px solid var(--line); padding: 42px 0 24px; }
.footer-grid { display: flex; justify-content: space-between; gap: 24px; align-items: flex-start; }
.footer-logo { font-weight: 900; color: var(--navy); margin: 0 0 6px; }
.footer-tagline { color: var(--muted); margin: 0; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 14px 20px; justify-content: flex-end; }
.footer-nav a { color: var(--text); font-weight: 700; font-size: 0.9rem; }
.copyright { color: var(--muted); font-size: 0.86rem; margin-top: 28px; }

@media (max-width: 900px) {
    .hero-grid, .split { grid-template-columns: 1fr; }
    .cards.four { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
    .container, .narrow { width: min(100% - 28px, 1120px); }
    .header-inner { height: 64px; }
    .nav-toggle {
        display: inline-flex;
        border: 1px solid var(--line);
        background: #fff;
        border-radius: 999px;
        padding: 8px 12px;
        font-weight: 800;
    }
    .site-nav {
        display: none;
        position: absolute;
        left: 14px;
        right: 14px;
        top: 72px;
        padding: 18px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 18px;
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: flex-start;
    }
    .site-nav.is-open { display: flex; }
    .hero { padding: 64px 0 48px; }
    .section { padding: 58px 0; }
    .cards, .cards.four { grid-template-columns: 1fr; }
    .footer-grid { flex-direction: column; }
    .footer-nav { justify-content: flex-start; }
    .info-table, .info-table tbody, .info-table tr, .info-table th, .info-table td { display: block; width: 100%; }
    .info-table th { border-bottom: 0; }
}

.footer-meta {
    margin: 0.35rem 0 0;
    color: var(--muted);
    font-size: 0.88rem;
}
