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

:root {
    --primary: #111827;
    --primary-hover: #0f172a;
    --primary-light: #fff7ed;
    --primary-subtle: #ffedd5;
    --accent: #ff4d00;
    --accent-light: #fff1e7;
    --electric: #2563eb;
    --sunshine: #facc15;
    --success: #10b981;
    --success-light: #ecfdf5;
    --success-border: #a7f3d0;
    --danger: #ef4444;
    --danger-light: #fef2f2;
    --danger-border: #fecaca;
    --bg-page: #fff8f1;
    --bg-white: #fff;
    --bg-warm: #fff3e8;
    --bg-cream: #ffe8d2;
    --bg-dark: #080b16;
    --text-dark: #0f172a;
    --text-body: #334155;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --border: #f2d6bf;
    --border-hover: #f97316;
    --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --serif: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --section-pad: 80px;
    --section-pad-mob: 48px;
    --radius: 16px;
    --radius-pill: 9999px;
    --radius-sm: 14px;
    --radius-lg: 28px
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden
}

body {
    font-family: var(--sans);
    color: var(--text-body);
    background:
        radial-gradient(circle at top left, rgba(255, 77, 0, .14), transparent 34rem),
        radial-gradient(circle at 85% 10%, rgba(37, 99, 235, .12), transparent 30rem),
        var(--bg-page);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7
}

a {
    color: inherit;
    text-decoration: none;
    transition: color .25s
}

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

ul {
    list-style: none
}

.section-label {
    font-family: var(--sans);
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    text-align: center;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 800
}

.section-heading {
    font-family: var(--serif);
    color: var(--text-dark);
    text-align: center;
    letter-spacing: -.01em;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.2
}

.section-subtext {
    color: var(--text-muted);
    text-align: center;
    max-width: 560px;
    margin: 14px auto 0;
    font-size: 16px;
    line-height: 1.7
}

.btn--primary {
    font-family: var(--sans);
    color: #fff;
    background: linear-gradient(135deg, var(--accent), #fb7185);
    border-radius: var(--radius-pill);
    cursor: pointer;
    border: none;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: all .25s;
    display: inline-flex;
    box-shadow: 0 14px 34px rgba(255, 77, 0, .28)
}

.btn--primary:hover {
    background: linear-gradient(135deg, #f97316, #e11d48);
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(255, 77, 0, .36)
}

.btn--outline {
    font-family: var(--sans);
    color: var(--primary);
    background: var(--bg-white);
    border: 1.5px solid var(--border-hover);
    border-radius: var(--radius-pill);
    cursor: pointer;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: all .25s;
    display: inline-flex
}

.btn--outline:hover {
    border-color: var(--accent);
    background: var(--accent-light);
    color: var(--accent)
}

.btn__text {
    z-index: 1;
    position: relative
}

.btn__icon {
    align-items: center;
    transition: transform .25s;
    display: flex
}

.btn--primary:hover .btn__icon {
    transform: translate(3px)
}

.reveal {
    opacity: 0;
    transition: opacity .6s, transform .6s;
    transform: translateY(20px)
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

.announcement-banner {
    color: #fff;
    z-index: 1100;
    width: 100%;
    height: 38px;
    font-family: var(--sans);
    letter-spacing: .05em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #080b16 0%, #ff4d00 45%, #2563eb 100%);
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    box-shadow: 0 2px 4px #0000001a
}

.announcement-banner__track {
    white-space: nowrap;
    will-change: transform;
    animation: 60s linear infinite banner-scroll;
    display: flex
}

.announcement-banner__item {
    flex-shrink: 0;
    align-items: center;
    padding-right: 40px;
    display: inline-flex
}

.announcement-banner__item b {
    color: var(--sunshine);
    margin: 0 4px;
    font-weight: 700
}

@keyframes banner-scroll {
    0% {
        transform: translate(0)
    }

    to {
        transform: translate(-50%)
    }
}

@media (prefers-reduced-motion:reduce) {
    .announcement-banner__track {
        animation: none
    }
}

.nav {
    z-index: 1000;
    background: 0 0;
    width: 100%;
    transition: background .35s, box-shadow .35s, top .3s;
    position: fixed;
    top: 38px;
    left: 0
}

.nav.scrolled {
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 40px rgba(15, 23, 42, .08);
    background: rgba(255, 248, 241, .88)
}

.nav__inner {
    justify-content: space-between;
    align-items: center;
    max-width: 1160px;
    margin: 0 auto;
    padding: 18px 32px;
    display: flex
}

.nav__wordmark {
    font-family: var(--serif);
    letter-spacing: -.03em;
    color: var(--text-dark);
    font-size: 22px;
    font-weight: 800;
    transition: color .3s
}

.nav__links {
    align-items: center;
    gap: 28px;
    display: flex
}

.nav__links a {
    font-family: var(--sans);
    color: var(--text-body);
    font-size: 14px;
    font-weight: 800;
    transition: color .2s
}

.nav__links a:hover {
    color: var(--accent)
}

.nav__links a:after {
    display: none
}

.nav__cta {
    border-radius: var(--radius-pill);
    color: #fff !important;
    padding: 9px 22px !important;
    font-size: 13px !important
}

.nav__hamburger {
    cursor: pointer;
    z-index: 1001;
    background: 0 0;
    border: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    display: none
}

.nav__hamburger span {
    background: var(--text-dark);
    border-radius: 2px;
    width: 22px;
    height: 2px;
    transition: background .3s;
    display: block
}

.mobile-menu {
    backdrop-filter: blur(20px);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    background: rgba(255, 248, 241, .96);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity .3s;
    display: flex;
    position: fixed;
    inset: 0
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all
}

.mobile-menu__close {
    color: var(--text-dark);
    cursor: pointer;
    background: 0 0;
    border: none;
    font-size: 24px;
    position: absolute;
    top: 20px;
    right: 32px
}

.mobile-menu__links {
    flex-direction: column;
    align-items: center;
    gap: 28px;
    display: flex
}

.mobile-menu__links a {
    font-family: var(--sans);
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 600;
    transition: color .2s
}

.mobile-menu__links a:hover {
    color: var(--primary)
}

.hero {
    background: url('https://i.imgur.com/9w8MEXq.jpg') center/cover no-repeat;
    min-height: clamp(600px, 92vh, 900px);
    padding: 150px 32px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero:before {
    content: "";
    pointer-events: none;
    background:
        radial-gradient(circle at 22% 18%, rgba(255, 77, 0, .78), transparent 28rem),
        radial-gradient(circle at 78% 72%, rgba(37, 99, 235, .62), transparent 30rem),
        linear-gradient(135deg, rgba(8, 11, 22, .9) 0%, rgba(15, 23, 42, .64) 50%, rgba(8, 11, 22, .88) 100%);
    position: absolute;
    inset: 0;
    z-index: 1
}

.hero:after {
    content: "";
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, #000, transparent 78%);
    position: absolute;
    inset: 0;
    z-index: 1
}

.hero__content {
    z-index: 2;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 56px;
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    position: relative
}

.hero__text {
    max-width: 520px
}

.hero__kicker {
    color: #fff;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: var(--radius-pill);
    width: fit-content;
    margin-bottom: 20px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18)
}

.hero__headline {
    font-family: var(--serif);
    color: #fff;
    letter-spacing: -.06em;
    margin-bottom: 20px;
    font-size: clamp(36px, 7.24vw, 84px);
    font-weight: 900;
    line-height: 1.1;
    text-wrap: balance
}

.hero__headline span {
    color: var(--sunshine);
    text-shadow: 0 8px 28px rgba(250, 204, 21, .22);
    font-style: normal;
    display: block
}

.hero__subtext {
    font-family: var(--sans);
    color: rgba(255, 255, 255, .82);
    max-width: 460px;
    margin-bottom: 32px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.7
}

.hero__cta-group {
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    display: flex
}

.hero__consult-link {
    color: #fff;
    font-weight: 800
}

.hero__consult-link:hover {
    color: var(--sunshine)
}

.hero__trust-strip {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
    display: flex
}

.hero__trust-strip span {
    color: #fff;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius-pill);
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 800
}

.hero__stats {
    border-top: 1px solid var(--border);
    align-items: center;
    gap: 28px;
    margin-top: 36px;
    padding-top: 28px;
    display: flex
}

.hero__stat {
    flex-direction: column;
    display: flex
}

.hero__stat-value {
    font-family: var(--serif);
    color: var(--text-dark);
    letter-spacing: -.01em;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.2
}

.hero__stat-label {
    color: var(--text-muted);
    letter-spacing: .01em;
    margin-top: 2px;
    font-size: 12px
}

.hero__stat-divider {
    background: var(--border);
    width: 1px;
    height: 36px
}



/* Hero Review / Testimonial Card Redesign */
.hero__review-card {
    margin-top: 24px;
    margin-bottom: 0;
    padding: 24px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.24);
    max-width: 500px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero__review-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero__review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hero__review-meta {
    display: flex;
    flex-direction: column;
}

.hero__review-meta strong {
    font-family: var(--sans);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.hero__review-stars {
    color: var(--sunshine);
    letter-spacing: 1px;
    font-size: 13px;
    margin-top: 2px;
}

.hero__review-text {
    margin: 0;
    line-height: 1.6;
    color: rgba(255, 255, 255, .86);
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 700;
    font-style: italic;
}



/* Promoted section right after the hero */
.why-promo {
    background:
        radial-gradient(circle at 8% 16%, rgba(255, 77, 0, .16), transparent 20rem),
        var(--bg-warm, var(--bg-cream));
    padding: 64px 32px;
    border-bottom: 1px solid var(--border);
}

.why-promo__inner {
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
}

.why-promo__title {
    font-family: var(--serif);
    color: var(--text-dark);
    font-weight: 900;
    font-size: clamp(28px, 5vw, 42px);
    line-height: 1.2;
    margin: 0 0 48px;
    text-transform: uppercase;
    letter-spacing: -0.05em;
}

.why-promo__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.why-promo__col {
    background: rgba(255, 255, 255, .76);
    border: 1px solid rgba(249, 115, 22, .2);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: 0 18px 42px rgba(124, 45, 18, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-promo__col:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 54px rgba(249, 115, 22, 0.16);
}

.why-promo__icon {
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), #fb7185);
    width: 64px;
    height: 64px;
    border-radius: 50%;
}

.why-promo__col-title {
    font-family: var(--sans);
    color: var(--text-dark);
    font-size: 19px;
    font-weight: 900;
    margin-bottom: 12px;
    line-height: 1.3;
}

.why-promo__col-desc {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.why-promo__closing {
    color: var(--text-dark);
    font-size: 18px;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 760px;
    font-weight: 500;
    font-family: var(--serif);
}

@media (max-width: 900px) {
    .why-promo__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .why-promo {
        padding: 48px 20px;
    }
    .why-promo__title {
        margin-bottom: 32px;
    }
}

.hero__card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 32px;
    box-shadow: 0 1px 3px #0000000a, 0 8px 32px #0000000f
}

.hero__card-title {
    font-family: var(--serif);
    color: var(--text-dark);
    margin-bottom: 6px;
    font-size: 22px;
    font-weight: 400
}

.hero__card-subtitle {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 14px
}

.hero__card-form {
    flex-direction: column;
    gap: 12px;
    display: flex
}

.hero__card-input {
    font-family: var(--sans);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-warm);
    color: var(--text-dark);
    outline: none;
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    transition: border-color .25s, box-shadow .25s
}

.hero__card-input::placeholder {
    color: var(--text-light)
}

.hero__card-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px #1b6b5a14
}

.hero__card .btn--primary {
    width: 100%;
    margin-top: 4px;
    padding: 14px;
    font-size: 15px
}

.brand-statement {
    background: var(--bg-cream);
    padding: 56px 32px
}

.brand-statement__inner {
    text-align: center;
    max-width: 760px;
    margin: 0 auto
}

.brand-statement__quote {
    font-family: var(--serif);
    color: var(--text-dark);
    border: none;
    margin-bottom: 0;
    font-size: clamp(22px, 3.2vw, 32px);
    font-style: normal;
    font-weight: 400;
    line-height: 1.4
}

.comparison {
    background: var(--bg-warm);
    padding: var(--section-pad) 32px
}

.comparison__inner {
    max-width: 960px;
    margin: 0 auto
}

.comparison__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
    display: grid
}

.comparison__card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--border);
    padding: 32px
}

.comparison__card--bad {
    border-color: var(--danger-border);
    background: var(--danger-light)
}

.comparison__card--good {
    border-color: var(--success-border);
    background: var(--success-light)
}

.comparison__card-title {
    font-family: var(--serif);
    color: var(--text-dark);
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
    padding-bottom: 14px;
    font-size: 20px;
    font-weight: 400
}

.comparison__card--bad .comparison__card-title {
    border-bottom-color: var(--danger-border)
}

.comparison__card--good .comparison__card-title {
    border-bottom-color: var(--success-border)
}

.comparison__item {
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    display: flex
}

.comparison__item+.comparison__item {
    border-top: 1px solid #0000000a
}

.comparison__icon {
    border-radius: 50%;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 26px;
    height: 26px;
    margin-top: 2px;
    font-size: 13px;
    font-weight: 700;
    display: flex
}

.comparison__icon--bad {
    color: var(--danger);
    background: #ef44441f
}

.comparison__icon--good {
    color: var(--success);
    background: #10b9811f
}

.comparison__item-text h4 {
    font-family: var(--sans);
    color: var(--text-dark);
    margin-bottom: 3px;
    font-size: 15px;
    font-weight: 600
}

.comparison__item-text p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5
}

.process {
    background: var(--bg-white);
    padding: var(--section-pad) 32px
}

.process__inner {
    text-align: center;
    max-width: 980px;
    margin: 0 auto
}

.process__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    display: grid
}

.process__step {
    background: var(--bg-warm);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: left;
    padding: 28px 24px;
    transition: transform .3s, box-shadow .3s
}

.process__step:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px #0000000d
}

.process__number {
    background: var(--primary-subtle);
    border: 1.5px solid var(--primary);
    width: 38px;
    height: 38px;
    font-family: var(--sans);
    color: var(--primary);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex
}

.process__title {
    font-family: var(--serif);
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.3
}

.process__desc {
    font-family: var(--sans);
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7
}

.process__pricing {
    background: var(--bg-cream);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 520px;
    margin: 40px auto 16px;
    padding: 32px 24px
}

.process__pricing-badge {
    font-family: var(--sans);
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--success);
    background: var(--success-light);
    border: 1px solid var(--success-border);
    border-radius: 20px;
    margin-bottom: 20px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    display: inline-block
}

.process__pricing-amount {
    font-family: var(--serif);
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 38px;
    font-weight: 400;
    line-height: 1.2
}

.process__pricing-note {
    font-family: var(--sans);
    color: var(--text-muted);
    font-size: 15px
}

.process__divider {
    display: none
}

.services {
    background: var(--bg-page);
    padding: var(--section-pad) 32px
}

.services__inner {
    max-width: 980px;
    margin: 0 auto
}

.services__header {
    margin-bottom: 40px
}

.services__editorial {
    max-width: 980px;
    margin: 0 auto
}

.services__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    display: grid
}

.service-row {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    flex-direction: column;
    padding: 28px;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    display: flex;
    position: relative;
    overflow: hidden
}

.service-row:hover {
    border-color: var(--primary);
    padding-left: 28px;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px #0000000d
}

.service-row:before {
    display: none
}

.service-row__number {
    border-radius: var(--radius-sm);
    background: var(--primary-subtle);
    width: 34px;
    height: 34px;
    font-family: var(--sans);
    color: var(--primary);
    justify-content: center;
    align-items: center;
    margin-bottom: 14px;
    padding-top: 0;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex
}

.service-row__content {
    flex: 1
}

.service-row__title {
    font-family: var(--serif);
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3
}

.service-row__desc {
    font-family: var(--sans);
    color: var(--text-muted);
    max-width: none;
    font-size: 14px;
    line-height: 1.7
}

.service-row__link {
    font-family: var(--sans);
    color: var(--primary);
    white-space: nowrap;
    align-self: flex-start;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 14px;
    font-weight: 600;
    transition: gap .25s;
    display: inline-flex
}

.service-row__link:hover {
    color: var(--primary-hover);
    gap: 10px
}

.services__exotic {
    text-align: center;
    margin-top: 24px
}

.exotic-link {
    font-family: var(--sans);
    color: var(--text-muted);
    opacity: .8;
    font-size: 13px;
    text-decoration: underline;
    transition: color .2s
}

.exotic-link:hover {
    color: var(--primary);
    opacity: 1
}

.testimonials {
    background:
        linear-gradient(180deg, #fff 0%, var(--bg-warm) 100%);
    padding: var(--section-pad) 32px
}

.testimonials__inner {
    max-width: 980px;
    margin: 0 auto
}

.testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
    display: grid
}

.testimonial-card {
    background: rgba(255, 255, 255, .84);
    border: 1px solid rgba(249, 115, 22, .16);
    border-radius: var(--radius-lg);
    padding: 26px;
    transition: transform .3s, box-shadow .3s
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(124, 45, 18, .1)
}

.testimonial-card__stars {
    color: var(--sunshine);
    letter-spacing: 2px;
    margin-bottom: 14px;
    font-size: 15px
}

.testimonial-card__text {
    color: var(--text-body);
    margin-bottom: 18px;
    font-size: 15px;
    font-style: italic;
    line-height: 1.7
}

.testimonial-card__author {
    align-items: center;
    gap: 12px;
    display: flex
}

.testimonial-card__avatar {
    background: var(--primary-subtle);
    width: 38px;
    height: 38px;
    color: var(--primary);
    border: 1px solid #0f172a14;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    display: flex
}

.testimonial-card__author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-card__name {
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600
}

.testimonial-card__role {
    color: var(--text-muted);
    font-size: 12px
}

.about {
    background: var(--bg-dark);
    padding: var(--section-pad) 32px;
    overflow: hidden
}

.about__inner {
    max-width: 960px;
    margin: 0 auto
}

.about__top {
    text-align: center;
    margin-bottom: 52px
}

.about__label {
    font-family: var(--sans);
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff6;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 600
}

.about__headline {
    font-family: var(--serif);
    color: #fff;
    margin-bottom: 0;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 400;
    line-height: 1.2
}

.about__headline-accent {
    color: var(--accent);
    display: inline
}

.about__columns {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 48px;
    display: grid
}

.about__col--left {
    align-items: stretch;
    gap: 18px;
    padding-top: 4px;
    display: flex
}

.about__accent-line {
    background: linear-gradient(180deg, var(--primary) 0%, #0f172a33 100%);
    border-radius: 2px;
    flex-shrink: 0;
    width: 3px
}

.about__col--left:hover .about__accent-line {
    background: linear-gradient(180deg, var(--primary) 0%, #0f172a80 100%)
}

.about__pullquote {
    font-family: var(--serif);
    color: #ffffffd9;
    border: none;
    margin: 0;
    padding: 0;
    font-size: clamp(18px, 2.5vw, 22px);
    font-style: italic;
    font-weight: 400;
    line-height: 1.6
}

.about__col--right {
    padding-top: 4px
}

.about__body {
    color: #ffffffa6;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.8
}

.about__link {
    font-family: var(--sans);
    color: var(--accent);
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: gap .25s, color .25s;
    display: inline-flex
}

.about__link:hover {
    color: #d9896b;
    gap: 10px
}

.faq {
    background: var(--bg-page);
    padding: var(--section-pad) 32px
}

.faq__inner {
    max-width: 800px;
    margin: 0 auto
}

.faq__top {
    text-align: center;
    margin-bottom: 40px
}

.faq__accordion {
    flex-direction: column;
    gap: 16px;
    display: flex
}

.faq__item {
    background: rgba(255, 255, 255, .78);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: box-shadow .3s;
    overflow: hidden
}

.faq__item:hover {
    box-shadow: 0 4px 16px #00000008
}

.faq__summary {
    font-family: var(--sans);
    color: var(--text-dark);
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    font-size: 17px;
    font-weight: 600;
    list-style: none;
    display: flex;
    position: relative
}

.faq__summary::-webkit-details-marker {
    display: none
}

.faq__summary:after {
    content: "+";
    font-family: var(--sans);
    color: var(--accent);
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    transition: transform .3s, color .3s
}

.faq__item[open] .faq__summary:after {
    content: "−";
    color: var(--accent)
}

.faq__content {
    font-family: var(--sans);
    color: var(--text-muted);
    border-top: 1px solid #0000;
    padding: 0 24px 24px;
    font-size: 15px;
    line-height: 1.7
}

.faq__item[open] .faq__content {
    border-top-color: var(--border);
    margin-top: -4px;
    padding-top: 20px
}

.contact {
    background:
        radial-gradient(circle at center top, rgba(37, 99, 235, .12), transparent 28rem),
        var(--bg-white);
    padding: var(--section-pad) 32px
}

.contact__inner {
    text-align: center;
    max-width: 500px;
    margin: 0 auto
}

.contact__headline {
    font-family: var(--serif);
    color: var(--text-dark);
    margin-bottom: 12px;
    font-size: clamp(24px, 3.5vw, 34px);
    font-weight: 400
}

.contact__subtext {
    color: var(--text-muted);
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.7
}

.contact__fee-note {
    font-family: var(--sans);
    color: var(--primary);
    background: var(--success-light);
    border: 1px solid var(--success-border);
    border-radius: var(--radius-sm);
    margin-bottom: 28px;
    padding: 8px 16px;
    font-size: 13px;
    font-style: normal;
    line-height: 1.6;
    display: inline-block
}

.contact__form {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    display: flex
}

.contact__input,
.contact__textarea {
    font-family: var(--sans);
    border: 1.5px solid var(--border);
    background: var(--bg-warm);
    color: var(--text-dark);
    -webkit-appearance: none;
    appearance: none;
    border-radius: var(--radius-sm);
    outline: none;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 400;
    transition: border-color .25s, box-shadow .25s
}

.contact__input::placeholder,
.contact__textarea::placeholder {
    color: var(--text-light)
}

.contact__input:focus,
.contact__textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px #0f172a14
}

.contact__textarea {
    resize: vertical;
    min-height: 96px
}

.contact__form .btn--outline,
.contact__form .btn--primary {
    align-self: center;
    width: 100%
}

.contact__alt {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.8
}

.contact__alt a {
    color: var(--primary);
    font-weight: 500
}

.contact__alt a:hover {
    color: var(--primary-hover)
}

.contact__channels {
    letter-spacing: .02em;
    margin-top: 4px;
    font-size: 12px
}

.footer {
    background:
        radial-gradient(circle at 20% 0, rgba(255, 77, 0, .2), transparent 24rem),
        var(--bg-dark);
    text-align: center;
    padding: 48px 32px
}

.footer__inner {
    max-width: 960px;
    margin: 0 auto
}

.footer__wordmark {
    font-family: var(--serif);
    color: #fff;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 400
}

.footer__grid {
    text-align: left;
    margin-bottom: 32px;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 500px;
    margin-inline: auto;
    display: grid
}

.footer__heading {
    font-family: var(--sans);
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #fff;
    opacity: .9;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 700
}

.footer__links {
    flex-direction: column;
    gap: 10px;
    display: flex
}

.footer__links a {
    font-family: var(--sans);
    color: #fff6;
    font-size: 13px;
    font-weight: 500;
    transition: color .2s
}

.footer__links a:hover {
    color: #ffffffd9
}

.footer__contact {
    color: #ffffff80;
    font-size: 13px;
    margin-top: 16px
}

.footer__contact a {
    color: #ffffff80;
    text-decoration: none
}

.footer__contact a:hover {
    color: #ffffffcc
}

.footer__copy {
    color: #ffffff40;
    font-size: 12px
}

.service-area-map {
    background: var(--bg-warm);
    padding: var(--section-pad) 32px
}

.service-area-map__inner {
    max-width: 1160px;
    margin: 0 auto
}

.service-area-map__container {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    height: 450px;
    margin-top: 48px;
    overflow: hidden;
    box-shadow: 0 4px 20px #0000000d
}

.service-area-map__container iframe {
    border: 0;
    width: 100%;
    height: 100%
}

@media (width<=960px) {
    .hero__content {
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: center
    }

    .hero__text {
        text-align: center;
        max-width: 100%
    }

    .hero__subtext {
        margin-inline: auto
    }

    .hero__stats {
        justify-content: center
    }

    .hero__card {
        max-width: 460px;
        margin: 0 auto
    }

    .comparison__grid {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .services__list {
        grid-template-columns: 1fr
    }

    .about__columns {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .about__top {
        margin-bottom: 36px
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
        gap: 12px
    }
}

@media (width<=768px) {
    :root {
        --section-pad: var(--section-pad-mob)
    }

    .announcement-banner {
        display: none
    }

    .nav {
        top: 0
    }

    body {
        font-size: 15px
    }

    .nav__links {
        display: none
    }

    .nav__hamburger {
        display: flex
    }

    .nav__inner {
        padding: 14px 20px
    }

    .hero {
        min-height: auto;
        padding: 76px 20px 40px
    }

    .hero__card {
        display: none
    }

    .hero__headline {
        font-size: clamp(28px, 8vw, 40px);
        margin-bottom: 12px
    }

    .hero__subtext {
        font-size: 15px;
        margin-bottom: 18px
    }



    .hero__stats {
        flex-flow: wrap;
        justify-content: center;
        align-items: center;
        gap: 8px 18px;
        margin-top: 22px
    }

    .hero__stat-value {
        font-size: 22px
    }

    .hero__stat-label {
        font-size: 11px
    }

    .hero__stat-divider {
        display: none
    }

    .brand-statement {
        padding: 56px 20px
    }

    .brand-statement__quote {
        font-size: clamp(19px, 5vw, 26px)
    }

    .comparison {
        padding: var(--section-pad-mob) 20px
    }

    .comparison__card {
        padding: 24px
    }

    .process {
        padding: var(--section-pad-mob) 20px
    }

    .process__steps {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 16px;
        padding-bottom: 16px;
        margin-inline: -20px;
        padding-inline: 20px
    }

    .process__steps::-webkit-scrollbar {
        display: none
    }

    .process__step {
        flex: 0 0 85%;
        scroll-snap-align: center;
        min-width: 0
    }

    .services,
    .about,
    .faq,
    .testimonials {
        padding: var(--section-pad-mob) 20px
    }

    .testimonials__grid {
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 12px;
        margin-top: 32px;
        padding-bottom: 16px;
        display: flex;
        overflow-x: auto
    }

    .testimonials__grid::-webkit-scrollbar {
        display: none
    }

    .testimonial-card {
        scroll-snap-align: start;
        flex: 0 0 85%;
        min-width: 0
    }

    .contact {
        padding: var(--section-pad-mob) 20px
    }

    .contact__input,
    .contact__textarea {
        width: 100%
    }

    .footer {
        padding: 40px 20px
    }

    .footer__grid {
        text-align: center;
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 24px
    }

    .footer__links {
        align-items: center
    }

    .section-heading {
        font-size: clamp(22px, 5vw, 30px)
    }

    .service-row {
        padding: 24px
    }

    .service-row:hover {
        padding-left: 24px
    }
}

.section-cta-container {
    text-align: center;
    border-top: 1px solid var(--border);
    margin-top: 48px;
    padding-top: 32px
}

.faq__cta-heading {
    font-family: var(--serif);
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: clamp(20px, 4vw, 26px);
    font-weight: 400
}

.sticky-cta {
    background: rgba(255, 255, 255, .92);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    z-index: 1100;
    border-top: 1px solid var(--border);
    width: 100%;
    padding: 12px 20px;
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    box-shadow: 0 -4px 20px #00000014
}

@media (width<=768px) {
    .sticky-cta {
        animation: .4s cubic-bezier(.16, 1, .3, 1) slideUp;
        display: block
    }

    body {
        padding-bottom: 74px
    }

    .hero {
        min-height: auto;
        padding-top: 120px
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(100%)
    }

    to {
        transform: translateY(0)
    }
}

.sticky-cta__inner {
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
    display: flex
}

.sticky-cta__text {
    font-family: var(--sans);
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2
}

.sticky-cta .btn--primary {
    background: linear-gradient(135deg, var(--accent), #fb7185);
    white-space: nowrap;
    border-radius: var(--radius-sm);
    box-shadow: none;
    padding: 10px 18px;
    font-size: 14px
}

.sticky-cta .btn--primary:hover {
    background: linear-gradient(135deg, #f97316, #e11d48);
    opacity: .9;
    transform: none
}

.services__all-link {
    font-family: var(--sans);
    color: var(--accent);
    border-bottom: 1.5px solid #0000;
    margin-top: 24px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color .25s;
    display: inline-block
}

.services__all-link:hover {
    border-bottom-color: var(--accent)
}

.section-cta-container .services__all-link {
    margin-top: 16px;
    display: block
}

.selection {
    background: var(--bg-warm);
    flex-direction: column;
    align-items: center;
    min-height: auto;
    padding: clamp(90px, 9vw, 100px) 32px 24px;
    display: flex
}

.selection__header {
    text-align: center;
    max-width: 600px;
    margin-bottom: 16px
}

.selection__header .section-heading {
    font-size: clamp(24px, 4vw, 32px)
}

.selection__header .section-subtext {
    margin: 4px auto 0;
    line-height: 1.4;
    font-size: 15px
}

.selection__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1000px;
    display: grid
}

.selection__card {
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    flex-direction: column;
    padding: 20px;
    transition: all .3s;
    display: flex;
    position: relative;
    overflow: hidden
}

.selection__card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px #0f172a14
}

.selection__card--featured {
    border-color: #38bdf8;
    background: var(--bg-dark);
    color: #fff;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.25)
}

.selection__card--featured:hover {
    border-color: var(--accent);
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 32px 64px rgba(15, 23, 42, 0.35)
}

.selection__card--featured .selection__title, 
.selection__card--featured .selection__price {
    color: #fff;
}

.selection__card--featured .selection__desc {
    color: #cbd5e1;
}

.selection__card--featured .selection__price-label {
    color: #94a3b8;
}

.selection__card--featured .selection__feature {
    color: #f1f5f9;
}

.selection__card--featured .selection__feature-icon {
    color: #38bdf8;
}

.selection__card--featured:before {
    content: "Most Popular";
    background: linear-gradient(135deg, #38bdf8, var(--accent));
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .1em;
    z-index: 3;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 24px;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    position: absolute;
    top: 29px;
    right: -59px;
    transform: rotate(45deg);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.5)
}

.selection__card-icon {
    background: var(--primary-subtle);
    width: 40px;
    height: 40px;
    color: var(--primary);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    display: flex
}

.selection__card--featured .selection__card-icon {
    background: linear-gradient(135deg, #38bdf8, var(--accent));
    color: #fff
}

.selection__price {
    font-family: var(--serif);
    color: var(--text-dark);
    margin: 2px 0 10px;
    font-size: 26px;
    font-weight: 400
}

.selection__title {
    font-family: var(--serif);
    color: var(--text-dark);
    margin-bottom: 6px;
    font-size: 20px;
    font-weight: 400
}

.selection__desc {
    color: var(--text-muted);
    min-height: 96px;
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.5
}

.selection__features {
    flex-direction: column;
    gap: 5px;
    margin-bottom: 16px;
    flex-grow: 1;
    display: flex
}

.selection__feature {
    color: var(--text-body);
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    display: flex
}

.selection__feature-icon {
    color: var(--success);
    font-weight: 800
}

.selection__card .btn--primary,
.selection__card .btn--outline {
    width: 100%;
    padding: 12px;
    font-size: 14px
}

.selection__grid--three {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1160px
}

.selection__grid--four {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1440px
}

.selection__card--ultimate {
    border-color: #b8860b;
    background: linear-gradient(135deg, #fffdf5, #fff9e6)
}

.selection__card--ultimate:before {
    content: "White Glove";
    background: linear-gradient(135deg, #b8860b, #d4a017);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .1em;
    z-index: 1;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 24px;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    position: absolute;
    top: 29px;
    right: -59px;
    transform: rotate(45deg);
    box-shadow: 0 2px 4px #0000001a
}

.selection__card--ultimate .selection__card-icon {
    background: linear-gradient(135deg, #b8860b, #d4a017);
    color: #fff
}

.selection__card--ultimate:hover {
    border-color: #d4a017;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px #b8860b1a
}

.selection__credit-note {
    font-family: var(--sans);
    color: var(--success);
    background: var(--success-light);
    border: 1px solid var(--success-border);
    border-radius: var(--radius-sm);
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    display: flex
}

@media (width<=960px) {
    .selection__grid--three {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-inline: auto
    }

    .selection__grid--four {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin-inline: auto
    }
}

@media (width<=600px) {
    .selection__grid--four {
        grid-template-columns: 1fr;
        max-width: 500px
    }
}

@media (width<=768px) {
    .selection__grid {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .selection__card {
        padding: 24px
    }

    .selection {
        padding: 100px 24px 32px
    }
}

.calendly-section {
    z-index: 1;
    scroll-margin-top: 100px;
    position: relative
}

.calendly-section__header {
    max-width: 640px;
    margin: 0 auto 40px
}

.breadcrumb {
    background: 0 0;
    padding: 96px 0 0
}

.breadcrumb__inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 32px
}

.breadcrumb ol {
    color: var(--text-light);
    font-size: 12px;
    font-family: var(--sans);
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex
}

.breadcrumb li+li:before {
    content: "›";
    color: var(--text-light);
    font-size: 13px
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color .2s
}

.breadcrumb a:hover {
    color: var(--text-dark)
}

.breadcrumb li[aria-current=page] {
    color: var(--text-body);
    font-weight: 500
}

.hero .breadcrumb {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 96px 0 0;
    z-index: 2;
    background: none
}

.hero .breadcrumb ol {
    color: rgba(255, 255, 255, 0.5)
}

.hero .breadcrumb li+li:before {
    color: rgba(255, 255, 255, 0.5)
}

.hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.65)
}

.hero .breadcrumb a:hover {
    color: #fff
}

.hero .breadcrumb li[aria-current=page] {
    color: rgba(255, 255, 255, 0.85)
}

.cities {
    background:
        radial-gradient(circle at 80% 10%, rgba(255, 77, 0, .12), transparent 24rem),
        var(--bg-white);
    padding: var(--section-pad) 32px
}

.cities__inner {
    max-width: 1160px;
    margin: 0 auto
}

.cities__grid {
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 12px;
    margin-top: 40px;
    display: grid
}

.city-card {
    background: rgba(255, 248, 241, .8);
    border: 1.5px solid rgba(249, 115, 22, .18);
    border-radius: var(--radius-lg);
    color: inherit;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    text-decoration: none;
    transition: background .2s, border-color .25s, transform .2s, box-shadow .2s;
    display: flex
}

.city-card:hover {
    background: var(--bg-white);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(249, 115, 22, .14)
}

.city-card__text {
    flex-direction: column;
    gap: 3px;
    display: flex
}

.city-card__name {
    font-family: var(--serif);
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2
}

.city-card__desc {
    color: var(--text-muted);
    font-size: 12px;
    font-family: var(--sans);
    letter-spacing: .02em
}

.city-card__arrow {
    color: var(--accent);
    opacity: .5;
    flex-shrink: 0;
    font-size: 18px;
    transition: opacity .2s, transform .2s
}

.city-card:hover .city-card__arrow {
    opacity: 1;
    transform: translate(4px)
}

@media (width<=768px) {
    .cities {
        padding: var(--section-pad-mob) 20px
    }

    .cities__grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px
    }

    .city-card {
        padding: 16px 18px
    }

    .city-card__name {
        font-size: 15px
    }

    .breadcrumb__inner {
        padding: 0 20px
    }

    .breadcrumb {
        padding-top: 54px
    }

    .hero .breadcrumb {
        padding-top: 54px
    }
}

@media (width<=480px) {
    .cities__grid {
        grid-template-columns: 1fr
    }
}

.about-hero {
    background: var(--bg-warm);
    border-bottom: 1px solid var(--border);
    padding: 140px 32px 72px
}

.about-hero__inner {
    max-width: 720px;
    margin: 0 auto
}

.about-hero .section-label {
    text-align: left
}

.about-hero__headline {
    font-family: var(--serif);
    color: var(--text-dark);
    letter-spacing: -.02em;
    margin: 12px 0 20px;
    font-size: clamp(40px, 5.5vw, 60px);
    font-weight: 400;
    line-height: 1.1
}

.about-hero__headline span {
    color: var(--primary)
}

.about-hero__subtext {
    color: var(--text-muted);
    max-width: 580px;
    font-size: 18px;
    line-height: 1.7
}

.founder-story {
    background: var(--bg-white);
    padding: var(--section-pad) 32px
}

.founder-story__inner {
    max-width: 1160px;
    margin: 0 auto
}

.founder-stats {
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-bottom: 64px;
    display: grid;
    overflow: hidden
}

.founder-stat {
    background: var(--bg-white);
    text-align: center;
    padding: 32px
}

.founder-stat__value {
    font-family: var(--serif);
    color: var(--text-dark);
    letter-spacing: -.02em;
    margin-bottom: 10px;
    font-size: clamp(40px, 5vw, 56px);
    line-height: 1
}

.founder-stat__label {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4
}

.founder-story__content {
    max-width: 720px
}

.founder-story__name {
    font-family: var(--serif);
    color: var(--text-dark);
    letter-spacing: -.01em;
    margin-bottom: 24px;
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 400
}

.founder-story__body p {
    color: var(--text-body);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.85
}

.founder-story__body p:last-child {
    margin-bottom: 0
}

.team-section {
    background: var(--bg-warm);
    padding: var(--section-pad) 32px
}

.team-section__inner {
    max-width: 1160px;
    margin: 0 auto
}

.team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 44px;
    display: grid
}

.team-card {
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    align-items: flex-start;
    gap: 20px;
    padding: 32px;
    transition: border-color .25s, box-shadow .25s;
    display: flex
}

.team-card:hover {
    border-color: var(--primary);
    box-shadow: 0 6px 20px #0f172a12
}

.team-card__avatar {
    background: var(--bg-warm);
    border: 2px solid var(--border);
    width: 54px;
    height: 54px;
    font-family: var(--serif);
    color: var(--text-dark);
    letter-spacing: -.02em;
    border-radius: 50%;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    display: flex
}

.team-card__name {
    font-family: var(--serif);
    color: var(--text-dark);
    margin-bottom: 4px;
    font-size: 20px;
    font-weight: 400
}

.team-card__role {
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--accent);
    margin-bottom: 14px;
    font-size: 11px;
    font-weight: 600
}

.team-card__bio {
    color: var(--text-muted);
    margin: 0;
    font-size: 14px;
    line-height: 1.75
}

.about-values {
    background: var(--bg-white);
    padding: var(--section-pad) 32px
}

.about-values__inner {
    max-width: 1160px;
    margin: 0 auto
}

.about-values__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 44px;
    display: grid
}

.about-value-card {
    background: var(--bg-warm);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: border-color .25s, transform .25s, box-shadow .25s
}

.about-value-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px #0f172a12
}

.about-value-card__icon {
    margin-bottom: 16px;
    font-size: 28px;
    display: block
}

.about-value-card__title {
    font-family: var(--serif);
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 400
}

.about-value-card__desc {
    color: var(--text-muted);
    margin: 0;
    font-size: 14px;
    line-height: 1.75
}

@media (width<=768px) {
    .about-hero {
        padding: 120px 20px 52px
    }

    .founder-stats,
    .team-grid,
    .about-values__grid {
        grid-template-columns: 1fr
    }

    .founder-story,
    .team-section,
    .about-values {
        padding: var(--section-pad-mob) 20px
    }

    .team-card {
        flex-direction: column
    }
}

.blog-series {
    padding: var(--section-pad) 32px;
    background: var(--bg-white)
}

.blog-series:nth-child(2n) {
    background: var(--bg-warm)
}

.blog-series__inner {
    max-width: 1040px;
    margin: 0 auto
}

.blog-series__grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 40px;
    display: grid
}

.blog-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    flex-direction: column;
    height: 100%;
    padding: 32px;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    display: flex
}

.blog-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px #0f172a14
}

.blog-card__category {
    font-family: var(--sans);
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 700
}

.blog-card__title {
    font-family: var(--serif);
    color: var(--text-dark);
    margin-bottom: 14px;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.3
}

.blog-card__excerpt {
    color: var(--text-muted);
    flex-grow: 1;
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.6
}

.blog-card__link {
    font-family: var(--sans);
    color: var(--primary);
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex
}

.blog-card__link:after {
    content: "→";
    transition: transform .2s
}

.blog-card:hover .blog-card__link:after {
    transform: translate(4px)
}

.article-header {
    background: var(--bg-warm);
    text-align: center;
    padding: 140px 20px 60px
}

.article-header__inner {
    max-width: 800px;
    margin: 0 auto
}

.article-title {
    font-family: var(--serif);
    color: var(--text-dark);
    letter-spacing: -.01em;
    margin: 20px 0;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 400;
    line-height: 1.15
}

.article-meta {
    color: var(--text-muted);
    justify-content: center;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    display: flex
}

.article-content {
    background: var(--bg-page);
    padding: 60px 20px 100px
}

.article-content__inner {
    max-width: 740px;
    font-family: var(--sans);
    color: var(--text-body);
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8
}

.article-content__inner h2 {
    font-family: var(--serif);
    color: var(--text-dark);
    margin: 48px 0 24px;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.3
}

.article-content__inner h3 {
    font-family: var(--serif);
    color: var(--text-dark);
    margin: 36px 0 16px;
    font-size: 22px;
    font-weight: 400
}

.article-content__inner p {
    margin-bottom: 24px
}

.article-content__inner ul,
.article-content__inner ol {
    margin: 0 0 24px 24px;
    padding: 0
}

.article-content__inner li {
    margin-bottom: 12px
}

.article-content__inner blockquote {
    border-left: 4px solid var(--accent);
    color: var(--text-dark);
    margin: 32px 0;
    padding-left: 24px;
    font-size: 20px;
    font-style: italic
}

.article-content__inner .highlight-box {
    background: var(--bg-cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin: 32px 0;
    padding: 24px
}

/* ===== TRANSFORMATION JOURNEY SECTION ===== */
.transform {
    background: #0b1120;
    padding: var(--section-pad) 32px;
    position: relative;
    overflow: hidden
}

.transform:before {
    content: "";
    position: absolute;
    top: -30%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #2563eb0d 0%, transparent 70%);
    pointer-events: none
}

.transform:after {
    content: "";
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #10b9810a 0%, transparent 70%);
    pointer-events: none
}

.transform__inner {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.transform__label {
    font-family: var(--sans);
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #cbd5e1;
    text-align: center;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 600
}

.transform__heading {
    font-family: var(--serif);
    color: #f1f5f9;
    text-align: center;
    letter-spacing: -.01em;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 400;
    line-height: 1.2
}

.transform__subtext {
    color: #cbd5e1;
    text-align: center;
    max-width: 560px;
    margin: 14px auto 0;
    font-size: 16px;
    line-height: 1.7
}

.transform__rows {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 48px
}

.transform__row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px
}

.transform__bad {
    font-size: clamp(26px, 4vw, 40px);
    color: #cbd5e1;
    font-family: var(--serif);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease
}

.transform__bad .strike {
    position: relative;
    display: inline-block
}

.transform__bad .strike::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 4px;
    border-radius: 2px;
    background-color: #ef4444;
    transition: width .7s cubic-bezier(.65, 0, .35, 1) .6s
}

.transform__arrow {
    font-size: clamp(20px, 3vw, 32px);
    color: #334155;
    font-family: var(--sans);
    opacity: 0;
    transition: opacity .5s ease .3s
}

.transform__good {
    font-size: clamp(30px, 5vw, 48px);
    font-weight: 700;
    font-family: var(--serif);
    color: #ffffff;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease .4s, transform .5s ease .4s
}

.transform__row.visible .transform__bad {
    opacity: 1;
    transform: translateY(0)
}

.transform__row.visible .transform__bad .strike::after {
    width: 100%
}

.transform__row.visible .transform__arrow {
    opacity: 1
}

.transform__row.visible .transform__good {
    opacity: 1;
    transform: translateY(0)
}

/* CTA */
.transform__cta {
    text-align: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #1e293b
}

.transform__btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    box-shadow: 0 4px 16px #2563eb40
}

.transform__btn:hover {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px #2563eb50
}

/* Mobile responsive */
@media (width<=768px) {
    .transform {
        padding: var(--section-pad-mob) 20px
    }

    .transform__rows {
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 16px;
        margin-top: 32px;
        padding-bottom: 24px;
        margin-inline: -20px;
        padding-inline: 20px
    }

    .transform__rows::-webkit-scrollbar {
        display: none
    }

    .transform__row {
        flex: 0 0 85%;
        scroll-snap-align: center;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        text-align: center;
        margin-bottom: 0;
        background: rgba(255, 255, 255, 0.03);
        padding: 40px 24px;
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.05)
    }

    .transform__arrow {
        transform: rotate(90deg)
    }
}

/* --- Transform carousel: pagination dots & swipe hint (mobile only) --- */
.transform__dots {
    display: none
}

.transform__swipe-hint {
    display: none
}

@media (width<=768px) {
    .transform__dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 16px
    }

    .transform__dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        transition: all .3s ease;
        cursor: pointer
    }

    .transform__dot.active {
        width: 24px;
        border-radius: 4px;
        background: rgba(255, 255, 255, 0.7)
    }

    .transform__swipe-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        margin-top: 12px;
        color: rgba(255, 255, 255, 0.45);
        font-family: var(--sans);
        font-size: 13px;
        font-weight: 500;
        letter-spacing: .02em;
        animation: swipeNudge 2s ease-in-out infinite;
        transition: opacity .5s ease
    }

    .transform__swipe-hint.hidden {
        opacity: 0;
        pointer-events: none
    }

    .transform__swipe-icon {
        animation: swipeArrow 2s ease-in-out infinite
    }
}

@keyframes swipeNudge {

    0%,
    100% {
        opacity: .45
    }

    50% {
        opacity: .8
    }
}

@keyframes swipeArrow {

    0%,
    100% {
        transform: translateX(0)
    }

    50% {
        transform: translateX(4px)
    }
}

/* ===== PRICING TOGGLE ===== */
.pricing-toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.pricing-toggle {
    display: inline-flex;
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: 40px;
    padding: 6px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.pricing-toggle-btn {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
    background: transparent;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 1;
}

.pricing-toggle-btn:hover:not(.active) {
    color: var(--text-dark);
}

.pricing-toggle-btn.active {
    color: #fff;
    background: var(--primary);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.pricing-tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    width: 100%;
}

.pricing-tab-content.active {
    display: block;
    opacity: 1;
    animation: fadeInTab 0.4s ease forwards;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.selection__grid--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin-inline: auto;
}

@media (width <=768px) {
    .selection__grid--two {
        grid-template-columns: 1fr;
    }
}

/* Free consultation card highlight */
.selection__card--free {
    border-color: var(--success);
    background: var(--success-light);
    position: relative;
    overflow: hidden
}

.selection__card--free .selection__card-icon {
    background: var(--success);
    color: #fff
}

.selection__card--free:hover {
    border-color: var(--success);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px #10b98120
}

/* Hero secondary consultation link */
.hero__cta-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px
}

@media (max-width: 960px) {
    .hero__cta-group {
        align-items: center
    }
}

.hero__consult-link {
    color: var(--accent);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    font-family: var(--sans);
    transition: color .2s
}

.hero__consult-link:hover {
    color: #93c5fd;
    text-decoration: underline
}

.cities__bg-wrapper {
    width: 100%;
    margin-top: 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-image: linear-gradient(rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.4)), url('https://i.imgur.com/luaJenu.jpg');
    background-size: cover;
    background-position: center;
    padding: clamp(24px, 4vw, 40px)
}

.cities__bg-wrapper .cities__grid {
    margin-top: 0
}

/* ===== HERO TEXT OVERRIDES FOR BACKGROUND IMAGE ===== */
.hero .hero__headline {
    color: #fff;
    font-weight: 800;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.4)
}

.hero .hero__headline span {
    color: #fff;
    font-weight: 800
}

.hero .hero__subtext {
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.4);
    font-weight: 500
}

.hero .hero__stats {
    border-top-color: rgba(255, 255, 255, 0.2)
}

.hero .hero__stat-value {
    color: #fff
}

.hero .hero__stat-label {
    color: rgba(255, 255, 255, 0.65)
}

.hero .hero__stat-divider {
    background: rgba(255, 255, 255, 0.2)
}

.hero .hero__consult-link {
    color: #93c5fd
}

.hero .hero__card {
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.3)
}

/* Nav over hero - white text before scroll */
.nav:not(.scrolled) .nav__wordmark {
    color: #fff
}

.nav:not(.scrolled) .nav__links a:not(.nav__cta) {
    color: rgba(255, 255, 255, 0.85)
}

.nav:not(.scrolled) .nav__links a:not(.nav__cta):hover {
    color: #fff
}

.nav:not(.scrolled) .nav__hamburger span {
    background: #fff
}

/* =============================================
   PAYMENT SUCCESS & ONBOARDING
   ============================================= */

/* ---- Hero ---- */
.ps-hero {
    padding: 120px 20px 60px;
    text-align: center;
    background: var(--bg-warm)
}

.ps-hero__inner {
    max-width: 620px;
    margin: 0 auto
}

.ps-hero__checkmark {
    margin-bottom: 20px;
    animation: psPopIn .5s cubic-bezier(.34, 1.56, .64, 1) both
}

.ps-hero__headline {
    font-family: var(--serif);
    color: var(--text-dark);
    font-size: clamp(28px, 4.5vw, 42px);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 12px
}

.ps-hero__sub {
    font-size: 18px;
    color: var(--text-body);
    margin-bottom: 10px
}

.ps-hero__receipt {
    font-size: 14px;
    color: var(--text-muted)
}

@keyframes psPopIn {
    0% {
        opacity: 0;
        transform: scale(.5)
    }

    100% {
        opacity: 1;
        transform: scale(1)
    }
}

/* ---- Timeline ---- */
.ps-timeline {
    padding: var(--section-pad) 20px;
    background: var(--bg-page)
}

.ps-timeline__inner {
    max-width: 680px;
    margin: 0 auto
}

.ps-timeline__steps {
    list-style: none;
    margin-top: 48px;
    padding-left: 0;
    position: relative
}

.ps-timeline__steps::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border)
}

.ps-timeline__step {
    display: flex;
    gap: 20px;
    margin-bottom: 36px;
    position: relative
}

.ps-timeline__step:last-child {
    margin-bottom: 0
}

.ps-timeline__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-cream);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    position: relative;
    z-index: 1
}

.ps-timeline__step--active .ps-timeline__icon {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff
}

.ps-timeline__content h3 {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 4px
}

.ps-timeline__content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6
}

/* ---- Onboarding Form Section ---- */
.ps-onboarding {
    padding: var(--section-pad) 20px;
    background: var(--bg-warm)
}

.ps-onboarding__inner {
    max-width: 720px;
    margin: 0 auto
}

.ps-form {
    margin-top: 40px
}

.ps-form__fieldset {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px 24px;
    margin-bottom: 28px;
    background: var(--bg-white)
}

.ps-form__legend {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 0 8px
}

.ps-form__row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px
}

.ps-form__row--two>* {
    flex: 1
}

.ps-form__group {
    margin-bottom: 16px
}

.ps-form__label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px
}

.ps-form__hint {
    font-weight: 400;
    color: var(--text-muted)
}

.ps-form__input,
.ps-form__select,
.ps-form__textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--sans);
    font-size: 15px;
    color: var(--text-body);
    background: var(--bg-warm);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: border-color .2s, box-shadow .2s;
    -webkit-appearance: none;
    appearance: none
}

.ps-form__input:focus,
.ps-form__select:focus,
.ps-form__textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .12)
}

.ps-form__input::placeholder,
.ps-form__textarea::placeholder {
    color: var(--text-light)
}

.ps-form__select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%2364748b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px
}

.ps-form__textarea {
    resize: vertical;
    min-height: 80px
}

.ps-form__checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    margin-top: 4px
}

.ps-form__checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-body);
    cursor: pointer
}

.ps-form__checkbox-label input[type="checkbox"] {
    accent-color: var(--accent);
    width: 16px;
    height: 16px;
    cursor: pointer
}

.ps-form__submit {
    width: 100%;
    margin-top: 8px;
    padding: 16px;
    font-size: 16px
}

/* ---- Form Success State ---- */
.ps-form-success {
    text-align: center;
    padding: 48px 20px
}

.ps-form-success__icon {
    margin-bottom: 16px;
    animation: psPopIn .5s cubic-bezier(.34, 1.56, .64, 1) both
}

.ps-form-success__headline {
    font-family: var(--serif);
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 12px
}

.ps-form-success__body {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto 8px
}

.ps-form-success__body--muted {
    font-size: 14px;
    color: var(--text-muted)
}

.ps-form-success__body a {
    color: var(--accent);
    text-decoration: underline
}

/* ---- Responsive ---- */
@media(max-width:640px) {
    .ps-form__row--two {
        flex-direction: column;
        gap: 0
    }

    .ps-form__fieldset {
        padding: 20px 16px 16px
    }

    .ps-form__checkbox-grid {
        grid-template-columns: 1fr
    }

    .ps-timeline__steps::before {
        left: 19px
    }

    .ps-hero {
        padding: 100px 16px 40px
    }
}

/* ===== LEGAL / POLICY PAGE ===== */
.legal-hero {
    padding: 120px 32px 48px;
    text-align: center;
    background: var(--bg-warm)
}

.legal-hero__inner {
    max-width: 680px;
    margin: 0 auto
}

.legal-section {
    padding: 48px 32px
}

.legal-section__inner {
    max-width: 720px;
    margin: 0 auto
}

.legal-section__heading {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px
}

.legal-section__updated {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px
}

.legal-section__inner h3 {
    font-family: var(--sans);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 28px 0 8px
}

.legal-section__inner p {
    font-family: var(--sans);
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 12px
}

.legal-section__inner ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px
}

.legal-section__inner ul li {
    font-family: var(--sans);
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 6px
}

.legal-section__inner a {
    color: var(--accent);
    text-decoration: underline
}

.legal-section+.legal-section {
    border-top: 1px solid var(--primary-subtle)
}

@media(max-width:640px) {
    .legal-hero {
        padding: 100px 20px 32px
    }

    .legal-section {
        padding: 32px 20px
    }

    .legal-section__heading {
        font-size: 22px
    }
}

/* =============================================
   INLINE-STYLE REPLACEMENTS (class-based)
   ============================================= */
.contact--inquiry {
    padding-top: 140px;
    min-height: 80vh
}

.contact--blog-cta {
    padding: 80px 20px
}

.success-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px
}

.success-hero__inner {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem
}

.success-hero__headline {
    margin-bottom: 1rem
}

.success-hero__body {
    margin-bottom: 2rem
}

.success-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center
}

/* Touch targets: ensure 44px minimum across all viewports */
.btn--primary,
.btn--outline {
    min-height: 48px
}

.faq__summary {
    min-height: 48px
}

/* =============================================
   MOBILE OPTIMIZATION — 768px additions
   ============================================= */
@media(max-width:768px) {
    .contact--inquiry {
        padding-top: 100px;
        min-height: auto
    }

    .contact--blog-cta {
        padding: 48px 20px
    }

    .success-hero {
        margin-top: 60px;
        min-height: 60vh
    }

    .blog-series__grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .article-content__inner {
        font-size: 17px
    }

    .article-content__inner h2 {
        font-size: 26px;
        margin: 40px 0 20px
    }
}

/* =============================================
   MOBILE OPTIMIZATION — 480px & below
   ============================================= */
@media(max-width:480px) {

    /* --- Global spacing & typography --- */
    body {
        font-size: 15px
    }

    .section-heading {
        font-size: clamp(20px, 5.5vw, 26px)
    }

    .section-subtext {
        font-size: 15px;
        margin-top: 10px
    }

    /* --- Navigation --- */
    .nav__inner {
        padding: 12px 16px
    }

    /* --- Breadcrumb --- */
    .breadcrumb {
        padding-top: 50px
    }

    .hero .breadcrumb {
        padding-top: 50px
    }

    /* --- Hero --- */
    .hero {
        padding: 68px 16px 40px
    }

    .hero__headline {
        font-size: clamp(26px, 7.5vw, 34px)
    }

    .hero__subtext {
        font-size: 15px;
        margin-bottom: 24px
    }

    .hero__stats {
        gap: 10px 16px;
        margin-top: 24px;
        padding-top: 20px
    }

    .hero__stat-value {
        font-size: 22px
    }

    .hero__cta-group {
        align-items: center;
        width: 100%
    }

    .hero .btn--primary {
        justify-content: center;
        padding: 16px 24px;
        font-size: 16px
    }

    .hero__consult-link {
        text-align: center;
        font-size: 14px
    }

    /* --- Brand statement --- */
    .brand-statement {
        padding: 40px 16px
    }

    .brand-statement__quote {
        font-size: clamp(18px, 4.5vw, 24px)
    }

    /* --- Comparison --- */
    .comparison {
        padding: var(--section-pad-mob) 16px
    }

    .comparison__card {
        padding: 20px
    }

    /* --- Process --- */
    .process {
        padding: var(--section-pad-mob) 16px
    }

    .process__step {
        padding: 22px 18px
    }

    .process__title {
        font-size: 17px
    }

    .process__pricing {
        padding: 24px 18px
    }

    .process__pricing-amount {
        font-size: 32px
    }

    /* --- Services --- */
    .services {
        padding: var(--section-pad-mob) 16px
    }

    .service-row {
        padding: 20px 18px
    }

    .service-row:hover {
        padding-left: 18px
    }

    .service-row__title {
        font-size: 18px
    }

    /* --- Testimonials --- */
    .testimonials {
        padding: var(--section-pad-mob) 16px
    }

    .testimonial-card {
        flex: 0 0 90%;
        padding: 22px
    }

    .testimonial-card__text {
        font-size: 14px
    }

    /* --- About (dark section on homepage) --- */
    .about {
        padding: var(--section-pad-mob) 16px
    }

    .about__pullquote {
        font-size: clamp(16px, 4vw, 20px)
    }

    .about__body {
        font-size: 14px
    }

    /* --- FAQ --- */
    .faq {
        padding: var(--section-pad-mob) 16px
    }

    .faq__summary {
        padding: 20px 16px;
        font-size: 15px
    }

    .faq__content {
        padding: 0 16px 20px;
        font-size: 14px
    }

    .faq__cta-heading {
        font-size: clamp(18px, 5vw, 24px)
    }

    /* --- Contact form --- */
    .contact {
        padding: var(--section-pad-mob) 16px
    }

    .contact__headline {
        font-size: clamp(22px, 5vw, 28px)
    }

    .contact__input,
    .contact__textarea {
        padding: 14px 14px;
        font-size: 16px
    }

    /* --- Footer --- */
    .footer {
        padding: 32px 16px
    }

    .footer__grid {
        gap: 20px
    }

    /* --- Pricing / Schedule page --- */
    .selection {
        padding: 80px 16px 24px
    }

    .selection__card {
        padding: 20px
    }

    .selection__price {
        font-size: clamp(28px, 8vw, 36px)
    }

    .pricing-toggle-btn {
        padding: 10px 20px;
        font-size: 14px
    }

    /* --- Cities grid --- */
    .cities {
        padding: var(--section-pad-mob) 16px
    }

    .city-card {
        padding: 14px 16px
    }

    .city-card__name {
        font-size: 14px
    }

    /* --- Blog series grid: prevent overflow --- */
    .blog-series {
        padding: var(--section-pad-mob) 16px
    }

    .blog-series__grid {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .blog-card {
        padding: 24px
    }

    .blog-card__title {
        font-size: 19px
    }

    .blog-card__excerpt {
        font-size: 14px
    }

    /* --- Article pages --- */
    .article-header {
        padding: 100px 16px 40px
    }

    .article-title {
        font-size: clamp(24px, 6vw, 32px)
    }

    .article-content {
        padding: 40px 16px 60px
    }

    .article-content__inner {
        font-size: 16px;
        line-height: 1.75
    }

    .article-content__inner h2 {
        font-size: 22px;
        margin: 36px 0 18px
    }

    .article-content__inner h3 {
        font-size: 18px;
        margin: 28px 0 12px
    }

    .article-content__inner blockquote {
        font-size: 17px;
        padding-left: 18px;
        margin: 24px 0
    }

    .article-content__inner .highlight-box {
        padding: 18px
    }

    /* --- About page --- */
    .about-hero {
        padding: 100px 16px 48px
    }

    .about-hero__headline {
        font-size: clamp(32px, 7vw, 44px)
    }

    .about-hero__subtext {
        font-size: 16px
    }

    .founder-story {
        padding: var(--section-pad-mob) 16px
    }

    .founder-stats {
        margin-bottom: 40px
    }

    .founder-stat {
        padding: 24px 16px
    }

    .founder-stat__value {
        font-size: clamp(32px, 8vw, 44px)
    }

    .team-section {
        padding: var(--section-pad-mob) 16px
    }

    .team-card {
        padding: 24px
    }

    .team-card__name {
        font-size: 18px
    }

    .about-values {
        padding: var(--section-pad-mob) 16px
    }

    .about-value-card {
        padding: 22px 18px
    }

    /* --- Service area map --- */
    .service-area-map {
        padding: var(--section-pad-mob) 16px
    }

    .service-area-map__container {
        height: 320px;
        margin-top: 32px
    }

    /* --- Transform section --- */
    .transform {
        padding: var(--section-pad-mob) 16px
    }

    .transform__bad {
        font-size: clamp(20px, 5vw, 30px)
    }

    .transform__good {
        font-size: clamp(24px, 6vw, 36px)
    }

    .transform__row {
        margin-bottom: 24px
    }

    /* --- Breadcrumb --- */
    .breadcrumb__inner {
        padding: 0 16px
    }

    /* --- Payment success --- */
    .ps-hero {
        padding: 80px 16px 32px
    }

    .ps-hero__sub {
        font-size: 16px
    }

    .ps-timeline {
        padding: var(--section-pad-mob) 16px
    }

    .ps-onboarding {
        padding: var(--section-pad-mob) 16px
    }

    /* --- Calendly widget responsive height --- */
    .calendly-inline-widget {
        min-width: 0 !important;
        height: 550px !important
    }

    /* --- Sticky CTA --- */
    .sticky-cta {
        padding: 10px 16px
    }

    .sticky-cta .btn--primary {
        width: 100%;
        justify-content: center;
        padding: 14px;
        font-size: 15px
    }

    /* --- Touch targets: mobile menu --- */
    .mobile-menu__links a {
        font-size: 17px;
        padding: 8px 0;
        min-height: 44px;
        display: inline-flex;
        align-items: center
    }

    /* --- Content-visibility for performance --- */
    .faq {
        content-visibility: auto;
        contain-intrinsic-size: auto 600px
    }

    .testimonials {
        content-visibility: auto;
        contain-intrinsic-size: auto 400px
    }

    .about {
        content-visibility: auto;
        contain-intrinsic-size: auto 500px
    }

    .cities {
        content-visibility: auto;
        contain-intrinsic-size: auto 450px
    }

    .service-area-map {
        content-visibility: auto;
        contain-intrinsic-size: auto 350px
    }

    /* --- Inquiry & blog CTA --- */
    .contact--inquiry {
        padding-top: 80px;
        min-height: auto
    }

    .contact--blog-cta {
        padding: 40px 16px
    }

    .success-hero {
        margin-top: 40px;
        min-height: auto;
        padding: var(--section-pad-mob) 16px
    }
}

/* =============================================
   MOBILE OPTIMIZATION — 360px & below (very small phones)
   ============================================= */
@media(max-width:360px) {
    .hero {
        padding: 60px 12px 32px
    }

    .hero__headline {
        font-size: clamp(22px, 7vw, 28px)
    }

    .hero__subtext {
        font-size: 14px
    }

    .hero__stat-value {
        font-size: 20px
    }

    .hero__stat-label {
        font-size: 11px
    }

    .section-heading {
        font-size: clamp(18px, 5.5vw, 22px)
    }

    .brand-statement__quote {
        font-size: clamp(16px, 4.5vw, 20px)
    }

    .comparison__card {
        padding: 16px
    }

    .process__step {
        padding: 18px 14px
    }

    .service-row {
        padding: 16px 14px
    }

    .service-row:hover {
        padding-left: 14px
    }

    .testimonial-card {
        flex: 0 0 95%
    }

    .faq__summary {
        font-size: 14px;
        padding: 16px 12px
    }

    .faq__content {
        padding: 0 12px 16px;
        font-size: 13px
    }

    .contact__input,
    .contact__textarea {
        font-size: 16px
    }

    .footer {
        padding: 28px 12px
    }

    .selection {
        padding: 70px 12px 20px
    }

    .selection__card {
        padding: 16px
    }

    .blog-card {
        padding: 20px
    }

    .blog-card__title {
        font-size: 17px
    }

    .article-header {
        padding: 80px 12px 32px
    }

    .article-title {
        font-size: clamp(20px, 6vw, 26px)
    }

    .article-content {
        padding: 32px 12px 48px
    }

    .article-content__inner {
        font-size: 15px
    }

    .article-content__inner h2 {
        font-size: 20px
    }

    .article-content__inner h3 {
        font-size: 17px
    }

    .about-hero {
        padding: 80px 12px 36px
    }

    .about-hero__headline {
        font-size: clamp(28px, 7vw, 36px)
    }

    .transform__bad {
        font-size: clamp(18px, 5vw, 26px)
    }

    .transform__good {
        font-size: clamp(20px, 6vw, 32px)
    }

    .cities__grid {
        gap: 8px
    }

    .city-card {
        padding: 12px 14px
    }

    .ps-hero {
        padding: 70px 12px 28px
    }

    .calendly-inline-widget {
        height: 480px !important
    }

    .nav__inner {
        padding: 10px 12px
    }

    .mobile-menu__links a {
        font-size: 16px
    }
}

/* --- The Steer Me Right Difference --- */
.difference {
    background:
        radial-gradient(circle at 14% 24%, rgba(250, 204, 21, .18), transparent 18rem),
        linear-gradient(180deg, var(--bg-page) 0%, var(--bg-warm) 100%);
    padding: 64px 32px;
}

.difference__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.difference__header {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}

.difference__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}

.difference__card {
    border-radius: var(--radius-lg);
    padding: 36px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 22px 52px rgba(124, 45, 18, 0.08);
}

.difference__card--old {
    background: rgba(255, 255, 255, .78);
    border: 1px solid var(--border);
}

.difference__card--old .difference__card-header h3 {
    color: #475569;
    font-size: 24px;
    font-family: var(--serif);
    margin-bottom: 8px;
}

.difference__card--old .difference__card-header p {
    color: #94a3b8;
    font-size: 15px;
    margin-bottom: 24px;
}

.difference__card--new {
    background:
        radial-gradient(circle at 20% 0, rgba(255, 77, 0, .35), transparent 18rem),
        var(--bg-dark);
    color: var(--bg-white);
    border: 1px solid rgba(255, 255, 255, .12);
    transform: translateY(-8px);
    box-shadow: 0 28px 64px rgba(8, 11, 22, 0.22);
}

.difference__card-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), #fb7185);
    color: white;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.difference__card--new .difference__card-header h3 {
    color: var(--bg-white);
    font-size: 28px;
    font-family: var(--serif);
    margin-bottom: 8px;
    font-weight: 900;
}

.difference__card--new .difference__card-header p {
    color: #cbd5e1;
    font-size: 15px;
    margin-bottom: 24px;
}

.difference__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
}

.difference__list li {
    position: relative;
    padding-left: 32px;
    font-size: 15px;
    line-height: 1.6;
}

.difference__list strong {
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}

.difference__list--crosses li {
    color: #64748b;
}

.difference__list--crosses strong {
    color: #334155;
}

.difference__list--crosses li::before {
    content: "✕";
    position: absolute;
    left: 0;
    top: -1px;
    color: #ef4444;
    font-size: 16px;
    font-weight: bold;
}

.difference__list--checks li {
    color: #e2e8f0;
}

.difference__list--checks strong {
    color: var(--bg-white);
}

.difference__list--checks li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -1px;
    color: var(--success);
    font-size: 18px;
    font-weight: bold;
}

@media (max-width: 960px) {
    .difference__grid {
        grid-template-columns: 1fr;
    }
    .difference__card--new {
        transform: none;
        margin-top: 24px;
    }
}

@media (max-width: 768px) {
    .difference {
        padding: var(--section-pad-mob) 20px;
    }
    .difference__card {
        padding: 24px;
    }
}

/* =============================================
   SCHEDULE PAGE — Trust Bar
   ============================================= */
.selection__trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 32px;
    max-width: 640px;
    margin: 0 auto 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04)
}

.selection__trust-stat {
    text-align: center
}

.selection__trust-value {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    display: block;
    line-height: 1.2
}

.selection__trust-label {
    font-family: var(--sans);
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-top: 2px;
    display: block
}

.selection__trust-divider {
    width: 1px;
    height: 36px;
    background: var(--border)
}

/* Testimonial location meta */
.testimonial-card__location {
    color: var(--text-muted);
    font-size: 12px;
    display: block
}

.testimonials__header {
    margin-bottom: 8px
}

/* =============================================
   SCHEDULE PAGE — 3-Tier Grid
   ============================================= */
.selection__grid--three-tiers {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
    margin-inline: auto;
    align-items: center;
    gap: 24px;
}

.selection__price-label {
    font-size: 14px;
    color: var(--text-muted);
    font-family: var(--sans)
}

/* =============================================
   SCHEDULE PAGE — Guarantee Badge
   ============================================= */
.selection__guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 600px;
    margin: 36px auto 0;
    padding: 16px 24px;
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: left
}

.selection__guarantee svg {
    flex-shrink: 0;
    color: var(--success)
}

.selection__guarantee p {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0
}

.selection__guarantee--savings {
    background: var(--success-light);
    border-color: var(--success-border);
    align-items: flex-start
}

.selection__guarantee--savings svg {
    color: var(--success);
    margin-top: 2px;
    flex-shrink: 0
}

.selection__guarantee-body {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.selection__guarantee-title {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 700;
    color: var(--success);
    margin: 0
}

.selection__guarantee-text {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.55;
    margin: 0
}

.selection__guarantee-sub {
    font-family: var(--sans);
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0
}

/* =============================================
   SCHEDULE PAGE — Responsive: 3-tier grid
   ============================================= */
@media (max-width:1100px) {
    .selection__grid--three-tiers {
        max-width: 960px;
        gap: 16px;
    }
}

@media (max-width:960px) {
    .selection__grid--three-tiers {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 24px;
    }
    
    .selection__card--featured {
        transform: none;
    }

    .selection__card--featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width:768px) {

    .selection__trust-bar {
        gap: 20px;
        padding: 16px 20px
    }

    .selection__trust-value {
        font-size: 20px
    }
}

@media (max-width:480px) {
    .selection__trust-bar {
        gap: 12px;
        padding: 14px 16px
    }

    .selection__trust-value {
        font-size: 18px
    }

    .selection__trust-label {
        font-size: 11px
    }

    .selection__trust-divider {
        height: 28px
    }

    .selection__guarantee {
        flex-direction: column;
        gap: 8px;
        padding: 14px 16px
    }

    .selection__guarantee--savings {
        align-items: center;
        text-align: center
    }

    .selection__guarantee-body {
        align-items: center
    }
}

@media (max-width:360px) {
    .selection__trust-bar {
        gap: 8px;
        padding: 12px 12px
    }

    .selection__trust-value {
        font-size: 16px
    }

    .selection__trust-label {
        font-size: 10px
    }
}

/* ===== MOBILE DE-CLUTTER (homepage) ===== */
@media (max-width:768px) {
    :root {
        --section-pad-mob: 36px
    }

    .section-subtext {
        font-size: 14px;
        margin-top: 8px
    }

    .section-cta-container {
        margin-top: 32px;
        padding-top: 24px
    }

    .hero__subtext {
        margin-bottom: 20px
    }

    .hero__stats {
        margin-top: 20px;
        padding-top: 16px
    }

    .transform__subtext {
        font-size: 14px;
        margin-top: 8px
    }

    .transform__cta {
        margin-top: 24px
    }

    .process__pricing {
        margin-top: 20px;
        margin-bottom: 16px;
        padding: 20px 16px
    }

    .city-card__desc {
        display: none
    }

    .service-area-map {
        display: none
    }

    .sticky-cta__text {
        font-size: 13px
    }

    .sticky-cta .btn--primary {
        padding: 10px 18px;
        font-size: 14px
    }

    .sticky-cta__inner {
        gap: 12px
    }

    .contact__subtext {
        font-size: 14px
    }
}

@media (max-width:480px) {
    :root {
        --section-pad-mob: 28px
    }

    .hero__stats {
        gap: 8px 12px;
        margin-top: 16px;
        padding-top: 14px
    }

    .transform__cta {
        margin-top: 20px
    }

    .section-cta-container {
        margin-top: 24px;
        padding-top: 20px
    }
}

/* ===== LARGE DESKTOP HERO SCALING ===== */
@media (min-width:1200px) {
    .hero__content {
        max-width: 1240px;
        grid-template-columns: 1.05fr 1fr
    }

    .hero__text {
        max-width: 600px
    }

    .hero__headline {
        font-size: clamp(48px, 5vw, 76px);
        margin-bottom: 24px;
        letter-spacing: -.01em
    }

    .hero__subtext {
        font-size: 18px;
        max-width: 540px;
        margin-bottom: 34px;
        line-height: 1.75
    }

    .hero .btn--primary {
        padding: 16px 36px;
        font-size: 16px;
        border-radius: 12px
    }

    .hero__consult-link {
        font-size: 15px
    }

    .hero__stats {
        margin-top: 36px;
        padding-top: 28px;
        gap: 28px
    }

    .hero__stat-value {
        font-size: 30px
    }

    .hero__stat-label {
        font-size: 13px
    }

    .hero__stat-divider {
        height: 36px
    }
}

@media (min-width:1600px) {
    .hero {
        padding: 180px 48px 80px
    }

    .hero__content {
        max-width: 1600px
    }

    .hero__text {
        max-width: 840px
    }

    .hero__headline {
        font-size: clamp(80px, 6vw, 110px);
        margin-bottom: 32px
    }

    .hero__subtext {
        font-size: 24px;
        max-width: 700px;
        margin-bottom: 48px
    }

    .hero .btn--primary {
        padding: 22px 48px;
        font-size: 20px;
        border-radius: 16px
    }

    .hero__consult-link {
        font-size: 18px
    }

    .hero__stats {
        margin-top: 52px;
        padding-top: 36px;
        gap: 44px
    }

    .hero__stat-value {
        font-size: 40px
    }

    .hero__stat-label {
        font-size: 15px
    }

    .hero__stat-divider {
        height: 52px
    }
}
@media (max-width: 768px) {
    .hero__review-card {
        margin: 24px auto 16px;
        padding: 16px;
        max-width: 100%;
    }

}
