:root {
    --bg: #f3f5f7;
    --surface: #ffffff;
    --surface-soft: #f8fafc;
    --text: #1e293b;
    --muted: #5b6b7f;
    --line: #d9e1e8;
    --brand: #147d76;
    --brand-dark: #0e5f5a;
    --brand-soft: #e8f6f4;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    --radius: 24px;
    --radius-sm: 16px;
    --max: 1280px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

img {
    max-width: 100%;
    display: block;
}

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

.site-header {
    background: var(--brand);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 102px;
    gap: 24px;
}

.logo a {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
}

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

.site-nav a {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.hero-section {
    padding: 72px 0 48px;
}

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

.hero-copy h1 {
    margin: 0 0 24px;
    font-size: clamp(3.4rem, 5vw, 5.8rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.hero-text {
    margin: 0 0 34px;
    max-width: 900px;
    font-size: 2rem;
    color: var(--muted);
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--brand);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-actions,
.cta-band-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    padding: 0 30px;
    border-radius: 18px;
    background: var(--brand);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    border: 2px solid var(--brand);
    box-shadow: 0 10px 24px rgba(20, 125, 118, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(20, 125, 118, 0.24);
    background: var(--brand-dark);
}

.btn-outline {
    background: transparent;
    color: var(--brand);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--brand-soft);
    color: var(--brand-dark);
}

.btn-full {
    width: 100%;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.trust-row span,
.area-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.hero-card,
.card,
.step-card,
.reason-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-card {
    padding: 40px;
}

.hero-card h2 {
    margin: 0 0 14px;
    font-size: 2rem;
    line-height: 1.15;
}

.hero-card p {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 1.15rem;
}

.section {
    padding: 34px 0 34px;
}

.section-alt {
    background: transparent;
}

.section-head {
    margin-bottom: 28px;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(2.8rem, 4vw, 4.6rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.card-grid,
.steps-grid,
.reasons-grid,
.areas-grid {
    display: grid;
    gap: 28px;
}

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

.card {
    padding: 34px;
    min-height: 240px;
}

.card h3 {
    margin: 0 0 18px;
    font-size: 1.75rem;
    line-height: 1.15;
}

.card p {
    margin: 0;
    color: var(--muted);
    font-size: 1.12rem;
}

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

.step-card {
    position: relative;
    padding: 34px 30px 30px;
    min-height: 280px;
}

.step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--brand-soft);
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 22px;
    border: 1px solid #cce9e5;
}

.step-card h3 {
    margin: 0 0 16px;
    font-size: 1.65rem;
    line-height: 1.15;
}

.step-card p {
    margin: 0;
    color: var(--muted);
    font-size: 1.08rem;
}

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

.area-card {
    min-height: 64px;
    border-radius: 18px;
    font-size: 1.1rem;
    justify-content: flex-start;
    padding: 0 20px;
    color: var(--text);
    background: var(--surface);
}

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

.reason-card {
    padding: 32px;
    min-height: 220px;
}

.reason-card h3 {
    margin: 0 0 14px;
    font-size: 1.55rem;
    line-height: 1.15;
}

.reason-card p {
    margin: 0;
    color: var(--muted);
    font-size: 1.06rem;
}

.cta-band {
    padding: 22px 0 54px;
}

.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 42px;
    background: linear-gradient(135deg, #ffffff 0%, #f7fbfb 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.cta-band h2 {
    margin: 0 0 10px;
    font-size: clamp(2.2rem, 3vw, 3.2rem);
    line-height: 1.1;
}

.cta-band p {
    margin: 0;
    color: var(--muted);
    font-size: 1.12rem;
}

.form-section {
    padding: 56px 0 76px;
}

.form-shell {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 30px;
    align-items: start;
}

.form-panel,
.info-panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-panel {
    padding: 36px;
}

.info-panel {
    padding: 32px;
}

.form-panel h2,
.info-panel h3 {
    margin-top: 0;
}

.info-panel p,
.info-panel li,
.form-intro {
    color: var(--muted);
}

form p {
    margin: 0 0 18px;
}

form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--text);
}

form input,
form textarea,
form select {
    width: 100%;
    min-height: 58px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid #c8d3dd;
    background: #fff;
    font-size: 1rem;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

form textarea {
    min-height: 140px;
    resize: vertical;
}

form input:focus,
form textarea:focus,
form select:focus {
    border-color: #8abeb8;
    box-shadow: 0 0 0 4px rgba(20, 125, 118, 0.1);
}

.help-list {
    margin: 0;
    padding-left: 22px;
}

.help-list li {
    margin-bottom: 10px;
}

.site-footer {
    background: #083d43;
    color: #fff;
    padding: 60px 0;
    margin-top: 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 40px;
}

.site-footer h3,
.site-footer h4 {
    margin-top: 0;
    margin-bottom: 18px;
}

.site-footer p,
.site-footer li,
.site-footer a {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.05rem;
}

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

.site-footer li + li {
    margin-top: 10px;
}

@media (max-width: 1200px) {
    .hero-grid,
    .form-shell,
    .footer-grid,
    .cta-band-inner {
        grid-template-columns: 1fr;
    }

    .cta-band-inner {
        display: block;
    }

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

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

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

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

@media (max-width: 820px) {
    .site-header .container {
        min-height: auto;
        padding: 20px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .logo a {
        font-size: 2.3rem;
    }

    .site-nav {
        gap: 20px;
        flex-wrap: wrap;
    }

    .site-nav a {
        font-size: 1.2rem;
    }

    .hero-copy h1 {
        font-size: 2.8rem;
    }

    .hero-text {
        font-size: 1.25rem;
    }

    .card-grid,
    .steps-grid,
    .areas-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .hero-card,
    .card,
    .step-card,
    .reason-card,
    .form-panel,
    .info-panel,
    .cta-band-inner {
        padding: 26px;
    }

    .container {
        width: min(var(--max), calc(100% - 28px));
    }

    .btn {
        width: 100%;
    }

    .hero-actions,
    .cta-band-actions {
        flex-direction: column;
    }

    .trust-row {
        gap: 10px;
    }

    .trust-row span,
    .area-card {
        width: 100%;
        justify-content: center;
    }
} 
.page-hero {
    padding: 56px 0 28px;
}

.quote-hero .page-hero-text {
    max-width: 860px;
    font-size: 1.3rem;
    color: var(--muted);
    margin: 0;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 96px;
}

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

.site-nav a {
    white-space: nowrap;
}

.quote-layout-fixed {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 32px;
    align-items: start;
}

.quote-form-wrap {
    min-width: 0;
}

.quote-sidebar-wrap {
    min-width: 0;
}

.quote-main-card,
.quote-side-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.quote-main-card {
    padding: 36px;
}

.quote-main-card h2 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 2rem;
}

.quote-side-card {
    padding: 28px;
    position: sticky;
    top: 110px;
}

.side-card-block + .side-card-block {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.side-card-block h3 {
    margin: 0 0 14px;
    font-size: 1.35rem;
}

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

.site-form p {
    margin: 0 0 18px;
}

.site-form button {
    margin-top: 10px;
}

@media (max-width: 1024px) {
    .quote-layout-fixed {
        grid-template-columns: 1fr;
    }

    .quote-side-card {
        position: static;
    }
} 
