:root {
    --bg: #eef3f8;
    --surface: #ffffff;
    --surface-alt: #f6f8fb;
    --surface-dark: #0f1d2f;
    --surface-dark-2: #132740;
    --text: #18283a;
    --muted: #617287;
    --line: rgba(20, 39, 64, 0.1);
    --line-strong: rgba(255, 255, 255, 0.12);
    --red: #cf2f26;
    --red-deep: #a91f18;
    --red-soft: rgba(207, 47, 38, 0.12);
    --gold: #d4b37c;
    --white: #ffffff;
    --shadow-lg: 0 30px 80px rgba(15, 29, 47, 0.14);
    --shadow-md: 0 18px 40px rgba(15, 29, 47, 0.1);
    --shadow-sm: 0 12px 24px rgba(15, 29, 47, 0.08);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(212, 179, 124, 0.18), transparent 24%),
        radial-gradient(circle at 100% 0%, rgba(207, 47, 38, 0.1), transparent 25%),
        linear-gradient(180deg, #f7f9fc 0%, #edf2f7 100%);
    line-height: 1.65;
}

body.home-page {
    --hero-image: url("https://images.pexels.com/photos/5463587/pexels-photo-5463587.jpeg?auto=compress&cs=tinysrgb&w=1600");
}

body.repair-page {
    --page-hero-image: url("https://images.pexels.com/photos/5463580/pexels-photo-5463580.jpeg?auto=compress&cs=tinysrgb&w=1600");
}

body.installation-page {
    --page-hero-image: url("https://images.pexels.com/photos/16592625/pexels-photo-16592625.jpeg?auto=compress&cs=tinysrgb&w=1600");
}

body.maintenance-page {
    --page-hero-image: url("https://images.pexels.com/photos/5463575/pexels-photo-5463575.jpeg?auto=compress&cs=tinysrgb&w=1600");
}

body.contact-page {
    --page-hero-image: url("https://images.pexels.com/photos/16592625/pexels-photo-16592625.jpeg?auto=compress&cs=tinysrgb&w=1600");
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

.topbar {
    background: var(--surface-dark);
    color: rgba(255, 255, 255, 0.84);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
    flex-wrap: wrap;
    font-size: 0.95rem;
}

.topbar strong,
.topbar a {
    color: var(--white);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(248, 250, 253, 0.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(24, 40, 58, 0.08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
}

.brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.brand-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 18px;
    background: #f8fafd;
    box-shadow: inset 0 0 0 1px rgba(24, 40, 58, 0.05);
}

.brand-mark {
    width: 210px;
    max-width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: multiply;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.brand-name {
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.brand-tag {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.35;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 10px 20px;
    flex-wrap: wrap;
}

.mobile-menu {
    display: none;
}

.nav-links a {
    font-weight: 700;
    color: #233548;
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 16px 28px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--red) 0%, var(--red-deep) 100%);
    color: var(--white);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    box-shadow: 0 22px 40px rgba(207, 47, 38, 0.24);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease, background 0.18s ease;
    cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 28px 44px rgba(207, 47, 38, 0.28);
    filter: brightness(1.04);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.btn-light {
    background: var(--white);
    color: var(--surface-dark);
    box-shadow: var(--shadow-sm);
}

.btn-outline {
    background: transparent;
    color: var(--surface-dark);
    border-color: rgba(15, 29, 47, 0.14);
    box-shadow: none;
}

.btn-portal {
    background: linear-gradient(180deg, #1784d8 0%, #0f6bb1 100%);
    color: var(--white);
    box-shadow: 0 22px 40px rgba(15, 119, 204, 0.22);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
    margin: 0 0 16px;
    line-height: 1.05;
}

h1 {
    font-size: clamp(3rem, 6vw, 5.8rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

h2 {
    font-size: clamp(2.1rem, 4vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -0.035em;
}

h3 {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

p {
    margin: 0 0 16px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 104px 0 86px;
    background:
        linear-gradient(115deg, rgba(9, 21, 35, 0.84), rgba(16, 35, 57, 0.72)),
        var(--hero-image),
        linear-gradient(115deg, rgba(9, 21, 35, 0.94), rgba(16, 35, 57, 0.78)),
        radial-gradient(circle at 80% 20%, rgba(212, 179, 124, 0.18), transparent 28%),
        linear-gradient(180deg, #102133 0%, #132740 100%);
    background-size: cover;
    background-position: center;
}

.hero::before,
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 40%),
        linear-gradient(0deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.hero .container,
.page-hero .container {
    position: relative;
    z-index: 1;
}

.hero-grid,
.split-grid,
.contact-grid {
    display: grid;
    gap: 30px;
}

.hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    align-items: center;
}

.hero-copy {
    color: var(--white);
}

.hero-copy p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.12rem;
}

.hero-actions,
.button-row,
.trust-row,
.pill-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-actions {
    margin: 28px 0 26px;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.94);
    font-weight: 700;
}

.hero-card,
.glass-card,
.card,
.cta-panel,
.contact-card,
.form-card,
.phone-panel,
.about-panel {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.portal-card {
    padding: 34px;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(135deg, rgba(23, 132, 216, 0.08), rgba(255, 255, 255, 0.96)),
        var(--white);
    border: 1px solid rgba(15, 119, 204, 0.14);
    box-shadow: var(--shadow-md);
}

.portal-embed {
    margin-top: 20px;
}

.portal-embed button {
    min-height: 58px;
    padding: 16px 28px !important;
    border-radius: 999px !important;
    background: linear-gradient(180deg, #1784d8 0%, #0f6bb1 100%) !important;
    color: var(--white) !important;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    box-shadow: 0 22px 40px rgba(15, 119, 204, 0.22);
}

.hero-card,
.glass-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
}

.hero-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.hero-stat {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.15rem;
}

.section {
    padding: 104px 0;
}

.section-light {
    background: linear-gradient(180deg, #f7f9fc 0%, #edf2f7 100%);
}

.section-white {
    background: var(--white);
}

.section-dark {
    background:
        radial-gradient(circle at 15% 10%, rgba(212, 179, 124, 0.12), transparent 18%),
        linear-gradient(180deg, #0e1c2d 0%, #132740 100%);
    color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark p,
.section-dark .section-intro {
    color: var(--white);
}

.section-intro {
    max-width: 730px;
    margin-bottom: 34px;
    color: var(--muted);
    font-size: 1.05rem;
}

.card-grid-3,
.card-grid-2,
.service-grid {
    display: grid;
    gap: 24px;
}

.card-grid-3,
.service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.contact-card,
.form-card,
.phone-panel,
.about-panel {
    padding: 34px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
}

.section-dark .card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.card:hover,
.service-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 54px rgba(15, 29, 47, 0.14);
}

.card,
.service-box,
.service-area,
.nav-links a,
.sticky-call a {
    transition: all 0.2s ease;
}

.icon-wrap {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin-bottom: 18px;
    background: linear-gradient(180deg, rgba(207, 47, 38, 0.14), rgba(212, 179, 124, 0.18));
    color: var(--red);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.section-dark .icon-wrap {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.icon-wrap svg {
    width: 28px;
    height: 28px;
}

.service-box {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 253, 0.98));
    border: 1px solid rgba(24, 40, 58, 0.08);
    box-shadow: var(--shadow-md);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 220px;
    margin: -34px -34px 24px;
    border-radius: var(--radius-xl) var(--radius-xl) 22px 22px;
    background-size: cover;
    background-position: center;
    transition: transform 0.25s ease;
}

.service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 29, 47, 0.05), rgba(15, 29, 47, 0.28));
}

.service-box:hover .service-image {
    transform: scale(1.03);
}

.service-box::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, var(--red) 0%, var(--gold) 100%);
}

.service-box p,
.card p,
.contact-card p,
.form-card p,
.about-panel p,
.phone-panel p {
    color: var(--muted);
}

.section-dark .card p {
    color: rgba(255, 255, 255, 0.8);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: var(--red);
    font-weight: 800;
}

.cta-panel {
    padding: 42px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 28%),
        linear-gradient(135deg, #d1382f 0%, #8f1c16 100%);
    color: var(--white);
}

.cta-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

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

.badge {
    padding: 22px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    font-weight: 800;
}

.trust-badge-row {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.bbb-badge {
    width: 92px;
    height: auto;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    background: var(--white);
}

.trane-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, #fff4f1 0%, #ffffff 100%);
    border: 1px solid rgba(207, 47, 38, 0.18);
    box-shadow: var(--shadow-sm);
}

.trane-badge-logo {
    width: 140px;
    max-width: 100%;
    height: auto;
    display: block;
}

.trane-badge-copy strong {
    display: block;
    color: #cb2e23;
    line-height: 1.1;
}

.trane-badge-copy span {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
}

.license-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.96);
    font-weight: 700;
}

.reviews-highlight {
    padding: 40px;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 28%),
        linear-gradient(135deg, #12253c 0%, #1a3658 100%);
    color: var(--white);
    box-shadow: var(--shadow-lg);
    margin-bottom: 28px;
}

.reviews-highlight h2,
.reviews-highlight p {
    color: var(--white);
}

.reviews-highlight .btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.24);
}

.review-card {
    padding: 30px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid rgba(24, 40, 58, 0.08);
    box-shadow: var(--shadow-md);
}

.review-stars {
    color: #d08a16;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.trust-item {
    padding: 24px 22px;
    border-radius: 24px;
    background: var(--white);
    border: 1px solid rgba(24, 40, 58, 0.08);
    box-shadow: var(--shadow-md);
}

.trust-item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--surface-dark);
    font-size: 1.02rem;
}

.trust-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.areas-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.zip-note {
    margin-top: 20px;
    max-width: 980px;
    color: var(--muted);
    font-size: 0.96rem;
}

.service-area {
    padding: 14px 18px;
    border-radius: 999px;
    background: var(--surface-alt);
    border: 1px solid rgba(24, 40, 58, 0.08);
    font-weight: 800;
    color: #243648;
    box-shadow: var(--shadow-sm);
}

.service-area:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 70px;
    background:
        linear-gradient(120deg, rgba(14, 28, 45, 0.86), rgba(19, 39, 64, 0.76)),
        var(--page-hero-image),
        linear-gradient(120deg, rgba(14, 28, 45, 0.92), rgba(19, 39, 64, 0.8)),
        radial-gradient(circle at top right, rgba(212, 179, 124, 0.14), transparent 24%);
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    gap: 28px;
    align-items: center;
}

.page-hero p {
    max-width: 640px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.08rem;
}

.list-clean {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-clean li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
}

.list-clean li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--gold) 0%, #be8f49 100%);
}

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

.phone-number {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--surface-dark);
    margin: 16px 0 20px;
}

.phone-number a {
    color: inherit;
}

.contact-info-row {
    display: grid;
    gap: 16px;
}

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

label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.94rem;
    font-weight: 800;
    color: #213245;
}

input,
select,
textarea {
    width: 100%;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(24, 40, 58, 0.12);
    background: #fbfcfe;
    color: var(--text);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

input:focus,
select:focus,
textarea:focus {
    outline: 2px solid rgba(207, 47, 38, 0.2);
    border-color: rgba(207, 47, 38, 0.4);
}

textarea {
    min-height: 170px;
    resize: vertical;
}

form {
    display: grid;
    gap: 16px;
}

.mini-note,
.subtle {
    color: var(--muted);
    font-size: 0.94rem;
}

footer {
    padding: 32px 0 110px;
    background: transparent;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 22px;
    border-top: 1px solid rgba(24, 40, 58, 0.12);
    color: var(--muted);
}

.sticky-call {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 60;
    display: none;
}

.sticky-call a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--red) 0%, var(--red-deep) 100%);
    color: var(--white);
    font-size: 1.06rem;
    font-weight: 800;
    box-shadow: 0 22px 40px rgba(207, 47, 38, 0.3);
}

.sticky-call a:hover {
    transform: translateY(-2px);
}

.spacer-top {
    margin-top: 18px;
}

@media (max-width: 1080px) {
    .hero-grid,
    .page-hero-grid,
    .card-grid-3,
    .service-grid,
    .card-grid-2,
    .contact-grid,
    .badge-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 780px) {
    .topbar {
        display: none;
    }

    .site-header {
        position: sticky;
        top: 0;
        z-index: 50;
    }

    .nav {
        gap: 12px;
        padding: 12px 0;
    }

    .brand {
        width: 100%;
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .brand-logo-wrap {
        padding: 4px 8px;
    }

    .brand-mark {
        width: 132px;
    }

    .brand-copy {
        gap: 1px;
    }

    .brand-name {
        font-size: 1rem;
    }

    .brand-tag {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
        width: 100%;
    }

    .mobile-menu summary {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        padding: 12px 18px;
        border-radius: 999px;
        background: var(--surface-dark);
        color: var(--white);
        font-weight: 800;
        cursor: pointer;
        list-style: none;
        user-select: none;
    }

    .mobile-menu summary::-webkit-details-marker {
        display: none;
    }

    .mobile-menu summary::after {
        content: "▾";
        margin-left: 10px;
        font-size: 0.95rem;
    }

    .mobile-menu[open] summary::after {
        content: "▴";
    }

    .mobile-menu-panel {
        display: grid;
        gap: 10px;
        margin-top: 12px;
        padding: 14px;
        border-radius: 22px;
        background: var(--white);
        border: 1px solid rgba(24, 40, 58, 0.08);
        box-shadow: var(--shadow-md);
    }

    .hero,
    .page-hero,
    .section {
        padding-top: 68px;
        padding-bottom: 68px;
    }

    .hero-card,
    .glass-card,
    .card,
    .service-box,
    .cta-panel,
    .contact-card,
    .form-card,
    .phone-panel,
    .about-panel {
        padding: 26px;
        border-radius: 26px;
    }

    .service-image {
        margin: -26px -26px 20px;
    }

    .topbar-inner,
    .field-row,
    .footer-inner,
    .cta-layout {
        display: grid;
        grid-template-columns: 1fr;
    }

    .mobile-menu-panel a:not(.btn) {
        padding: 12px 14px;
        border: 1px solid rgba(24, 40, 58, 0.1);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.96);
        font-weight: 700;
    }

    .mobile-menu-panel a.active:not(.btn) {
        background: linear-gradient(180deg, var(--red) 0%, var(--red-deep) 100%);
        color: var(--white);
        border-color: transparent;
    }

    .mobile-menu-panel .btn {
        min-height: 50px;
    }

    .page-hero {
        padding-top: 52px;
    }

    .page-hero h1 {
        font-size: clamp(2.2rem, 9vw, 3rem);
    }

    .hero-actions,
    .button-row,
    .trust-row,
    .pill-row {
        flex-direction: column;
        align-items: stretch;
    }

    .btn,
    .btn-secondary,
    .btn-light,
    .btn-outline {
        width: 100%;
    }

    .hero-stat-grid {
        grid-template-columns: 1fr;
    }

    .sticky-call {
        display: block;
    }
}
