:root {
    --navy: #0b1d3a;
    --petrol: #0fa3a3;
    --green: #22c55e;
    --slate: #5a687f;
    --muted: #d9e2ea;
    --soft: #f4f7fa;
    --white: #ffffff;
    --ink: #0f172a;
    --deep: #06111f;
    --deep-soft: #0d1a2c;
    --shadow: 0 28px 80px rgba(6, 17, 31, 0.18);
    --shadow-soft: 0 18px 42px rgba(11, 29, 58, 0.1);
    --radius: 28px;
    --radius-sm: 18px;
    --max: 1220px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Public Sans', sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(15, 163, 163, 0.08), transparent 20%),
        linear-gradient(180deg, #edf3f8 0%, #f8fafc 32%, #eef3f6 100%);
}

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

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

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

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

.section {
    padding: 84px 0;
}

.eyebrow,
.card-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    font-weight: 800;
}

.eyebrow {
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(15, 163, 163, 0.12);
    color: var(--petrol);
}

.card-kicker {
    color: var(--petrol);
}

.section-heading {
    max-width: 780px;
    margin-bottom: 40px;
}

.section-heading h2,
.cta-panel h2,
.admin-shell h1,
.privacy-content h2,
.landing-copy h1,
.login-card h2 {
    margin: 16px 0 14px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.8rem, 2.6vw, 2.7rem);
    line-height: 1.12;
    letter-spacing: -0.045em;
    color: var(--navy);
}

.hero-copy h1 {
    margin: 16px 0 18px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.45rem, 4vw, 4.5rem);
    line-height: 1.06;
    letter-spacing: -0.06em;
    color: var(--white);
}

.section-heading p,
.hero-copy p,
.lead,
.privacy-content p,
.privacy-content li,
.landing-copy p,
.service-card p,
.method-card p,
.authority-card p,
.pain-card p,
.result-card p,
.review-card p,
.contact-copy p,
.cta-panel p {
    color: var(--slate);
    font-size: 1rem;
    line-height: 1.72;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 24px;
    border-radius: 16px;
    border: 1px solid transparent;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease;
    font-weight: 800;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.button-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--navy), #12366b 64%, var(--petrol));
}

.button-secondary {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    backdrop-filter: blur(12px);
}

.text-link {
    display: inline-flex;
    margin-top: 22px;
    color: var(--petrol);
    font-weight: 800;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    padding: 10px 0;
    background: linear-gradient(180deg, rgba(245, 248, 251, 0.94), rgba(241, 246, 250, 0.9));
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(11, 29, 58, 0.08);
}

body.nav-open {
    overflow: hidden;
}

.nav-shell,
.site-nav,
.hero-actions,
.trust-row,
.admin-stats,
.cta-actions,
.review-topline,
.table-meta {
    display: flex;
    align-items: center;
}

.nav-shell {
    justify-content: space-between;
    gap: 16px;
}

.brand-mark {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.brand-logo {
    width: clamp(165px, 21vw, 238px);
    filter: drop-shadow(0 10px 22px rgba(11, 29, 58, 0.12));
}

.site-nav {
    gap: 18px;
}

.site-nav > a:not(.button) {
    color: rgba(11, 29, 58, 0.78);
    font-weight: 700;
}

.site-nav > a:not(.button):hover {
    color: var(--navy);
}

.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px 0;
    background: var(--navy);
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero-premium {
    padding: 44px 0 24px;
    background:
        radial-gradient(circle at 80% 15%, rgba(15, 163, 163, 0.16), transparent 18%),
        radial-gradient(circle at 70% 50%, rgba(7, 170, 170, 0.1), transparent 24%),
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.08), transparent 20%),
        linear-gradient(180deg, var(--deep) 0%, var(--deep-soft) 56%, #102741 100%);
}

.hero-shell,
.authority-grid,
.contact-shell,
.landing-shell,
.admin-grid,
.map-shell,
.privacy-grid,
.process-grid,
.pain-grid,
.reviews-grid,
.cards-grid {
    display: grid;
    gap: 24px;
}

.hero-shell,
.landing-shell {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    align-items: center;
    gap: 34px;
}

.hero-copy h1,
.hero-copy .lead,
.hero-copy .eyebrow,
.landing-copy h1,
.landing-copy .lead,
.landing-copy .eyebrow {
    color: var(--white);
}

.hero-copy .lead,
.landing-copy .lead {
    max-width: 700px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
}

.hero-actions,
.cta-actions {
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.proof-item,
.hero-panel,
.hero-note,
.pain-card,
.service-card,
.method-card,
.authority-card,
.review-card,
.result-card,
.contact-form,
.map-panel,
.cta-panel,
.admin-panel,
.login-card,
.faq-card {
    border-radius: var(--radius);
    border: 1px solid rgba(11, 29, 58, 0.08);
    box-shadow: var(--shadow);
}

.proof-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border-color: rgba(255, 255, 255, 0.08);
}

.proof-item strong {
    display: block;
    margin-bottom: 10px;
    color: var(--white);
    font-size: 1rem;
}

.proof-item span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.96rem;
    line-height: 1.65;
}

.hero-showcase {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    padding: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    border-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.hero-card {
    align-self: stretch;
}

.hero-showcase::before {
    content: "";
    position: absolute;
    inset: auto -80px -80px auto;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 163, 163, 0.3), transparent 62%);
    pointer-events: none;
    animation: heroAuraPulse 8s ease-in-out infinite;
}

.hero-showcase::after {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.18) 20%, rgba(15, 163, 163, 0.42) 50%, rgba(255, 255, 255, 0.18) 80%, transparent 100%);
    opacity: 0.85;
    pointer-events: none;
}

.hero-showcase:hover {
    transform: translateY(-4px);
    border-color: rgba(15, 163, 163, 0.22);
    box-shadow: 0 26px 60px rgba(4, 10, 18, 0.34);
}

.hero-showcase .card-kicker {
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.hero-card-title {
    margin: 0 0 22px;
    color: var(--white);
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.38rem, 2vw, 1.92rem);
    line-height: 1.14;
    letter-spacing: -0.04em;
    position: relative;
    z-index: 1;
}

.hero-panel-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.hero-panel {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    align-items: center;
    column-gap: 16px;
    min-height: 84px;
    padding: 18px 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.06));
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.hero-panel:hover {
    transform: translateY(-2px);
    border-color: rgba(15, 163, 163, 0.24);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.08));
}

.hero-panel small {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    align-self: stretch;
    margin: 0;
    padding: 0 12px 0 0;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(15, 163, 163, 0.96);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.1;
    text-align: right;
    white-space: nowrap;
    text-transform: uppercase;
}

.hero-panel strong,
.hero-note p {
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.6;
}

.hero-panel strong {
    display: block;
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.45;
}

.hero-note {
    margin-top: 14px;
    padding: 18px 20px;
    background: rgba(7, 18, 31, 0.4);
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: none;
    position: relative;
    z-index: 1;
}

@keyframes heroAuraPulse {
    0%,
    100% {
        opacity: 0.22;
        transform: scale(0.94);
    }
    50% {
        opacity: 0.38;
        transform: scale(1.04);
    }
}

.section-overview {
    padding-top: 58px;
}

.overview-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    gap: 34px;
    align-items: stretch;
    margin-bottom: 42px;
}

.overview-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.overview-copy h2 {
    margin: 16px 0 14px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.85rem, 2.6vw, 2.7rem);
    line-height: 1.12;
    letter-spacing: -0.045em;
    color: var(--navy);
}

.overview-copy p {
    max-width: 640px;
}

.overview-signals {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.overview-signal {
    display: grid;
    grid-template-columns: 12px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 0 0 14px;
    border-bottom: 1px solid rgba(11, 29, 58, 0.08);
}

.overview-signal:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.overview-signal span {
    width: 12px;
    height: 12px;
    margin-top: 8px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--petrol), #0bb8b8);
    box-shadow: 0 0 0 6px rgba(15, 163, 163, 0.12);
}

.overview-signal p {
    margin: 0;
    color: var(--slate);
    line-height: 1.65;
}

.overview-card {
    padding: 32px;
    border-radius: var(--radius);
    background: linear-gradient(180deg, #0a1930 0%, #102744 100%);
    border: 1px solid rgba(15, 163, 163, 0.14);
    box-shadow: 0 28px 60px rgba(10, 18, 30, 0.18);
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: "";
    position: absolute;
    inset: auto -90px -90px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 163, 163, 0.26), transparent 68%);
    pointer-events: none;
}

.overview-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 20px;
}

.overview-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1;
}

.overview-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.overview-item small {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--petrol);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-top: 2px;
}

.overview-item-body {
    flex: 1 1 auto;
    min-width: 0;
}

.overview-item h3 {
    margin: 0 0 8px;
    color: var(--white);
    font-size: 1.08rem;
    line-height: 1.3;
}

.overview-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.62;
}

.risk-shell {
    margin-top: 28px;
    padding: 42px;
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 100% 0%, rgba(15, 163, 163, 0.12), transparent 24%),
        linear-gradient(180deg, #eef3f7 0%, #f4f6f8 100%);
    border: 1px solid rgba(71, 85, 105, 0.12);
    box-shadow: 0 24px 60px rgba(11, 29, 58, 0.08);
    position: relative;
    overflow: hidden;
}

.risk-shell::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: linear-gradient(180deg, var(--navy) 0%, var(--petrol) 100%);
}

.risk-heading {
    max-width: 100%;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.risk-heading .eyebrow {
    color: var(--petrol);
}

.risk-heading h2,
.risk-heading p {
    max-width: 100%;
}

.risk-heading p {
    max-width: 1120px;
}

.risk-grid {
    gap: 18px;
    position: relative;
    z-index: 1;
}

.risk-card {
    min-height: 100%;
    padding: 30px 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 246, 248, 0.98));
    border: 1px solid rgba(71, 85, 105, 0.12);
    box-shadow: 0 18px 34px rgba(11, 29, 58, 0.06);
    position: relative;
    overflow: hidden;
}

.risk-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy) 0%, var(--petrol) 100%);
}

.risk-card .card-kicker {
    color: var(--petrol);
}

.risk-card h3 {
    color: var(--navy);
    line-height: 1.22;
}

.risk-card p {
    color: var(--slate);
    line-height: 1.7;
}

.reviews-shell {
    margin-top: 8px;
    padding: 42px;
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 100% 0%, rgba(15, 163, 163, 0.12), transparent 24%),
        linear-gradient(180deg, #eef3f7 0%, #f4f6f8 100%);
    border: 1px solid rgba(71, 85, 105, 0.12);
    box-shadow: 0 24px 60px rgba(11, 29, 58, 0.08);
    position: relative;
    overflow: hidden;
}

.reviews-shell::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: linear-gradient(180deg, var(--navy) 0%, var(--petrol) 100%);
}

.reviews-heading {
    max-width: 100%;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.reviews-heading .eyebrow {
    color: var(--petrol);
}

.reviews-heading h2,
.reviews-heading p {
    max-width: 100%;
}

.reviews-heading p {
    max-width: 1120px;
}

.reviews-grid {
    gap: 18px;
    position: relative;
    z-index: 1;
}

.review-card-refined {
    min-height: 100%;
    padding: 30px 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 246, 248, 0.98));
    border: 1px solid rgba(71, 85, 105, 0.12);
    box-shadow: 0 18px 34px rgba(11, 29, 58, 0.06);
    position: relative;
    overflow: hidden;
}

.review-card-refined::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy) 0%, var(--petrol) 100%);
}

.review-card-refined strong {
    color: var(--navy);
}

.review-card-refined span {
    color: var(--petrol);
}

.review-card-refined p {
    color: var(--slate);
    line-height: 1.7;
}

.review-card-refined small {
    color: var(--slate);
}

.reviews-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 22px;
    padding: 24px 26px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(11, 29, 58, 0.96), rgba(16, 39, 68, 0.94) 62%, rgba(15, 163, 163, 0.88));
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.reviews-cta::before {
    content: "";
    position: absolute;
    inset: auto -70px -70px auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 68%);
    pointer-events: none;
}

.reviews-cta-copy {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.reviews-cta-copy .card-kicker {
    color: rgba(255, 255, 255, 0.74);
}

.reviews-cta-copy strong {
    display: block;
    margin-top: 10px;
    color: var(--white);
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.1rem, 1.55vw, 1.32rem);
    line-height: 1.34;
    letter-spacing: -0.02em;
}

.reviews-google-button {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    min-width: 220px;
    padding: 16px 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--white);
    backdrop-filter: blur(12px);
}

.reviews-google-button:hover {
    border-color: rgba(255, 255, 255, 0.28);
}

.pain-grid,
.cards-grid,
.reviews-grid,
.authority-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.pain-card,
.service-card,
.method-card,
.authority-card,
.review-card,
.result-card,
.admin-panel,
.login-card,
.faq-card {
    padding: 28px;
    background: rgba(255, 255, 255, 0.95);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.pain-card h3,
.service-card h3,
.method-card h3,
.authority-card h3,
.result-card h4,
.faq-card h3,
.review-card strong,
.admin-panel h2 {
    margin: 10px 0 12px;
    color: var(--navy);
}

.pain-card:hover,
.service-card:hover,
.authority-card:hover,
.review-card:hover,
.faq-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(11, 29, 58, 0.12);
    border-color: rgba(15, 163, 163, 0.18);
}

.section-dark {
    background: linear-gradient(180deg, rgba(8, 21, 38, 0.98), rgba(12, 33, 61, 0.96));
    color: var(--white);
}

.section-dark .section-heading h2,
.section-dark .section-heading p,
.section-dark .service-card h3,
.section-dark .service-card p,
.section-dark .card-kicker {
    color: var(--white);
}

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

.services-shell {
    display: block;
}

.services-heading {
    max-width: 100%;
    margin-bottom: 28px;
}

.services-heading h2,
.services-heading p {
    max-width: 100%;
}

.services-heading h2 {
    max-width: 1120px;
}

.services-heading p {
    max-width: 1100px;
}

.services-grid {
    gap: 20px;
    align-items: stretch;
}

.service-card-refined {
    min-height: 100%;
    padding: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 4px solid rgba(15, 163, 163, 0.9);
}

.service-card-top {
    margin-bottom: 12px;
}

.services-foundation {
    margin-top: 34px;
    padding: 34px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.services-foundation-shell {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    gap: 24px;
    align-items: stretch;
}

.services-foundation-copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.services-foundation-copy h3 {
    margin: 16px 0 0;
    color: var(--white);
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.55rem, 2.2vw, 2.12rem);
    line-height: 1.16;
    letter-spacing: -0.03em;
}

.services-foundation-copy p {
    margin: 18px 0 0;
    max-width: 36ch;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.02rem;
    line-height: 1.74;
}

.services-foundation-copy p:last-of-type {
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.authority-strip {
    height: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.authority-card-compact {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100%;
    padding: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
    border-color: rgba(255, 255, 255, 0.08);
    border-top: 3px solid rgba(15, 163, 163, 0.85);
    box-shadow: none;
}

.authority-card-top {
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.authority-card-compact h3 {
    margin: 0 0 12px;
    color: var(--white);
    font-size: 1.08rem;
    line-height: 1.32;
    letter-spacing: -0.02em;
}

.authority-card-compact p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.72;
}

.process-shell .section-heading {
    max-width: 100%;
    margin-bottom: 28px;
}

.process-shell .section-heading h2,
.process-shell .section-heading p {
    max-width: 100%;
}

.process-shell .section-heading h2 {
    max-width: 1120px;
}

.process-shell .section-heading p {
    max-width: 1100px;
}

.process-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: stretch;
    gap: 22px;
}

.process-list {
    display: grid;
    height: 100%;
    grid-template-rows: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.method-card {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 18px;
    align-items: center;
    min-height: 100%;
}

.method-card > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.method-card .card-kicker {
    margin-bottom: 4px;
}

.method-card h3 {
    margin: 0;
    font-size: 1.16rem;
    line-height: 1.42;
}

.step-index {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--navy), var(--petrol));
    color: var(--white);
    font-family: 'Sora', sans-serif;
    font-size: 1.22rem;
    font-weight: 800;
}

.results-panel {
    padding: 28px;
    border-radius: var(--radius);
    background: linear-gradient(180deg, #08172c, #0f2848);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.results-panel::before {
    content: "";
    position: absolute;
    inset: auto -80px -90px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 163, 163, 0.28), transparent 66%);
    pointer-events: none;
}

.results-panel h3 {
    margin: 14px 0 20px;
    color: var(--white);
    font-family: 'Sora', sans-serif;
    font-size: 1.55rem;
    line-height: 1.18;
}

.results-list {
    display: grid;
    gap: 16px;
}

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

.result-card h4,
.result-card p {
    color: var(--white);
}

.contact-shell,
.map-shell,
.privacy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
}

.map-shell {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.contact-form,
.map-panel,
.cta-panel {
    padding: 28px;
    background: rgba(255, 255, 255, 0.96);
}

.map-panel,
.cta-panel {
    height: 100%;
}

.contact-copy {
    padding: 28px;
    border-radius: var(--radius);
    background: linear-gradient(180deg, #08172c, #0f2848);
    box-shadow: var(--shadow);
}

.contact-copy .eyebrow,
.contact-copy h2,
.contact-copy p,
.contact-copy li {
    color: var(--white);
}

.contact-copy h2 {
    margin: 16px 0 14px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 2.8vw, 2.85rem);
    line-height: 1.1;
    letter-spacing: -0.045em;
}

.contact-copy p,
.contact-copy li {
    color: rgba(255, 255, 255, 0.78);
}

.section-contact .contact-shell {
    align-items: stretch;
}

.contact-inline-actions {
    margin-top: 24px;
}

.contact-points-grid {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.contact-point-card {
    padding: 18px 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-point-card .card-kicker {
    color: rgba(255, 255, 255, 0.62);
}

.contact-point-card strong {
    display: block;
    margin-top: 10px;
    color: var(--white);
    font-size: 1rem;
    line-height: 1.6;
}

.section-relationship .cta-panel {
    background: linear-gradient(180deg, #07172b, #0f2948);
    border-color: rgba(15, 163, 163, 0.18);
}

.section-relationship .cta-panel .eyebrow,
.section-relationship .cta-panel h2,
.section-relationship .cta-panel p {
    color: var(--white);
}

.map-panel-compact iframe {
    margin-top: 14px;
    filter: saturate(0.72) contrast(1.02);
}

.map-address-card {
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(11, 29, 58, 0.05), rgba(15, 163, 163, 0.08));
    border: 1px solid rgba(11, 29, 58, 0.08);
}

.map-address-card strong {
    display: block;
    margin-top: 10px;
    color: var(--navy);
    font-size: 1rem;
    line-height: 1.65;
}

.map-button {
    margin-top: 18px;
    color: var(--white);
    background: linear-gradient(135deg, var(--navy), #12366b 64%, var(--petrol));
}

.map-placeholder {
    display: none;
    margin-top: 16px;
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(11, 29, 58, 0.06), rgba(15, 163, 163, 0.08));
    border: 1px solid rgba(11, 29, 58, 0.08);
}

.map-placeholder strong,
.map-placeholder span {
    display: block;
}

.map-placeholder strong {
    margin-bottom: 8px;
    color: var(--navy);
}

.map-placeholder span {
    color: var(--slate);
    line-height: 1.6;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-content: start;
    padding: 30px;
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 252, 0.98));
    border: 1px solid rgba(71, 85, 105, 0.12);
    box-shadow: var(--shadow-soft);
}

.contact-form label,
.field-full {
    display: grid;
    gap: 8px;
}

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

.contact-form-head {
    margin-bottom: 0;
    padding: 0 0 18px;
    border-bottom: 1px solid rgba(71, 85, 105, 0.12);
}

.contact-form-head h3 {
    margin: 10px 0 10px;
    color: var(--navy);
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.18rem, 1.8vw, 1.5rem);
    line-height: 1.24;
    letter-spacing: -0.03em;
}

.contact-form-head p {
    margin: 0;
    color: var(--slate);
    line-height: 1.68;
}

.contact-form label span {
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.form-field {
    padding: 16px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(244, 247, 250, 0.9), rgba(255, 255, 255, 0.98));
    border: 1px solid rgba(71, 85, 105, 0.12);
}

.form-field-message {
    gap: 10px;
    padding: 18px;
}

.contact-form input,
.contact-form textarea,
.login-card input,
.admin-panel select,
.admin-panel textarea {
    width: 100%;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid rgba(71, 85, 105, 0.18);
    background: #fbfdfe;
    color: var(--ink);
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(90, 104, 127, 0.72);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(15, 163, 163, 0.48);
    box-shadow: 0 0 0 4px rgba(15, 163, 163, 0.12);
    background: var(--white);
}

.contact-form textarea {
    min-height: 156px;
    resize: vertical;
}

.contact-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 6px;
}

.contact-submit {
    flex: 0 0 auto;
    min-width: 280px;
}

.contact-points,
.landing-points {
    padding-left: 18px;
    color: var(--slate);
    line-height: 1.9;
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-card p {
    margin: 0;
}

.faq-shell {
    max-width: 100%;
}

.faq-shell h2 {
    max-width: 1120px;
}

.faq-list {
    gap: 14px;
}

.faq-card {
    padding: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
    overflow: hidden;
}

.faq-card:hover {
    transform: none;
}

.faq-question {
    position: relative;
    display: block;
    padding: 24px 68px 24px 28px;
    color: var(--navy);
    font-family: 'Sora', sans-serif;
    font-size: 1.06rem;
    font-weight: 700;
    line-height: 1.38;
    letter-spacing: -0.02em;
    cursor: pointer;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 26px;
    transform: translateY(-50%);
    color: var(--petrol);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1;
}

.faq-card[open] .faq-question::after {
    content: "−";
}

.faq-answer {
    padding: 0 28px 24px;
    border-top: 1px solid rgba(71, 85, 105, 0.12);
}

.faq-answer p {
    margin: 18px 0 0;
    color: var(--slate);
    line-height: 1.72;
}

.review-topline {
    justify-content: space-between;
    gap: 12px;
}

.review-card small {
    color: var(--slate);
}

.landing-shell {
    padding: 32px 0 18px;
}

.landing-copy .button-secondary {
    color: var(--white);
}

.error-page {
    padding: 72px 0 84px;
}

.error-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 24px;
    align-items: stretch;
}

.error-panel,
.error-guide {
    border-radius: var(--radius);
    border: 1px solid rgba(11, 29, 58, 0.08);
    box-shadow: var(--shadow);
}

.error-panel {
    padding: 34px;
    background: linear-gradient(180deg, #07172b, #0f2948);
}

.error-panel .eyebrow,
.error-panel h1,
.error-panel p {
    color: var(--white);
}

.error-panel h1 {
    margin: 18px 0 14px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.1rem, 3vw, 3.2rem);
    line-height: 1.06;
    letter-spacing: -0.05em;
}

.error-panel p {
    max-width: 780px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.02rem;
    line-height: 1.74;
}

.error-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.error-button-secondary {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.error-guide {
    display: flex;
    flex-direction: column;
    padding: 30px;
    background: rgba(255, 255, 255, 0.96);
}

.error-guide-list {
    display: grid;
    gap: 14px;
    margin-top: 16px;
}

.error-guide-item {
    padding: 16px 0 18px;
    border-bottom: 1px solid rgba(11, 29, 58, 0.08);
}

.error-guide-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.error-guide-item strong {
    display: block;
    margin-bottom: 7px;
    color: var(--navy);
    font-size: 1rem;
    line-height: 1.35;
}

.error-guide-item p {
    margin: 0;
    color: var(--slate);
    line-height: 1.68;
}

.cta-panel {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.cta-panel p {
    max-width: 100%;
}

.cta-panel .cta-actions {
    margin-top: auto;
    padding-top: 24px;
}

.site-footer {
    padding: 34px 0 22px;
    background: #07101d;
    color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 24px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    padding: 14px 22px;
    margin-bottom: 16px;
    border-radius: 18px;
    background: #f8fbfd;
    border: 1px solid rgba(15, 163, 163, 0.16);
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.26);
}

.footer-logo {
    width: 220px;
    margin-bottom: 0;
    filter: none;
}

.footer-label {
    margin: 0 0 10px;
    color: var(--white);
    font-weight: 800;
}

.footer-copy,
.footer-bottom small,
.site-footer span,
.site-footer a {
    color: rgba(255, 255, 255, 0.76);
    display: block;
    line-height: 1.8;
}

.footer-bottom {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-shell {
    padding: 56px 0 96px;
}

.admin-stats {
    gap: 18px;
    flex-wrap: wrap;
    margin: 24px 0 30px;
}

.admin-stat {
    min-width: 160px;
    padding: 18px 20px;
    border-radius: 22px;
    background: var(--white);
    border: 1px solid rgba(11, 29, 58, 0.08);
}

.table-meta {
    justify-content: space-between;
    gap: 12px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(11, 29, 58, 0.08);
    text-align: left;
    vertical-align: top;
}

.status-pill {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(15, 163, 163, 0.12);
    color: var(--petrol);
    font-size: 0.82rem;
    font-weight: 800;
}

.login-shell {
    min-height: calc(100vh - 200px);
    display: grid;
    place-items: center;
    padding: 52px 20px 90px;
}

.login-card {
    width: min(100%, 460px);
}

.form-feedback {
    min-height: 24px;
    margin: 0;
    color: var(--petrol);
    font-weight: 700;
    line-height: 1.4;
}

@media (max-width: 1100px) {
    .hero-shell,
    .landing-shell,
    .overview-shell,
    .process-grid,
    .services-foundation-shell,
    .contact-shell,
    .map-shell,
    .privacy-grid,
    .authority-grid,
    .pain-grid,
    .cards-grid-services,
    .admin-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-panel-grid,
    .overview-list {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 980px) {
    .site-nav {
        position: fixed;
        inset: 59px 0 0 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 16px;
        padding: 24px 24px 32px;
        border-radius: 0;
        background: #f7fafc;
        border: 0;
        box-shadow: var(--shadow);
        min-height: calc(100vh - 59px);
        overflow-y: auto;
    }

    .site-nav.is-open {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }
}

@media (max-width: 820px) {
    .hero-card {
        display: none;
    }

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

@media (max-width: 720px) {
    .section {
        padding: 68px 0;
    }

    .reviews-shell {
        padding: 28px 22px;
    }

    .reviews-cta {
        flex-direction: column;
        align-items: stretch;
        padding: 22px;
    }

    .reviews-google-button {
        width: 100%;
        min-width: 0;
    }

    .contact-form-grid,
    .cards-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .services-shell {
        gap: 24px;
    }

    .services-foundation {
        margin-top: 24px;
        padding-top: 24px;
    }

    .services-foundation-copy {
        padding: 22px;
    }

    .services-foundation-copy p {
        max-width: 100%;
    }

    .service-card-refined,
    .authority-card-compact,
    .review-card-refined {
        padding: 22px;
    }

    .container {
        width: min(calc(100% - 40px), var(--max));
    }

    .button {
        width: 100%;
    }

    .brand-logo {
        width: 152px;
    }

    .hero-premium {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .hero-copy h1 {
        font-size: clamp(1.8rem, 7.2vw, 2.6rem);
        line-height: 1.12;
    }

    .hero-copy .lead {
        font-size: 0.98rem;
    }

    .hero-copy .button-secondary {
        display: none;
    }

    .hero-showcase {
        padding: 24px 22px;
        animation: none;
    }

    .hero-panel {
        grid-template-columns: 98px minmax(0, 1fr);
        min-height: auto;
        padding: 18px 16px;
        column-gap: 12px;
    }

    .hero-note {
        margin-top: 16px;
        padding: 18px;
    }

    .section-heading h2,
    .overview-copy h2,
    .cta-panel h2,
    .privacy-content h2,
    .landing-copy h1,
    .contact-copy h2 {
        font-size: clamp(1.65rem, 6.2vw, 2.2rem);
        line-height: 1.12;
    }

    .risk-shell {
        padding: 30px 24px;
    }

    .risk-card {
        padding: 24px 22px;
    }

    .map-panel {
        order: 2;
    }

    .map-placeholder {
        display: block;
    }

    .map-panel-compact iframe {
        display: block;
        height: 140px;
        margin-top: 12px;
    }

    .map-button {
        width: 100%;
    }

    .contact-copy,
    .contact-form,
    .cta-panel {
        padding: 22px;
    }

    .error-shell {
        grid-template-columns: 1fr;
    }

    .error-panel,
    .error-guide {
        padding: 24px 22px;
    }


    .contact-form-head {
        padding-bottom: 16px;
    }

    .form-field,
    .form-field-message {
        padding: 14px;
    }

    .contact-form-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-submit {
        width: 100%;
        min-width: 0;
    }
}
