:root {
    --ink: #172033;
    --muted: #64748b;
    --line: #d8e0ea;
    --paper: #ffffff;
    --mist: #f5f8fb;
    --blue: #2563eb;
    --green: #0f9f6e;
    --gold: #b7791f;
    --red: #c2410c;
    --shadow: 0 18px 50px rgba(23, 32, 51, 0.08);
    --font: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--mist);
    line-height: 1.55;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 74px;
    padding: 14px clamp(18px, 4vw, 64px);
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.brand img {
    display: block;
    height: 46px;
    width: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
}

.site-nav a {
    padding: 9px 13px;
    border-radius: 8px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.site-nav a:hover,
.site-nav a.active {
    background: #edf4ff;
    color: var(--blue);
}

.login-button,
.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 800;
    white-space: nowrap;
}

.login-button,
.primary-button {
    color: #fff;
    background: var(--blue);
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.18);
}

.secondary-button {
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
}

.hero {
    min-height: calc(100vh - 74px);
    display: grid;
    align-items: center;
    padding: clamp(38px, 6vw, 80px) clamp(18px, 5vw, 76px);
    background:
        linear-gradient(90deg, rgba(10, 18, 32, 0.82) 0%, rgba(10, 18, 32, 0.62) 46%, rgba(10, 18, 32, 0.28) 100%),
        url('/assets/logo_2.png') right 9% center / min(520px, 62vw) auto no-repeat,
        #172033;
}

.hero-content {
    max-width: 720px;
    color: #fff;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #b7e5d3;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 18px;
}

.hero h1,
.page-hero h1 {
    font-size: clamp(42px, 7vw, 78px);
    line-height: 1;
    letter-spacing: 0;
    font-weight: 800;
    max-width: 900px;
}

.hero p {
    max-width: 620px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(17px, 2vw, 21px);
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 12px;
    max-width: 620px;
    margin-top: 42px;
}

.hero-stat {
    padding: 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-stat strong {
    display: block;
    font-size: 25px;
}

.hero-stat span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
}

.section,
.page-hero {
    padding: clamp(46px, 6vw, 82px) clamp(18px, 5vw, 76px);
}

.page-hero {
    background: #ffffff;
    border-bottom: 1px solid var(--line);
}

.page-hero p,
.section-lead {
    max-width: 760px;
    margin-top: 16px;
    color: var(--muted);
    font-size: 18px;
}

.section-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.section-title h2 {
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.two-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.tile {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.tile i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    margin-bottom: 18px;
    color: var(--blue);
    background: #edf4ff;
    font-size: 22px;
}

.tile h3 {
    font-size: 20px;
    margin-bottom: 9px;
}

.tile p,
.tile li {
    color: var(--muted);
}

.tile ul {
    list-style: none;
    display: grid;
    gap: 9px;
    margin-top: 18px;
}

.tile li::before {
    content: "✓";
    color: var(--green);
    margin-right: 8px;
    font-weight: 800;
}

.price {
    font-size: 36px;
    font-weight: 800;
    margin: 18px 0 4px;
}

.price span {
    font-size: 14px;
    color: var(--muted);
    font-weight: 700;
}

.highlight {
    border-color: rgba(37, 99, 235, 0.45);
    box-shadow: 0 22px 60px rgba(37, 99, 235, 0.14);
}

.story-band {
    background: #172033;
    color: #fff;
}

.story-band p {
    color: rgba(255, 255, 255, 0.78);
}

.contact-box {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 18px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.detail-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--shadow);
}

.detail-card strong {
    display: block;
    color: var(--blue);
    font-size: 32px;
    line-height: 1;
    margin-bottom: 8px;
}

.detail-card span {
    color: var(--muted);
}

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

.cta-band p {
    color: var(--muted);
    margin-top: 8px;
}

.contact-list {
    display: grid;
    gap: 14px;
}

.contact-row {
    display: flex;
    gap: 12px;
    color: var(--muted);
}

.contact-row i {
    color: var(--green);
    font-size: 20px;
}

.contact-form {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.contact-form label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-size: 14px;
    padding: 12px 13px;
    outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: rgba(37, 99, 235, 0.62);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.contact-form textarea {
    min-height: 132px;
    resize: vertical;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.form-alert {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 12px 13px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
    margin-top: 14px;
}

.form-alert i {
    width: auto;
    height: auto;
    margin: 0;
    background: transparent;
    font-size: 17px;
}

.form-alert.success {
    color: #047857;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
}

.form-alert.error {
    color: #b91c1c;
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.form-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.form-note i {
    color: var(--blue);
    font-size: 17px;
}

.hidden-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 32px clamp(18px, 5vw, 76px);
    background: #101827;
    color: rgba(255, 255, 255, 0.72);
}

.site-footer img {
    height: 42px;
    width: auto;
    margin-bottom: 8px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-weight: 700;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.78);
}

.footer-links a:hover {
    color: #fff;
}

@media (max-width: 900px) {
    .site-header {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .site-nav {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .hero {
        background:
            linear-gradient(180deg, rgba(10, 18, 32, 0.88) 0%, rgba(10, 18, 32, 0.78) 100%),
            url('/assets/logo_2.png') center 76% / min(440px, 92vw) auto no-repeat,
            #172033;
        align-items: start;
        padding-top: 54px;
    }

    .hero-stats,
    .grid,
    .two-grid,
    .detail-grid,
    .form-grid,
    .contact-box {
        grid-template-columns: 1fr;
    }

    .cta-band {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .brand img {
        height: 38px;
    }

    .login-button span {
        display: none;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 38px;
    }
}
