:root {
    --bg: #f2efe8;
    --surface: #ffffff;
    --surface-soft: #f9f6f0;
    --surface-strong: #072c38;
    --primary: #0a8fc8;
    --primary-strong: #066b96;
    --accent: #ec8f43;
    --accent-soft: #ffd6b4;
    --text: #15242d;
    --text-soft: #5f6d75;
    --text-inverse: #f6fbff;
    --line: rgba(21, 36, 45, 0.12);
    --shadow: 0 28px 60px rgba(7, 44, 56, 0.14);
    --radius-lg: 32px;
    --radius-md: 22px;
    --radius-sm: 14px;
    --container: min(1180px, calc(100% - 40px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top right, rgba(10, 143, 200, 0.12), transparent 24%),
        linear-gradient(180deg, #f7f3ed 0%, #eef2f3 45%, #f4efe7 100%);
}

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

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

button,
input,
textarea {
    font: inherit;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 18px 0;
    backdrop-filter: blur(16px);
    background: rgba(242, 239, 232, 0.82);
    border-bottom: 1px solid rgba(21, 36, 45, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    flex-shrink: 0;
}

.brand img,
.site-footer img {
    width: 174px;
}

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

.site-nav a {
    position: relative;
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--text-soft);
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.01em;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        background-color 0.22s ease,
        color 0.22s ease;
    cursor: pointer;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button-primary {
    color: var(--text-inverse);
    background: linear-gradient(135deg, var(--primary), #12a7e9);
    box-shadow: 0 18px 38px rgba(10, 143, 200, 0.28);
}

.button-secondary {
    color: var(--text);
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(21, 36, 45, 0.14);
}

.button-outline {
    color: var(--surface-strong);
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(7, 44, 56, 0.14);
}

.hero {
    position: relative;
    overflow: clip;
    padding: 90px 0 54px;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(6px);
    opacity: 0.9;
}

.hero::before {
    top: 52px;
    right: -60px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(236, 143, 67, 0.38) 0%, transparent 72%);
}

.hero::after {
    bottom: -20px;
    left: -60px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(10, 143, 200, 0.2) 0%, transparent 68%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 34px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--primary-strong);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 42px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
}

.hero h1,
.section-heading h2,
.section-heading-dark h2,
.contact-copy h2 {
    margin: 0;
    font-family: "Sora", "Segoe UI", sans-serif;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.02;
}

.hero h1 {
    max-width: 12ch;
    font-size: clamp(2.9rem, 5vw, 5.4rem);
}

.hero-text,
.section-heading p,
.section-heading-dark p,
.contact-copy p,
.feature-card p,
.benefit-list p,
.timeline-step p,
.panel-card p,
.contact-card p,
.contact-list li,
.trust-grid span {
    color: var(--text-soft);
    line-height: 1.7;
}

.hero-text {
    max-width: 60ch;
    margin: 22px 0 0;
    font-size: 1.08rem;
}

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

.hero-highlights {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-highlights li {
    position: relative;
    padding-left: 26px;
    font-weight: 700;
    color: #233843;
}

.hero-highlights li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    box-shadow: 0 0 0 6px rgba(236, 143, 67, 0.15);
}

.hero-panel {
    position: relative;
}

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

.panel-card,
.feature-card,
.timeline-step,
.contact-card,
.contact-form,
.trust-grid > div {
    border: 1px solid rgba(21, 36, 45, 0.08);
    box-shadow: var(--shadow);
}

.panel-card {
    padding: 28px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.78);
}

.panel-card-primary {
    padding: 34px;
    color: var(--text-inverse);
    background:
        linear-gradient(140deg, rgba(7, 44, 56, 0.96), rgba(10, 143, 200, 0.92)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
}

.panel-label,
.card-kicker {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.panel-card-primary .panel-label {
    color: #ffd7b6;
}

.panel-card h2 {
    margin: 0 0 14px;
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: clamp(1.6rem, 2.2vw, 2.3rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.panel-card-primary p {
    color: rgba(246, 251, 255, 0.82);
}

.metric {
    display: block;
    margin-bottom: 10px;
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--surface-strong);
}

.trust-strip {
    padding-bottom: 18px;
}

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

.trust-grid > div {
    padding: 24px 26px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.72);
}

.trust-grid strong {
    display: block;
    margin-bottom: 6px;
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: 1rem;
}

.section {
    padding: 90px 0;
    scroll-margin-top: 110px;
}

.section-light {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.78));
}

.section-dark {
    position: relative;
    color: var(--text-inverse);
    background:
        radial-gradient(circle at top left, rgba(236, 143, 67, 0.26), transparent 28%),
        linear-gradient(140deg, #072c38 0%, #0f4456 100%);
}

.section-warm {
    background:
        radial-gradient(circle at top right, rgba(236, 143, 67, 0.17), transparent 24%),
        linear-gradient(180deg, #fcf7ef 0%, #f4ebdf 100%);
}

.section-heading {
    max-width: 760px;
}

.section-heading h2,
.section-heading-dark h2,
.contact-copy h2 {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.section-heading p,
.section-heading-dark p {
    margin: 18px 0 0;
    font-size: 1.05rem;
}

.section-heading-dark p {
    color: rgba(246, 251, 255, 0.72);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 36px;
}

.feature-card {
    padding: 30px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.94);
}

.feature-card h3,
.benefit-list h3,
.timeline-step h3,
.contact-card h3 {
    margin: 0 0 12px;
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: 1.35rem;
    line-height: 1.16;
    letter-spacing: -0.03em;
}

.card-tag {
    display: inline-flex;
    margin-top: 18px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(10, 143, 200, 0.1);
    color: var(--primary-strong);
    font-weight: 800;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 36px;
    align-items: start;
}

.benefit-list {
    display: grid;
    gap: 18px;
}

.benefit-list article {
    padding: 24px 26px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.benefit-list p {
    margin: 0;
    color: rgba(246, 251, 255, 0.74);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 34px;
}

.timeline-step {
    padding: 30px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.76);
}

.timeline-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--surface-strong), var(--primary));
    color: var(--text-inverse);
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
}

.contact-section {
    background:
        radial-gradient(circle at bottom left, rgba(10, 143, 200, 0.12), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, #eef4f6 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 24px;
    align-items: start;
}

.contact-copy p {
    margin: 18px 0 0;
    max-width: 52ch;
}

.contact-copy a,
.contact-card a,
.text-link {
    color: var(--primary-strong);
    font-weight: 800;
}

.contact-form,
.contact-card {
    padding: 30px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.94);
}

.contact-form {
    position: relative;
    margin-top: 26px;
}

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

.form-row {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.form-row label {
    font-size: 0.95rem;
    font-weight: 800;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid rgba(21, 36, 45, 0.14);
    border-radius: 18px;
    background: #ffffff;
    color: var(--text);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: rgba(10, 143, 200, 0.64);
    box-shadow: 0 0 0 4px rgba(10, 143, 200, 0.12);
}

.form-row textarea {
    resize: vertical;
    min-height: 160px;
}

.hp-field {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.form-alert {
    margin-top: 24px;
    padding: 16px 18px;
    border-radius: 18px;
    font-weight: 700;
}

.form-alert-success {
    color: #0e5b35;
    background: #d9f5e5;
    border: 1px solid rgba(14, 91, 53, 0.16);
}

.form-alert-error {
    color: #8a2d16;
    background: #fee5dd;
    border: 1px solid rgba(138, 45, 22, 0.18);
}

.contact-list {
    display: grid;
    gap: 10px;
    margin: 22px 0;
    padding: 0;
    list-style: none;
}

.contact-card-box {
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.contact-card-box strong {
    display: block;
    margin-bottom: 10px;
    font-family: "Sora", "Segoe UI", sans-serif;
}

.site-footer {
    padding: 26px 0 42px;
    background: #eef3f5;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(21, 36, 45, 0.08);
}

.footer-inner p {
    margin: 0;
    color: var(--text-soft);
}

@media (max-width: 1080px) {
    .hero-grid,
    .split-layout,
    .contact-grid,
    .card-grid,
    .timeline,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        max-width: 14ch;
    }

    .panel-grid,
    .form-columns {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 820px) {
    .site-header {
        padding: 14px 0;
    }

    .header-inner {
        flex-wrap: wrap;
    }

    .site-nav {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        gap: 16px 18px;
    }

    .header-cta {
        margin-left: auto;
    }

    .hero {
        padding-top: 64px;
    }

    .section {
        padding: 72px 0;
    }
}

@media (max-width: 640px) {
    :root {
        --container: min(100% - 28px, 1180px);
    }

    .brand img,
    .site-footer img {
        width: 148px;
    }

    .site-nav {
        font-size: 0.92rem;
    }

    .button,
    .header-cta {
        width: 100%;
    }

    .hero-actions,
    .panel-grid,
    .form-columns,
    .footer-inner {
        grid-template-columns: 1fr;
        display: grid;
    }

    .hero h1 {
        max-width: none;
        font-size: clamp(2.4rem, 11vw, 3.4rem);
    }

    .panel-card,
    .feature-card,
    .timeline-step,
    .contact-card,
    .contact-form,
    .trust-grid > div {
        padding: 24px;
    }

    .footer-inner {
        justify-items: start;
    }
}
