:root {
    color-scheme: light;
    --bg: #f6f7f8;
    --bg-soft: #eef2f6;
    --bg-panel: #ffffff;
    --surface: #ffffff;
    --surface-alt: #f8fafc;
    --surface-tint: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
    --line: rgba(15, 23, 42, 0.08);
    --line-strong: rgba(15, 23, 42, 0.14);
    --text: #111827;
    --text-soft: #374151;
    --muted: #6b7280;
    --yellow: #f4c414;
    --yellow-deep: #d4a80d;
    --yellow-soft: rgba(244, 196, 20, 0.16);
    --blue: #2563eb;
    --blue-soft: rgba(37, 99, 235, 0.1);
    --success: #059669;
    --danger: #dc2626;
    --shadow: 0 26px 70px rgba(15, 23, 42, 0.08);
    --shadow-soft: 0 16px 36px rgba(15, 23, 42, 0.06);
    --radius: 32px;
    --radius-card: 24px;
    --radius-sm: 18px;
    --container: min(1240px, calc(100vw - 32px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 112px;
}

body {
    margin: 0;
    font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
    color: var(--text);
    line-height: 1.7;
    background:
        radial-gradient(circle at 10% 0, rgba(244, 196, 20, 0.12), transparent 22%),
        radial-gradient(circle at 88% 8%, rgba(37, 99, 235, 0.08), transparent 20%),
        linear-gradient(180deg, #fbfcfe 0%, #f6f7f8 44%, #eef2f6 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(17, 24, 39, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 24, 39, 0.028) 1px, transparent 1px);
    background-size: 78px 78px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 92%);
}

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

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

picture {
    display: block;
}

.site-shell {
    position: relative;
    overflow: clip;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.narrow {
    max-width: 820px;
}

.topbar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 86px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand-mark-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--yellow), #ffe27b);
    color: #121417;
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    box-shadow: 0 16px 28px rgba(244, 196, 20, 0.22);
}

.brand-copy strong,
.brand-copy small {
    display: block;
}

.brand-copy strong {
    margin-bottom: 2px;
    font-size: 1.18rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.brand-copy strong span {
    color: var(--yellow-deep);
}

.brand-copy small {
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}

.nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav a {
    color: var(--text-soft);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.nav a:hover,
.nav a.is-active {
    color: var(--text);
}

.nav-toggle {
    display: none;
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.92);
    color: var(--text);
    border-radius: 999px;
    padding: 10px 16px;
    font: inherit;
    font-weight: 700;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    letter-spacing: 0.02em;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: linear-gradient(135deg, var(--yellow), #ffe382);
    color: #101317;
    box-shadow: 0 18px 38px rgba(244, 196, 20, 0.22);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.96);
    border-color: var(--line-strong);
    color: var(--text);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
}

.button-secondary:hover {
    border-color: rgba(244, 196, 20, 0.45);
}

.nav-cta {
    margin-left: 10px;
}

.hero,
.page-hero {
    position: relative;
    padding: 146px 0 72px;
}

.hero-gridline {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 14% 24%, rgba(244, 196, 20, 0.1), transparent 18%),
        radial-gradient(circle at 86% 16%, rgba(37, 99, 235, 0.08), transparent 18%);
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(120px);
    pointer-events: none;
}

.hero-glow-left {
    top: 104px;
    left: -90px;
    width: 360px;
    height: 360px;
    background: rgba(244, 196, 20, 0.16);
}

.hero-glow-right {
    top: 130px;
    right: -110px;
    width: 420px;
    height: 420px;
    background: rgba(37, 99, 235, 0.1);
}

.hero-grid,
.feature-grid,
.two-col,
.cta-banner-inner,
.footer-grid,
.faq-grid {
    display: grid;
    gap: 28px;
}

.hero-grid {
    position: relative;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.hero-copy-column {
    position: relative;
    z-index: 1;
}

.hero-kicker {
    margin-bottom: 18px;
}

.hero-kicker-badge,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    color: #8a6700;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: rgba(244, 196, 20, 0.12);
    border: 1px solid rgba(244, 196, 20, 0.18);
}

.eyebrow {
    padding: 0;
    border: 0;
    background: transparent;
}

h1,
h2,
h3 {
    margin: 0 0 16px;
    line-height: 1.06;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text);
    text-wrap: balance;
}

h1 {
    font-size: clamp(3rem, 5.1vw, 5.5rem);
    max-width: 12ch;
}

h2 {
    font-size: clamp(2rem, 3vw, 3.45rem);
}

h3 {
    font-size: 1.25rem;
}

.card h2,
.card h3,
.feature-panel h3,
.info-panel h3,
.faq-item h2 {
    font-size: clamp(1.16rem, 2vw, 1.5rem);
}

p {
    margin: 0 0 16px;
    color: var(--text-soft);
}

.hero-copy,
.page-intro {
    max-width: 62ch;
    font-size: 1.08rem;
}

.page-hero h1 {
    max-width: 14ch;
    font-size: clamp(2.6rem, 4.2vw, 4.4rem);
}

.section-subcopy {
    max-width: 72ch;
    color: var(--muted);
}

.hero-actions,
.section-actions,
.public-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-actions {
    margin: 30px 0;
}

.badge-row,
.category-pills,
.breadcrumb-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--text-soft);
    font-size: 0.92rem;
    font-weight: 600;
}

.badge.is-active {
    background: rgba(244, 196, 20, 0.15);
    border-color: rgba(244, 196, 20, 0.34);
    color: var(--text);
}

.hero-panel,
.feature-panel,
.info-panel,
.card,
.location-card,
.contact-card,
.faq-item,
.note-box,
.public-flash {
    position: relative;
    padding: 26px;
    border-radius: var(--radius-card);
    background: var(--surface-tint);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.hero-panel::before,
.feature-panel::before,
.info-panel::before,
.card::before,
.location-card::before,
.contact-card::before,
.faq-item::before,
.note-box::before,
.public-flash::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, var(--yellow), transparent);
}

.electric-panel {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.98)),
        radial-gradient(circle at 100% 0, rgba(37, 99, 235, 0.06), transparent 36%);
}

.hero-figure,
.card-media {
    margin: 0 0 22px;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(180deg, #f7fafc 0%, #eef3f7 100%);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.card-media {
    border-radius: 18px;
}

.hero-image,
.card-media-image,
.section-illustration,
.news-detail-image,
.location-thumb {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.hero-image {
    aspect-ratio: 4 / 3;
}

.card-media-image {
    aspect-ratio: 16 / 10;
}

.location-thumb {
    margin-bottom: 14px;
}

.section-illustration {
    margin-bottom: 20px;
    border-radius: 20px;
    background: linear-gradient(180deg, #f7fafc 0%, #eef3f7 100%);
}

.news-detail-image {
    margin-bottom: 18px;
    border-radius: 22px;
    border: 1px solid var(--line);
}

.panel-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.panel-label {
    display: block;
    margin-bottom: 6px;
    color: #8a6700;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.metric-stack,
.faq-list,
.contact-stack,
.stats-grid,
.card-grid,
.location-grid,
.value-grid,
.process-grid {
    display: grid;
    gap: 18px;
}

.metric {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(244, 247, 250, 0.86);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.metric strong,
.feature-panel strong,
.info-panel strong,
.location-card strong,
.contact-card strong,
.stat-card strong {
    display: block;
    margin-bottom: 6px;
}

.metric span:last-child,
.location-card span:last-child,
.contact-card span:last-child {
    color: var(--muted);
}

.status-line {
    margin-top: 20px;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 999px;
    background: rgba(5, 150, 105, 0.08);
    border: 1px solid rgba(5, 150, 105, 0.16);
    color: var(--text);
    font-weight: 700;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--success);
    box-shadow: 0 0 0 6px rgba(5, 150, 105, 0.1);
}

.icon-badge {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: #8a6700;
    background: rgba(244, 196, 20, 0.12);
    border: 1px solid rgba(244, 196, 20, 0.18);
    flex-shrink: 0;
}

.icon {
    width: 18px;
    height: 18px;
}

.stats-section {
    padding: 0 0 48px;
}

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

.stat-card {
    padding: 28px 24px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.94);
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.stat-card .icon-badge {
    margin: 0 auto 16px;
}

.stat-card strong {
    margin-bottom: 8px;
    font-size: clamp(2rem, 4vw, 2.7rem);
}

.stat-card span:last-child {
    display: block;
    color: var(--muted);
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section {
    padding: 56px 0;
}

.section-soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(238, 242, 246, 0.16));
}

.section-heading {
    margin-bottom: 28px;
    max-width: 76ch;
}

.section-heading-spaced {
    margin-top: 44px;
}

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

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

.project-grid-2,
.two-col,
.feature-grid,
.cta-banner-inner,
.faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

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

.value-grid {
    grid-template-columns: 1fr;
    margin-top: 24px;
}

.process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
}

.card-top,
.step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.card-signal {
    width: 58px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--yellow), var(--blue), transparent);
}

.card-tag,
.step-number {
    color: #8a6700;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blue);
    font-weight: 800;
}

.text-link::after {
    content: ">";
}

.check-list,
.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--yellow);
    box-shadow: 0 0 0 6px rgba(244, 196, 20, 0.12);
}

.process-grid article,
.value-grid article {
    padding: 20px;
    border-radius: 22px;
    background: rgba(248, 250, 252, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.coverage-strip {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px 16px;
    align-items: start;
    margin-top: 24px;
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
}

.coverage-strip strong {
    color: #8a6700;
}

.page-hero {
    background:
        radial-gradient(circle at 84% 18%, rgba(37, 99, 235, 0.08), transparent 18%),
        radial-gradient(circle at 16% 18%, rgba(244, 196, 20, 0.12), transparent 16%);
}

.breadcrumb-row {
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 0.84rem;
}

.breadcrumb-link:hover {
    color: var(--blue);
}

.breadcrumb-separator {
    color: rgba(17, 24, 39, 0.24);
}

.contact-card,
.location-card {
    display: grid;
    gap: 10px;
}

.contact-card.static {
    cursor: default;
}

.note-box {
    margin-top: 24px;
    background: linear-gradient(180deg, rgba(244, 196, 20, 0.08), rgba(255, 255, 255, 0.98));
    border-color: rgba(244, 196, 20, 0.16);
}

.guide-copy {
    display: grid;
    gap: 4px;
}

.guide-copy p:last-child,
.note-box p:last-child,
.card p:last-child,
.feature-panel p:last-child,
.info-panel p:last-child,
.faq-item p:last-child {
    margin-bottom: 0;
}

.flash-stack {
    display: grid;
    gap: 10px;
    margin-top: 104px;
}

#contact-form,
section[id] {
    scroll-margin-top: 112px;
}

.public-flash {
    padding: 14px 16px;
}

.public-flash-success {
    border-color: rgba(5, 150, 105, 0.18);
}

.public-flash-error {
    border-color: rgba(220, 38, 38, 0.2);
}

.public-form {
    display: grid;
    gap: 18px;
    width: 100%;
}

.request-type-fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

.request-type-fieldset legend {
    margin-bottom: 12px;
    padding: 0;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 800;
}

.request-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.request-type-card {
    position: relative;
    display: grid;
    gap: 12px;
    min-height: 138px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.request-type-card:hover,
.request-type-card.is-selected,
.request-type-card:focus-within {
    border-color: rgba(244, 196, 20, 0.4);
    box-shadow: 0 20px 40px rgba(244, 196, 20, 0.12);
    transform: translateY(-1px);
}

.request-type-card input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.request-type-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: #7b5a00;
    background: rgba(244, 196, 20, 0.14);
    border: 1px solid rgba(244, 196, 20, 0.18);
}

.request-type-icon svg {
    width: 18px;
    height: 18px;
}

.request-type-copy {
    display: grid;
    gap: 8px;
}

.request-type-copy strong {
    font-size: 1rem;
    line-height: 1.25;
}

.request-type-copy small {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.form-support-copy,
.plan-audience {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.guided-form-shell {
    display: grid;
    gap: 14px;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 252, 0.96)),
        radial-gradient(circle at 0 0, rgba(244, 196, 20, 0.12), transparent 30%);
    box-shadow: var(--shadow-soft);
}

.guided-form-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.guided-form-step {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 12px 14px;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.88);
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 700;
}

.guided-form-step strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    color: var(--text);
    font-size: 0.86rem;
}

.guided-form-step.is-active {
    border-color: rgba(244, 196, 20, 0.26);
    background: linear-gradient(135deg, rgba(244, 196, 20, 0.12), rgba(255, 255, 255, 0.96));
    color: var(--text);
}

.guided-form-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 16px;
    align-items: start;
}

.guided-form-summary,
.guided-form-next {
    padding: 18px;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.92);
}

.guided-form-kicker {
    margin-bottom: 10px;
    color: #8a6500;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.guided-form-summary h3 {
    margin-bottom: 12px;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.guided-form-summary p:last-child,
.guided-form-next p:last-child {
    margin-bottom: 0;
}

.guided-form-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.guided-form-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(244, 196, 20, 0.12);
    border: 1px solid rgba(244, 196, 20, 0.18);
    color: #7b5a00;
    font-size: 0.78rem;
    font-weight: 800;
}

.guided-form-pill.is-neutral {
    background: rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.12);
    color: #1e55c5;
}

.guided-form-next strong {
    display: block;
    margin-bottom: 10px;
    color: var(--text);
    font-size: 0.96rem;
}

.guided-checklist {
    display: grid;
    gap: 10px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.guided-checklist li {
    position: relative;
    padding-left: 24px;
    color: var(--text-soft);
    font-size: 0.95rem;
}

.guided-checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.58rem;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--yellow), #ffd95f);
    box-shadow: 0 0 0 4px rgba(244, 196, 20, 0.12);
}

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

.public-form label {
    display: grid;
    gap: 8px;
    color: var(--text);
    font-weight: 600;
}

.public-form input,
.public-form select,
.public-form textarea {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: rgba(255, 255, 255, 0.96);
    color: var(--text);
    padding: 13px 14px;
    font: inherit;
}

.public-form input::placeholder,
.public-form textarea::placeholder {
    color: rgba(107, 114, 128, 0.72);
}

.field-inline-note {
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.6;
}

.public-form [data-field-role] {
    position: relative;
    transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.public-form [data-field-role].is-hidden {
    display: none;
}

.public-form [data-field-role].is-required-context,
.public-form [data-field-role].is-recommended-context {
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(248, 250, 252, 0.86);
}

.public-form [data-field-role].is-required-context {
    border-color: rgba(244, 196, 20, 0.28);
    box-shadow: 0 16px 32px rgba(244, 196, 20, 0.08);
}

.public-form [data-field-role].is-recommended-context {
    border-color: rgba(37, 99, 235, 0.14);
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.06);
}

.public-form .full-width {
    grid-column: 1 / -1;
}

.consent-check {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: start;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.92);
    color: var(--muted);
    font-size: 0.94rem;
}

.consent-check input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.consent-check span {
    line-height: 1.6;
}

.cta-banner {
    padding-bottom: 96px;
}

.cta-banner-inner {
    padding: 30px;
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(244, 196, 20, 0.12), rgba(37, 99, 235, 0.05)),
        #ffffff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.category-pills {
    margin-bottom: 22px;
}

.footer {
    padding: 56px 0 124px;
    background: linear-gradient(180deg, #f5f7fa 0%, #edf2f7 100%);
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.footer-grid {
    grid-template-columns: 1.2fr 0.9fr 0.9fr 0.95fr;
    align-items: start;
    margin-bottom: 28px;
}

.footer-brand-mark {
    margin-bottom: 18px;
}

.footer h3 {
    margin-bottom: 14px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.footer li + li {
    margin-top: 10px;
}

.footer a {
    color: var(--text-soft);
}

.footer a:hover {
    color: var(--blue);
}

.footer-bottom {
    padding-top: 22px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.footer-bottom p {
    margin: 0;
    color: var(--muted);
    font-size: 0.86rem;
}

.testimonial-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.testimonial-card {
    gap: 14px;
}

.testimonial-quote {
    margin: 0;
    color: var(--ink);
    font-weight: 600;
    line-height: 1.75;
}

.testimonial-meta {
    color: var(--muted);
    font-size: 0.95rem;
}

.plan-card .check-list {
    margin-top: 18px;
}

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

.plan-card.is-featured {
    border-color: rgba(37, 99, 235, 0.18);
    box-shadow: 0 26px 52px rgba(37, 99, 235, 0.08);
}

.plan-price {
    margin: 10px 0 8px;
    font-size: 1.35rem;
    line-height: 1.2;
    font-weight: 800;
    color: var(--ink);
}

.plan-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.button-small {
    min-height: 40px;
    padding: 0 14px;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.compact-process-grid {
    gap: 14px;
}

.compact-process-grid article {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.comparison-table-card {
    padding: 0;
}

.comparison-table {
    min-width: 720px;
}

.comparison-table td:not(:first-child),
.comparison-table th:not(:first-child) {
    text-align: center;
}

.portal-value-grid {
    margin-top: 22px;
}

.checkout-summary-card {
    gap: 14px;
}

.note-box-success {
    border-color: rgba(22, 163, 74, 0.18);
    background: linear-gradient(180deg, rgba(236, 253, 245, 0.95), rgba(255, 255, 255, 0.96));
}

.portal-card-grid {
    margin-top: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mobile-cta {
    position: fixed;
    left: 50%;
    bottom: 14px;
    z-index: 35;
    transform: translateX(-50%);
    width: min(580px, calc(100vw - 20px));
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.mobile-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 18px;
    font-weight: 900;
}

.mobile-cta a:first-child {
    background: linear-gradient(135deg, var(--yellow), #ffe382);
    color: #101317;
}

.mobile-cta a:last-child {
    background: rgba(255, 255, 255, 0.96);
    color: var(--text);
    border: 1px solid var(--line);
}

@media (max-width: 1120px) {
    .card-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

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

@media (max-width: 980px) {
    .hero-grid,
    .feature-grid,
    .two-col,
    .cta-banner-inner,
    .project-grid-2,
    .card-grid,
    .plan-grid-3,
    .card-grid-4,
    .portal-card-grid,
    .location-grid,
    .faq-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav {
        position: absolute;
        top: 84px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 20px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 24px;
        box-shadow: var(--shadow);
    }

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

    .nav-cta {
        margin-left: 0;
        width: 100%;
    }

    .hero,
    .page-hero {
        padding-top: 122px;
    }

    .hero-panel,
    .feature-panel,
    .info-panel,
    .card,
    .location-card,
    .contact-card,
    .faq-item,
    .note-box,
    .public-flash,
    .cta-banner-inner {
        padding: 22px;
    }

    .mobile-cta {
        display: grid;
    }

    .footer {
        padding-bottom: 140px;
    }

    .guided-form-panel {
        grid-template-columns: 1fr;
    }

    .guided-form-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100vw - 24px, 100%);
    }

    .hero,
    .page-hero {
        padding-top: 116px;
    }

    .topbar-inner {
        min-height: 78px;
    }

    .stats-grid,
    .request-type-grid,
    .public-form-grid,
    .process-grid,
    .guided-form-steps {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 46px 0;
    }

    .button {
        width: 100%;
    }

    .hero-actions,
    .section-actions,
    .public-form-actions {
        flex-direction: column;
    }

    .coverage-strip {
        grid-template-columns: 1fr;
    }

    .brand-copy small {
        max-width: 18ch;
    }

    .guided-form-shell,
    .guided-form-summary,
    .guided-form-next {
        padding: 16px;
    }
}
