:root {
    --ink: #111318;
    --ink-soft: #1a1d23;
    --night: #0a0c10;
    --night-2: #12151b;
    --paper: #f6f3ed;
    --paper-2: #eee9df;
    --white: #ffffff;
    --gold: #d6ae62;
    --gold-light: #f1d698;
    --gold-dark: #9d7634;
    --text: #17191d;
    --muted: #6f727a;
    --muted-light: #a9acb4;
    --line: rgba(20, 22, 27, 0.12);
    --line-dark: rgba(255, 255, 255, 0.12);
    --success-bg: #e8f7ee;
    --success-text: #17603a;
    --error-bg: #fff0ef;
    --error-text: #9e2823;
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 34px;
    --shadow-soft: 0 18px 60px rgba(8, 10, 14, 0.09);
    --shadow-deep: 0 28px 90px rgba(0, 0, 0, 0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--text);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body::selection { background: var(--gold); color: var(--night); }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img, svg { display: block; max-width: 100%; }
.container { width: min(1180px, calc(100% - 44px)); margin: 0 auto; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(10, 12, 16, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 13px; min-width: max-content; }
.brand-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(214, 174, 98, 0.42);
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(214, 174, 98, 0.2), rgba(214, 174, 98, 0.03));
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.025);
}
.brand > span:last-child { display: grid; gap: 2px; }
.brand strong { color: #fff; font-size: 1.05rem; letter-spacing: 0.01em; }
.brand small { color: #8f939d; font-size: 0.72rem; letter-spacing: 0.04em; }
.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a {
    position: relative;
    color: #c7cad0;
    font-size: 0.9rem;
    font-weight: 650;
    transition: color 0.2s ease;
}
.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}
.main-nav a:hover { color: #fff; }
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.phone-link { color: #d7d9de; font-size: 0.9rem; font-weight: 650; }
.header-cta {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border: 1px solid var(--gold);
    border-radius: 999px;
    color: var(--gold-light);
    font-weight: 800;
    transition: 0.2s ease;
}
.header-cta:hover { background: var(--gold); color: var(--night); transform: translateY(-1px); }

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 84px;
    background:
        radial-gradient(circle at 8% 18%, rgba(214,174,98,0.16), transparent 28%),
        radial-gradient(circle at 82% 12%, rgba(214,174,98,0.08), transparent 32%),
        linear-gradient(135deg, #090b0f 0%, #10141a 58%, #0a0c10 100%);
    color: #fff;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.36;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 94%);
}
.hero::after {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    border: 1px solid rgba(214,174,98,0.18);
    border-radius: 50%;
    right: -210px;
    top: -175px;
    box-shadow: 0 0 0 72px rgba(214,174,98,0.025), 0 0 0 145px rgba(214,174,98,0.016);
}
.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
    gap: 64px;
    align-items: center;
}
.hero-copy { max-width: 650px; padding: 22px 0; }
.eyebrow, .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--gold-light);
    font-size: 0.74rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 5px rgba(214,174,98,0.12);
}
h1 {
    max-width: 780px;
    margin: 25px 0 24px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.35rem, 5.5vw, 6.15rem);
    font-weight: 500;
    line-height: 0.94;
    letter-spacing: -0.055em;
}
h1 em { color: var(--gold-light); font-weight: 500; }
.hero-lead {
    max-width: 610px;
    margin: 0;
    color: #b9bdc6;
    font-size: 1.08rem;
    line-height: 1.8;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.primary-button, .secondary-button, .secondary-dark-button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 23px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 850;
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}
.primary-button {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--night);
    box-shadow: 0 14px 34px rgba(214,174,98,0.18);
}
.primary-button:hover { transform: translateY(-2px); background: #f6dfa9; }
.secondary-button { border: 1px solid rgba(255,255,255,0.18); color: #fff; background: rgba(255,255,255,0.04); }
.secondary-button:hover { transform: translateY(-2px); border-color: rgba(214,174,98,0.56); background: rgba(214,174,98,0.08); }
.advantages { display: flex; flex-wrap: wrap; gap: 16px 24px; margin-top: 32px; }
.advantages span { display: inline-flex; align-items: center; gap: 9px; color: #d4d6dc; font-size: 0.86rem; font-weight: 650; }
.advantages span::before { content: "✓"; color: var(--gold-light); font-size: 0.75rem; }
.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 42px;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hero-metrics div { padding: 20px 18px 20px 0; }
.hero-metrics div + div { padding-left: 24px; border-left: 1px solid rgba(255,255,255,0.1); }
.hero-metrics strong { display: block; color: var(--gold-light); font-family: Georgia, serif; font-size: 1.55rem; font-weight: 500; }
.hero-metrics small { display: block; margin-top: 4px; color: #8e929b; font-size: 0.75rem; }

/* Form */
.form-card {
    position: relative;
    background: rgba(255,255,255,0.985);
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.75);
    border-radius: var(--radius-lg);
    padding: 34px;
    box-shadow: var(--shadow-deep);
}
.form-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(214,174,98,0.16);
}
.form-heading { position: relative; z-index: 1; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.form-heading-top { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.form-heading span { color: var(--gold-dark); font-size: 0.73rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.form-heading small { color: #83868d; font-size: 0.75rem; }
.form-heading h2 {
    margin: 10px 0 8px;
    font-family: Georgia, serif;
    font-size: 2.15rem;
    font-weight: 500;
    letter-spacing: -0.035em;
}
.form-heading p { margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.65; }
.alert { margin: 20px 0 0; padding: 14px 16px; border-radius: var(--radius-sm); line-height: 1.5; }
.alert ul { margin: 8px 0 0 20px; padding: 0; }
.alert-success { background: var(--success-bg); color: var(--success-text); }
.alert-error { background: var(--error-bg); color: var(--error-text); }
.booking-form { display: grid; gap: 17px; margin-top: 24px; }
.field-grid { display: grid; gap: 15px; }
.two-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.three-columns { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.field { display: grid; gap: 7px; }
.field label { color: #33363c; font-size: 0.79rem; font-weight: 800; }
input, select, textarea {
    width: 100%;
    border: 1px solid #ded9cf;
    border-radius: 12px;
    background: #fbfaf7;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
input, select { min-height: 49px; padding: 0 13px; }
textarea { padding: 13px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--gold-dark); background: #fff; box-shadow: 0 0 0 4px rgba(214,174,98,0.13); }
::placeholder { color: #a2a3a8; }
.consent { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 0.8rem; line-height: 1.48; }
.consent input { width: 18px; min-height: 18px; margin-top: 1px; accent-color: var(--gold-dark); }
.submit-button {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 23px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #16191f, #090b0f);
    color: #fff;
    font-weight: 850;
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(10,12,16,0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.submit-button span:last-child {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--gold);
    color: var(--night);
}
.submit-button:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(10,12,16,0.24); }
.form-note { margin: -4px 0 0; text-align: center; color: #8a8c92; font-size: 0.74rem; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

/* Content */
.trust-strip { background: #f1ecdf; border-bottom: 1px solid rgba(17,19,24,0.08); }
.trust-grid { min-height: 92px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; }
.trust-grid span { display: flex; align-items: center; justify-content: center; gap: 13px; font-size: 0.9rem; font-weight: 800; }
.trust-grid span + span { border-left: 1px solid rgba(17,19,24,0.12); }
.trust-grid b { color: var(--gold-dark); font-family: Georgia, serif; font-size: 1.1rem; font-weight: 500; }
.section { position: relative; padding: 108px 0; background: var(--paper); }
.section-muted { background: #ece8df; }
.section-heading { max-width: 640px; }
.section-heading.centered { margin: 0 auto 50px; text-align: center; }
.section-kicker { color: var(--gold-dark); }
.section-heading h2, .feature-panel h2, .seo-content h2, .cta-inner h2 {
    margin: 12px 0 18px;
    font-family: Georgia, serif;
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.05em;
}
.section-heading p, .feature-panel > p, .seo-content p, .cta-inner p { color: var(--muted); font-size: 1rem; line-height: 1.78; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
    min-height: 345px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border: 1px solid rgba(17,19,24,0.1);
    border-radius: 26px;
    background: rgba(255,255,255,0.62);
    box-shadow: 0 12px 40px rgba(15,17,21,0.045);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.service-card:hover { transform: translateY(-8px); background: #fff; box-shadow: var(--shadow-soft); }
.service-card-featured { background: linear-gradient(145deg, #15181e, #090b0f); color: #fff; border-color: transparent; }
.service-card-featured:hover { background: linear-gradient(145deg, #1a1e25, #0b0d11); }
.service-card-top { display: flex; align-items: center; justify-content: space-between; }
.service-number { color: var(--gold-dark); font-family: Georgia, serif; font-size: 1.08rem; }
.service-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(157,118,52,0.28);
    border-radius: 50%;
    color: var(--gold-dark);
    font-size: 1rem;
}
.service-card-featured .service-number, .service-card-featured .service-icon { color: var(--gold-light); border-color: rgba(214,174,98,0.3); }
.service-card h3 { margin: 58px 0 14px; font-family: Georgia, serif; font-size: 1.75rem; font-weight: 500; }
.service-card p { margin: 0; color: var(--muted); line-height: 1.75; }
.service-card-featured p { color: #aeb2bb; }
.service-card a { margin-top: auto; padding-top: 25px; color: var(--gold-dark); font-size: 0.88rem; font-weight: 850; }
.service-card-featured a { color: var(--gold-light); }

.process-layout { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 90px; align-items: start; }
.text-link { display: inline-flex; margin-top: 15px; color: var(--gold-dark); font-weight: 850; }
.steps { position: relative; display: grid; gap: 14px; }
.steps::before { content: ""; position: absolute; left: 34px; top: 34px; bottom: 34px; width: 1px; background: rgba(157,118,52,0.22); }
.step-card {
    position: relative;
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 18px;
    padding: 26px;
    border: 1px solid rgba(17,19,24,0.1);
    border-radius: 20px;
    background: rgba(255,255,255,0.56);
}
.step-card > span {
    position: relative;
    z-index: 2;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--night);
    color: var(--gold-light);
    font-family: Georgia, serif;
    font-size: 1.15rem;
}
.step-card h3 { margin: 1px 0 7px; font-family: Georgia, serif; font-size: 1.25rem; font-weight: 500; }
.step-card p { margin: 0; color: var(--muted); line-height: 1.65; }

.feature-layout { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 64px; align-items: stretch; }
.feature-panel { padding: 24px 0; }
.check-list { display: grid; gap: 15px; margin: 32px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 38px; font-weight: 720; line-height: 1.55; }
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(157,118,52,0.34);
    border-radius: 50%;
    color: var(--gold-dark);
    font-size: 0.72rem;
}
.coverage-card {
    position: relative;
    overflow: hidden;
    padding: 46px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 82% 20%, rgba(214,174,98,0.22), transparent 26%),
        linear-gradient(145deg, #171a21, #080a0e);
    color: #fff;
    box-shadow: var(--shadow-deep);
}
.coverage-card::after {
    content: "IDF";
    position: absolute;
    right: -20px;
    bottom: -42px;
    color: rgba(255,255,255,0.035);
    font-family: Georgia, serif;
    font-size: 11rem;
    line-height: 1;
}
.coverage-orbit { position: absolute; top: 36px; right: 38px; width: 105px; height: 105px; border: 1px solid rgba(214,174,98,0.2); border-radius: 50%; }
.coverage-orbit::before, .coverage-orbit::after { content: ""; position: absolute; inset: 20px; border: 1px solid rgba(214,174,98,0.16); border-radius: 50%; }
.coverage-orbit::after { inset: 40px; background: var(--gold); border: 0; box-shadow: 0 0 0 7px rgba(214,174,98,0.12); }
.coverage-orbit span { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-light); }
.coverage-orbit span:nth-child(1) { left: 8px; top: 48px; }
.coverage-orbit span:nth-child(2) { right: 20px; top: 8px; }
.coverage-orbit span:nth-child(3) { right: 8px; bottom: 19px; }
.coverage-label { position: relative; z-index: 1; color: var(--gold-light); font-size: 0.73rem; font-weight: 850; text-transform: uppercase; letter-spacing: 0.14em; }
.coverage-card h3 { position: relative; z-index: 1; max-width: 480px; margin: 18px 0 15px; font-family: Georgia, serif; font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 500; line-height: 1.02; }
.coverage-card p { position: relative; z-index: 1; max-width: 450px; color: #adb1ba; line-height: 1.75; }
.secondary-dark-button { position: relative; z-index: 1; margin-top: 20px; border: 1px solid rgba(214,174,98,0.44); color: var(--gold-light); }
.secondary-dark-button:hover { background: var(--gold); color: var(--night); transform: translateY(-2px); }

.seo-content { border-top: 1px solid rgba(17,19,24,0.08); }
.content-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 72px; }
.seo-content h2 { font-size: clamp(2rem, 3.4vw, 3.3rem); }
.seo-content article + article { border-left: 1px solid rgba(17,19,24,0.12); padding-left: 72px; }

.faq-layout { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 82px; align-items: start; }
.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid rgba(17,19,24,0.11); border-radius: 18px; background: rgba(255,255,255,0.56); overflow: hidden; transition: background 0.2s ease; }
.faq-item[open] { background: #fff; }
.faq-item summary { position: relative; padding: 22px 58px 22px 23px; cursor: pointer; list-style: none; font-weight: 800; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); color: var(--gold-dark); font-family: Georgia, serif; font-size: 1.5rem; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: 0; padding: 0 23px 23px; color: var(--muted); line-height: 1.68; }

.cta-section {
    position: relative;
    overflow: hidden;
    padding: 86px 0;
    background: linear-gradient(120deg, #c99b49, #efd18d 48%, #c69746);
    color: var(--night);
}
.cta-section::before { content: ""; position: absolute; width: 340px; height: 340px; border: 1px solid rgba(10,12,16,0.12); border-radius: 50%; right: -80px; top: -180px; box-shadow: 0 0 0 52px rgba(10,12,16,0.035); }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.cta-inner > div { max-width: 760px; }
.cta-inner > div > span { font-size: 0.75rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.14em; }
.cta-inner h2 { margin-bottom: 10px; }
.cta-inner p { margin: 0; color: #4b3a20; }
.cta-inner .primary-button { background: var(--night); color: #fff; box-shadow: 0 14px 34px rgba(10,12,16,0.2); flex: 0 0 auto; }
.cta-inner .primary-button:hover { background: #1c2027; }

/* Footer */
.site-footer { background: var(--night); color: #b3b7c0; }
.footer-main { display: grid; grid-template-columns: 1.5fr 0.7fr 0.8fr; gap: 70px; padding: 70px 0 52px; }
.brand-light strong { color: #fff; }
.brand-light small { color: #8f939d; }
.footer-brand p { max-width: 480px; margin: 22px 0 0; color: #868a94; line-height: 1.75; }
.footer-column { display: grid; align-content: start; gap: 11px; }
.footer-column h3 { margin: 0 0 10px; color: var(--gold-light); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; }
.footer-column a, .footer-column span { font-size: 0.9rem; }
.footer-column a:hover { color: var(--gold-light); }
.footer-bottom { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 18px; border-top: 1px solid rgba(255,255,255,0.1); color: #777c86; font-size: 0.82rem; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

@media (max-width: 1100px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { max-width: 820px; }
    .form-card { max-width: 820px; }
    .main-nav { display: none; }
    .service-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 280px; }
    .process-layout, .faq-layout { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 780px) {
    .container { width: min(100% - 28px, 1180px); }
    .section { padding: 78px 0; }
    .phone-link { display: none; }
    .hero { padding: 70px 0 62px; }
    .hero-metrics { grid-template-columns: 1fr; }
    .hero-metrics div, .hero-metrics div + div { padding: 16px 0; border-left: 0; }
    .hero-metrics div + div { border-top: 1px solid rgba(255,255,255,0.1); }
    .trust-grid { grid-template-columns: 1fr; padding: 15px 0; }
    .trust-grid span { min-height: 52px; }
    .trust-grid span + span { border-left: 0; border-top: 1px solid rgba(17,19,24,0.1); }
    .feature-layout, .content-grid, .footer-main { grid-template-columns: 1fr; }
    .seo-content article + article { border-left: 0; border-top: 1px solid rgba(17,19,24,0.12); padding: 48px 0 0; }
    .cta-inner { align-items: flex-start; flex-direction: column; }
    .footer-main { gap: 38px; }
}

@media (max-width: 640px) {
    .container { width: min(100% - 20px, 1180px); }
    .header-inner { min-height: 70px; gap: 12px; }
    .brand-mark { width: 42px; height: 42px; }
    .brand small { display: none; }
    .header-cta { min-height: 40px; padding: 0 15px; font-size: 0.82rem; }
    h1 { font-size: clamp(3rem, 14vw, 4.3rem); }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .primary-button, .secondary-button { width: 100%; }
    .advantages { display: grid; }
    .form-card { padding: 22px 18px; border-radius: 24px; }
    .form-heading-top { align-items: flex-start; flex-direction: column; gap: 5px; }
    .form-heading h2 { font-size: 1.85rem; }
    .two-columns, .three-columns { grid-template-columns: 1fr; }
    .service-card { padding: 25px; }
    .service-card h3 { margin-top: 42px; }
    .step-card { grid-template-columns: 52px 1fr; padding: 20px; }
    .steps::before { left: 25px; }
    .coverage-card { padding: 32px 26px; }
    .coverage-orbit { opacity: 0.58; right: 18px; top: 20px; }
    .footer-bottom { flex-direction: column; justify-content: center; padding: 20px 0; text-align: center; }
}
