:root {
    --bg: #fff7ed;
    --bg-2: #f8fbff;
    --surface: #ffffff;
    --surface-soft: rgba(255,255,255,.76);
    --text: #111827;
    --muted: #64748b;
    --line: rgba(17, 24, 39, .10);
    --orange: #ff7a18;
    --pink: #ff2f7d;
    --violet: #6d5dfc;
    --cyan: #06b6d4;
    --green: #22c55e;
    --dark: #0f172a;
    --radius: 30px;
    --shadow: 0 26px 90px rgba(15, 23, 42, .14);
    --shadow-strong: 0 34px 110px rgba(109, 93, 252, .28);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background:
        radial-gradient(circle at 12% 8%, rgba(255, 122, 24, .18), transparent 30%),
        radial-gradient(circle at 88% 0%, rgba(109, 93, 252, .16), transparent 28%),
        linear-gradient(180deg, #fff7ed 0%, #f8fbff 42%, #ffffff 100%);
    color: var(--text);
    line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 12px 0;
    background: rgba(255, 255, 255, .68);
    backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(255,255,255,.55);
    box-shadow: 0 12px 38px rgba(15, 23, 42, .07);
}
.header-inner {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 26px;
    background: rgba(255,255,255,.58);
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: -.04em; }
.brand-mark {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 17px;
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--pink) 48%, var(--violet));
    box-shadow: 0 18px 40px rgba(255, 47, 125, .32);
}
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy span { font-size: 21px; }
.brand-copy small { margin-top: 3px; color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .02em; }
.nav { display: flex; align-items: center; gap: 6px; padding: 7px; border-radius: 999px; background: rgba(15, 23, 42, .045); }
.nav a { padding: 10px 14px; border-radius: 999px; color: #475569; font-weight: 800; font-size: 14px; transition: .18s ease; }
.nav a:hover { color: var(--dark); background: #fff; box-shadow: 0 10px 25px rgba(15,23,42,.08); }
.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--pink), var(--violet));
    box-shadow: 0 14px 34px rgba(109, 93, 252, .28);
    white-space: nowrap;
}
.section { padding: 94px 0; }
.hero { position: relative; overflow: hidden; padding: 98px 0 86px; }
.hero::before {
    content: "";
    position: absolute;
    inset: 24px 16px auto;
    height: calc(100% - 72px);
    border-radius: 52px;
    background:
        linear-gradient(135deg, rgba(15,23,42,.96), rgba(35,31,85,.94) 58%, rgba(255,47,125,.88)),
        radial-gradient(circle at 20% 20%, rgba(255,255,255,.22), transparent 35%);
    box-shadow: var(--shadow-strong);
}
.hero-bg-shape { position: absolute; z-index: 1; border-radius: 999px; filter: blur(3px); opacity: .85; pointer-events: none; }
.shape-one { width: 190px; height: 190px; right: 9%; top: 120px; background: radial-gradient(circle, rgba(6,182,212,.78), transparent 70%); }
.shape-two { width: 260px; height: 260px; left: 6%; bottom: 70px; background: radial-gradient(circle, rgba(255,122,24,.55), transparent 70%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(360px, .94fr); gap: 54px; align-items: center; color: #fff; }
.eyebrow, .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--pink);
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .1em;
}
.eyebrow { color: #ffd166; }
.section-label::before, .eyebrow::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 6px rgba(255,47,125,.12); }
.section-label.light { color: #ffe4f1; }
h1, h2, h3 { margin: 0; line-height: 1.05; letter-spacing: -.055em; }
h1 { max-width: 780px; font-size: clamp(42px, 7vw, 82px); }
h2 { font-size: clamp(32px, 4.4vw, 56px); }
h3 { font-size: 22px; }
p { margin: 0; color: var(--muted); }
.lead { max-width: 690px; margin-top: 24px; color: rgba(255,255,255,.78); font-size: 21px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 36px 0 34px; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 950;
    border: 0;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--orange), var(--pink) 46%, var(--violet)); box-shadow: 0 20px 48px rgba(255,47,125,.34); }
.btn-primary:disabled { opacity: .65; cursor: not-allowed; transform: none; }
.btn-xl { min-height: 62px; padding-inline: 32px; font-size: 18px; }
.btn-dark { color: #fff; background: var(--dark); }
.btn-light { color: var(--dark); background: #fff; box-shadow: 0 18px 50px rgba(255,255,255,.18); }
.btn.full { width: 100%; }
.hero-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; max-width: 680px; }
.hero-facts div { padding: 18px; border: 1px solid rgba(255,255,255,.16); border-radius: 24px; background: rgba(255,255,255,.08); backdrop-filter: blur(12px); }
.hero-facts strong { display: block; font-size: 23px; }
.hero-facts span { color: rgba(255,255,255,.68); font-size: 14px; }
.hero-showcase { position: relative; min-height: 535px; }
.screen-frame {
    position: absolute;
    inset: 34px 8px 50px 8px;
    padding: 14px;
    border-radius: 42px;
    background: linear-gradient(135deg, rgba(255,255,255,.34), rgba(255,255,255,.08));
    border: 1px solid rgba(255,255,255,.22);
    box-shadow: 0 30px 110px rgba(0,0,0,.32);
    overflow: hidden;
}
.screen-frame::before {
    content: "";
    position: absolute;
    inset: 30px;
    border: 14px solid #050816;
    border-radius: 25px;
    z-index: 2;
    pointer-events: none;
}
.screen-frame img { width: 100%; height: 100%; object-fit: cover; border-radius: 30px; filter: saturate(1.12) contrast(1.03); }
.screen-glow { position: absolute; inset: auto 22% -50px; height: 110px; border-radius: 50%; background: rgba(6,182,212,.48); filter: blur(30px); }
.hero-badge {
    position: absolute;
    z-index: 5;
    padding: 15px 18px;
    border-radius: 20px;
    color: var(--dark);
    background: rgba(255,255,255,.94);
    box-shadow: 0 24px 70px rgba(0,0,0,.26);
    font-weight: 950;
}
.badge-top { left: -8px; top: 68px; }
.badge-bottom { right: -2px; bottom: 70px; }
.quick-request { position: relative; z-index: 4; margin-top: -28px; }
.quick-request-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px;
    border-radius: 28px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 24px 70px rgba(15,23,42,.12);
    border: 1px solid rgba(255,255,255,.75);
}
.quick-request strong { display: block; font-size: 22px; letter-spacing: -.03em; }
.quick-request span { color: var(--muted); }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .86fr); gap: 58px; align-items: center; }
.split p { margin-top: 18px; font-size: 18px; }
.check-list { list-style: none; padding: 0; margin: 26px 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 36px; color: #334155; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; color: #fff; background: linear-gradient(135deg, var(--green), var(--cyan)); font-weight: 950; font-size: 14px; }
.price-line { display: inline-flex; align-items: center; gap: 16px; padding: 16px 20px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); box-shadow: 0 16px 36px rgba(15,23,42,.07); }
.price-line span { color: var(--muted); }
.price-line strong { font-size: 30px; background: linear-gradient(135deg, var(--orange), var(--pink)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.image-card { padding: 12px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
.accent-card { position: relative; }
.accent-card::before { content: ""; position: absolute; inset: -14px; z-index: -1; border-radius: 38px; background: linear-gradient(135deg, rgba(255,122,24,.34), rgba(255,47,125,.26), rgba(109,93,252,.28)); filter: blur(4px); }
.image-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: calc(var(--radius) - 10px); }
.muted { background: linear-gradient(180deg, #f8fbff, #eef5ff); }
.section-head { max-width: 800px; margin-bottom: 34px; }
.section-head p { margin-top: 14px; font-size: 18px; }
.inline-head { max-width: none; display: flex; justify-content: space-between; align-items: end; gap: 30px; }
.inline-head p { max-width: 440px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { overflow: hidden; border: 1px solid rgba(255,255,255,.82); border-radius: var(--radius); background: var(--surface); box-shadow: 0 18px 55px rgba(15,23,42,.08); transition: transform .22s ease, box-shadow .22s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 28px 80px rgba(15,23,42,.13); }
.service-image { position: relative; background: #eaf1fb; }
.service-image::after { content: ""; position: absolute; inset: auto 0 0; height: 58%; background: linear-gradient(180deg, transparent, rgba(15,23,42,.34)); pointer-events: none; }
.service-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: #dde7f5; }
.service-body { padding: 26px; }
.service-body p { margin: 14px 0 18px; }
.service-body ul, .bracket-card ul { padding: 0; margin: 0; list-style: none; display: grid; gap: 8px; color: #354154; }
.service-body li::before, .bracket-card li::before { content: "•"; color: var(--pink); margin-right: 8px; font-weight: 950; }
.card-bottom { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line); }
.card-bottom strong { font-size: 24px; color: var(--dark); }
.card-bottom a { color: var(--pink); font-weight: 950; }
.work-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-flow: dense; gap: 16px; }
.work-card { margin: 0; overflow: hidden; border-radius: 26px; background: var(--surface); box-shadow: 0 18px 45px rgba(15,23,42,.08); }
.work-card-wide { grid-column: span 2; grid-row: span 2; }
.work-card img { width: 100%; height: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .38s ease, filter .38s ease; filter: saturate(1.06); }
.work-card-wide img { aspect-ratio: 1 / 1; }
.work-card:hover img { transform: scale(1.045); filter: saturate(1.18); }
.bracket-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.bracket-card { padding: 18px; border: 1px solid rgba(255,255,255,.85); border-radius: 26px; background: var(--surface); box-shadow: 0 12px 40px rgba(15,23,42,.06); transition: transform .2s ease; }
.bracket-card:hover { transform: translateY(-3px); }
.bracket-image { display: grid; place-items: center; min-height: 190px; margin-bottom: 12px; border-radius: 20px; background: radial-gradient(circle at 30% 20%, rgba(255,122,24,.13), transparent 42%), #f7f9fd; }
.bracket-image img { width: 100%; max-height: 180px; object-fit: contain; }
.bracket-card h3 { font-size: 18px; margin-bottom: 10px; letter-spacing: -.02em; }
.bracket-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 12px; }
.bracket-price span { color: var(--muted); text-decoration: line-through; }
.bracket-price strong { font-size: 22px; background: linear-gradient(135deg, var(--orange), var(--pink)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cta { position: relative; overflow: hidden; padding: 76px 0; color: #fff; background: linear-gradient(135deg, #111827, #312e81 48%, #e11d48); }
.cta::before { content: ""; position: absolute; right: 8%; top: -110px; width: 300px; height: 300px; border-radius: 50%; background: rgba(6,182,212,.35); filter: blur(20px); }
.cta-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 30px; }
.cta h2 { max-width: 760px; }
.cta p { margin-top: 16px; max-width: 720px; color: rgba(255,255,255,.76); }
.request-section { background: radial-gradient(circle at 0 0, rgba(255,122,24,.12), transparent 28%), #ffffff; }
.request-grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(370px, .72fr); gap: 58px; align-items: start; }
.info-panel { display: grid; gap: 14px; margin-top: 30px; }
.info-panel div { padding: 20px; border-radius: 24px; background: #fff; border: 1px solid var(--line); box-shadow: 0 14px 45px rgba(15,23,42,.06); }
.info-panel strong { display: block; font-size: 18px; margin-bottom: 4px; }
.info-panel span { color: var(--muted); }
.request-form { display: grid; gap: 16px; padding: 30px; border-radius: 34px; background: rgba(255,255,255,.92); box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.88); }
.form-title { font-size: 28px; font-weight: 950; letter-spacing: -.045em; }
.request-form label { display: grid; gap: 8px; color: #334155; font-weight: 850; }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: 18px; padding: 15px 16px; font: inherit; color: var(--text); background: #fff; outline: none; }
input:focus, select:focus, textarea:focus { border-color: rgba(255,47,125,.55); box-shadow: 0 0 0 4px rgba(255,47,125,.12); }
textarea { resize: vertical; }
.honey { position: absolute; left: -9999px; opacity: 0; }
.form-note { font-size: 13px; }
.form-result { min-height: 22px; font-weight: 900; color: var(--pink); }
.footer { padding: 34px 0 86px; border-top: 1px solid var(--line); background: #fff; color: var(--muted); }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; }
.footer a { color: var(--pink); font-weight: 950; }
.mobile-bar { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60; display: none; overflow: hidden; border-radius: 22px; background: linear-gradient(135deg, var(--orange), var(--pink), var(--violet)); box-shadow: 0 18px 50px rgba(255,47,125,.3); }
.mobile-bar a { display: grid; place-items: center; min-height: 56px; color: #fff; font-weight: 950; }
@media (max-width: 1080px) {
    .nav { display: none; }
    .hero-grid, .split, .request-grid { grid-template-columns: 1fr; }
    .hero-showcase { min-height: 430px; }
    .service-grid { grid-template-columns: 1fr; }
    .bracket-grid, .work-grid { grid-template-columns: repeat(2, 1fr); }
    .inline-head, .cta-grid { display: block; }
    .cta .btn { margin-top: 24px; }
}
@media (max-width: 680px) {
    .container { width: min(100% - 24px, 1180px); }
    .site-header { padding: 8px 0; }
    .header-inner { min-height: 58px; border-radius: 22px; }
    .brand-mark { width: 42px; height: 42px; border-radius: 15px; }
    .brand-copy small { display: none; }
    .header-cta { min-height: 42px; padding-inline: 13px; font-size: 13px; }
    .section { padding: 66px 0; }
    .hero { padding: 58px 0 56px; }
    .hero::before { inset: 8px 8px auto; height: calc(100% - 28px); border-radius: 34px; }
    h1 { font-size: 42px; }
    h2 { font-size: 34px; }
    .lead { font-size: 18px; }
    .hero-actions { display: grid; }
    .hero-facts { grid-template-columns: 1fr; }
    .hero-showcase { min-height: 350px; }
    .screen-frame { inset: 22px 0 44px; border-radius: 30px; }
    .screen-frame::before { inset: 22px; border-width: 10px; }
    .badge-top { left: 6px; top: 30px; }
    .badge-bottom { right: 6px; bottom: 42px; }
    .hero-badge { font-size: 13px; padding: 12px 14px; }
    .quick-request { margin-top: -10px; }
    .quick-request-inner { display: grid; border-radius: 24px; }
    .bracket-grid, .work-grid { grid-template-columns: 1fr; }
    .work-card-wide { grid-column: span 1; grid-row: span 1; }
    .price-line { display: grid; }
    .request-form { padding: 20px; border-radius: 26px; }
    .footer { padding-bottom: 94px; }
    .footer-inner { display: grid; }
    .mobile-bar { display: grid; }
}


/* === v3: header spacing, modal request form, prettier CTAs === */
@media (min-width: 681px) {
    .container { width: min(1180px, calc(100% - 56px)); }
}

.site-header {
    padding: 16px 0;
}

.header-inner {
    padding: 14px 18px;
    gap: 22px;
}

.brand {
    min-width: 210px;
}

.nav {
    padding: 8px;
    gap: 8px;
}

.nav a {
    padding: 11px 18px;
}

.header-cta {
    min-width: 176px;
    min-height: 52px;
    padding: 0 24px;
    background:
        linear-gradient(135deg, #ff7a18 0%, #ff2f7d 45%, #6d5dfc 100%);
    box-shadow:
        0 18px 45px rgba(255,47,125,.30),
        inset 0 1px 0 rgba(255,255,255,.35);
}

.hero::before {
    inset: 24px 28px auto;
    width: auto;
}

.hero-grid {
    padding-inline: 10px;
}

.hero .lead,
.hero h1,
.hero .eyebrow {
    text-wrap: balance;
}

.quick-request-inner {
    padding: 26px 28px;
}

.btn,
.header-cta,
.mini-cta,
.mobile-bar a {
    position: relative;
    overflow: hidden;
}

.btn::after,
.header-cta::after,
.mini-cta::after,
.mobile-bar a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.35) 42%, transparent 70%);
    transform: translateX(-130%);
    transition: transform .55s ease;
}

.btn:hover::after,
.header-cta:hover::after,
.mini-cta:hover::after,
.mobile-bar a:hover::after {
    transform: translateX(130%);
}

.card-bottom {
    align-items: center;
    gap: 16px;
}

.card-bottom .mini-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    color: #fff;
    font-size: 14px;
    font-weight: 950;
    line-height: 1;
    background:
        linear-gradient(135deg, var(--orange), var(--pink) 48%, var(--violet));
    box-shadow: 0 16px 34px rgba(255,47,125,.26);
    white-space: nowrap;
}

.cta .btn-light {
    color: #fff;
    background:
        linear-gradient(135deg, var(--orange), var(--pink) 48%, var(--violet));
    box-shadow:
        0 22px 55px rgba(255,47,125,.34),
        inset 0 1px 0 rgba(255,255,255,.35);
}

.request-section {
    display: none !important;
}

body.modal-open {
    overflow: hidden;
}

.lead-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.lead-modal.is-open {
    display: flex;
}

.lead-modal__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 5%, rgba(255,122,24,.24), transparent 32%),
        radial-gradient(circle at 88% 12%, rgba(109,93,252,.30), transparent 35%),
        rgba(7, 10, 24, .68);
    backdrop-filter: blur(12px);
}

.lead-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(620px, 100%);
    max-height: min(88vh, 820px);
    overflow: auto;
    padding: 30px;
    border-radius: 36px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.92));
    box-shadow:
        0 36px 120px rgba(7, 10, 24, .42),
        0 0 0 1px rgba(255,255,255,.7) inset;
}

.lead-modal__dialog::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 7px;
    background: linear-gradient(90deg, var(--orange), var(--pink), var(--violet), var(--cyan));
}

.lead-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    color: var(--dark);
    background: rgba(15, 23, 42, .06);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transition: .18s ease;
}

.lead-modal__close:hover {
    transform: rotate(90deg);
    background: rgba(255,47,125,.12);
    color: var(--pink);
}

.lead-modal__head {
    padding-right: 46px;
    margin-bottom: 20px;
}

.lead-modal__head h2 {
    font-size: clamp(34px, 5vw, 48px);
}

.lead-modal__head p {
    margin-top: 12px;
    font-size: 17px;
}

.request-form-modal {
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

.request-form-modal label {
    font-size: 15px;
}

.request-form-modal input,
.request-form-modal select,
.request-form-modal textarea {
    min-height: 58px;
    border-radius: 20px;
    border-color: rgba(15,23,42,.13);
    background: #fff;
}

.request-form-modal textarea {
    min-height: 132px;
}

.request-form-modal .btn.full {
    min-height: 62px;
    margin-top: 4px;
    font-size: 16px;
    letter-spacing: .01em;
}

.request-form-modal .form-result {
    text-align: center;
}

.footer a.js-open-lead-modal {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--violet));
}

@media (max-width: 1080px) {
    .brand { min-width: 0; }
    .header-inner { padding: 12px 16px; }
    .hero::before { inset: 16px 20px auto; }
    .hero-grid { padding-inline: 18px; }
}

@media (max-width: 680px) {
    .container { width: min(100% - 32px, 1180px); }
    .site-header { padding: 10px 0; }
    .header-inner {
        padding: 12px;
        gap: 12px;
    }
    .brand-copy span { font-size: 18px; }
    .header-cta {
        min-width: auto;
        min-height: 44px;
        padding-inline: 14px;
    }
    .hero::before {
        inset: 8px 14px auto;
        height: calc(100% - 28px);
    }
    .hero-grid {
        padding-inline: 16px;
    }
    h1 { font-size: 40px; }
    .lead-modal {
        padding: 12px;
        align-items: end;
    }
    .lead-modal__dialog {
        max-height: 92vh;
        padding: 24px 18px 18px;
        border-radius: 30px 30px 24px 24px;
    }
    .lead-modal__close {
        top: 12px;
        right: 12px;
        width: 42px;
        height: 42px;
    }
    .lead-modal__head {
        padding-right: 44px;
    }
    .card-bottom {
        display: grid;
        align-items: stretch;
    }
    .card-bottom .mini-cta {
        width: 100%;
    }
}
