:root {
    --bg: #f3f5f7;
    --surface: #ffffff;
    --surface-alt: #111827;
    --text: #0f172a;
    --muted: #475569;
    --line: rgba(15, 23, 42, 0.1);
    --accent: #e11d48;
    --accent-dark: #be123c;
    --accent-soft: #ffe4e6;
    --shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    --radius: 24px;
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Trebuchet MS", Verdana, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(225, 29, 72, 0.08), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
    color: var(--text);
    line-height: 1.6;
}

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

img {
    max-width: 100%;
    height: auto;
}

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

.topbar {
    background: #0f172a;
    color: #e2e8f0;
    font-size: 0.9rem;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--line);
}

.header-inner,
.hero-grid,
.content-grid,
.footer-grid,
.split-section,
.cta-banner {
    display: grid;
    gap: 24px;
}

.header-inner {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: 88px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: var(--accent);
    color: #fff;
    font-size: 1.35rem;
}

.brand-block {
    display: grid;
    gap: 2px;
}

.brand-subtitle {
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 600;
}

.nav-list,
.footer-nav,
.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.95rem;
    justify-content: center;
}

.nav-list a {
    font-weight: 700;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
}

.hero,
.section {
    padding: 88px 0;
}

.hero-grid,
.split-section,
.content-grid,
.footer-grid,
.cta-banner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
}

.hero-home {
    padding-top: 68px;
}

.hero-grid-home {
    align-items: stretch;
}

.eyebrow {
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.75rem;
    color: var(--accent-dark);
}

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

h1 {
    font-size: clamp(2.8rem, 6vw, 5.4rem);
    max-width: 11ch;
}

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

.hero-copy,
.section-heading,
.post-meta,
.site-footer p,
.stats-card p {
    color: var(--muted);
}

.hero-panel,
.info-card,
.post-card,
.page-card,
.stats-card,
.cta-banner,
.sidebar-area .widget,
.review-card,
.gallery-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-panel,
.info-card,
.post-card,
.page-card,
.stats-card,
.cta-banner,
.sidebar-area .widget,
.review-card,
.gallery-card {
    padding: 28px;
}

.panel-label {
    margin-top: 0;
    font-size: 0.85rem;
    color: var(--muted);
}

.feature-list li,
.footer-nav li,
.sidebar-area .widget {
    margin-bottom: 12px;
}

.compact-list li:last-child,
.footer-nav li:last-child {
    margin-bottom: 0;
}

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

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.hero-badges span {
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-size: 0.85rem;
    font-weight: 700;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover,
.header-cta:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--accent);
    color: #fff;
}

.button-primary:hover,
.header-cta:hover {
    background: var(--accent-dark);
}

.button-secondary {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.88);
}

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

.section-muted {
    background: rgba(255, 255, 255, 0.4);
}

.section-dark {
    background: #0f172a;
    color: #fff;
}

.section-dark .eyebrow,
.section-dark .section-heading,
.section-dark p {
    color: #cbd5e1;
}

.centered {
    text-align: center;
}

.review-grid,
.gallery-grid {
    display: grid;
    gap: 20px;
}

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

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

.stars {
    color: #fbbf24;
    letter-spacing: 0.12em;
}

.split-section-wide {
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
}

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

.gallery-card {
    min-height: 220px;
    display: flex;
    align-items: end;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.06), rgba(15, 23, 42, 0.78)),
        linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

.gallery-card span {
    color: #fff;
    font-weight: 700;
}

.content-grid {
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    padding: 72px 0;
    align-items: start;
}

.content-area {
    display: grid;
    gap: 20px;
}

.page-shell {
    padding: 72px 0;
}

.entry-content > *:first-child {
    margin-top: 0;
}

.site-footer {
    padding: 52px 0 28px;
    border-top: 1px solid var(--line);
    background: #0b1220;
    color: #e2e8f0;
}

.site-footer h2,
.site-footer a,
.site-footer strong {
    color: #fff;
}

.footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    align-items: start;
}

.footer-bottom {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-end;
}

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

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 900px) {
    .hero-grid,
    .split-section,
    .content-grid,
    .footer-grid,
    .cta-banner,
    .card-grid,
    .header-inner,
    .review-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .main-nav {
        overflow-x: auto;
    }

    .topbar-inner,
    .footer-bottom,
    .contact-actions {
        justify-content: flex-start;
    }

    .header-cta {
        display: none;
    }

    h1 {
        max-width: none;
    }
}

:root {
    --bg: #f2fbfb;
    --surface: #ffffff;
    --surface-alt: #082d34;
    --text: #10242d;
    --muted: #58707a;
    --line: rgba(16, 36, 45, 0.12);
    --accent: #16b7c8;
    --accent-dark: #0d8795;
    --accent-soft: #def9fc;
    --highlight: #ff8d4d;
    --highlight-soft: #fff0e7;
    --shadow: 0 26px 60px rgba(9, 38, 45, 0.12);
    --radius: 28px;
}

body {
    font-family: "Segoe UI Variable Text", "Trebuchet MS", "Lucida Sans Unicode", sans-serif;
    background:
        radial-gradient(circle at top right, rgba(22, 183, 200, 0.18), transparent 24%),
        radial-gradient(circle at left center, rgba(255, 141, 77, 0.12), transparent 20%),
        linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

h1,
h2,
h3 {
    font-family: "Aptos Display", "Trebuchet MS", "Gill Sans", sans-serif;
}

.header-actions,
.hero-metrics,
.domain-grid,
.campaign-grid,
.hosting-grid,
.process-grid,
.feature-grid,
.stat-grid,
.software-grid,
.reference-grid,
.testimonial-grid,
.blog-grid,
.partner-grid,
.footer-link-groups {
    display: grid;
    gap: 20px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(16, 36, 45, 0.06);
    box-shadow: 0 18px 45px rgba(9, 38, 45, 0.08);
}

.header-inner {
    grid-template-columns: auto auto 1fr auto;
    align-items: center;
    min-height: 98px;
    gap: 18px;
}

.brand {
    padding: 10px 14px 10px 10px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(16, 36, 45, 0.08);
    box-shadow: 0 14px 34px rgba(9, 38, 45, 0.08);
}

.brand .custom-logo {
    max-height: 58px;
    width: auto;
}

.brand-mark {
    background: linear-gradient(135deg, #082d34 0%, #16b7c8 100%);
    box-shadow: 0 16px 32px rgba(8, 45, 52, 0.22);
}

.brand-text {
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand-subtitle {
    letter-spacing: 0.02em;
}

.nav-list a {
    position: relative;
}

.nav-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    background: linear-gradient(90deg, var(--accent) 0%, var(--highlight) 100%);
    transition: transform 180ms ease;
}

.nav-list a:hover::after {
    transform: scaleX(1);
}

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

.header-actions {
    grid-auto-flow: column;
    gap: 14px;
    align-items: center;
}

.header-call {
    display: grid;
    gap: 2px;
    padding: 11px 18px;
    border-radius: 22px;
    background: linear-gradient(135deg, #082d34 0%, #0f5965 100%);
    color: #fff;
    box-shadow: 0 18px 34px rgba(8, 45, 52, 0.2);
}

.header-call-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.72);
}

.header-call-number {
    font-size: 1.08rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.header-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(16, 36, 45, 0.08);
    background: rgba(255, 255, 255, 0.92);
    color: var(--text);
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(9, 38, 45, 0.08);
}

.header-cta {
    box-shadow: 0 18px 34px rgba(13, 135, 149, 0.24);
}

.hero-section {
    padding: 80px 0 92px;
}

.hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: start;
    gap: 28px;
}

.hero-copy h1 {
    max-width: 10ch;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.hero-description {
    max-width: 62ch;
    color: var(--muted);
    font-size: 1.08rem;
}

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

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

.hero-metrics div,
.stat-card {
    padding: 20px 22px;
    border: 1px solid rgba(16, 36, 45, 0.08);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(241, 252, 253, 0.92) 100%);
}

.hero-metrics strong,
.stat-card strong {
    display: block;
    font-size: 1.25rem;
}

.hero-metrics span,
.stat-card span {
    color: var(--muted);
    font-size: 0.92rem;
}

.hero-visual {
    display: grid;
    gap: 18px;
}

.hero-orbit-card,
.service-spotlight,
.domain-card,
.campaign-card,
.hosting-card,
.step-card,
.software-card,
.reference-card,
.testimonial-card,
.stat-card,
.editorial-card,
.form-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-orbit-card {
    padding: 28px;
    background:
        radial-gradient(circle at top right, rgba(22, 183, 200, 0.18), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f4fcfd 100%);
}

.hero-orbit-card img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-service-stack {
    display: grid;
    gap: 16px;
}

.service-spotlight,
.domain-card,
.campaign-card,
.step-card,
.software-card,
.reference-card,
.testimonial-card {
    padding: 24px;
}

.service-card,
.step-card,
.testimonial-card,
.area-card,
.faq-card,
.hero-orbit-card,
.contact-card,
.stat-card {
    position: relative;
    overflow: hidden;
}

.service-card::before,
.step-card::before,
.testimonial-card::before,
.area-card::before,
.faq-card::before,
.hero-orbit-card::before,
.contact-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--highlight) 100%);
}

.mini-eyebrow {
    margin: 0 0 10px;
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.73rem;
    font-weight: 700;
}

.text-link {
    color: var(--accent-dark);
    font-weight: 800;
}

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

.service-spotlight h2,
.domain-card h3,
.campaign-card h3,
.step-card h3,
.software-card h3,
.reference-card h3,
.testimonial-card h3 {
    font-size: 1.35rem;
}

.domain-grid,
.hosting-grid,
.feature-grid,
.software-grid,
.reference-grid,
.blog-grid,
.partner-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 24px;
}

.domain-card,
.step-card,
.stat-card,
.partner-badge {
    text-align: center;
}

.domain-badge,
.campaign-badge {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--highlight-soft);
    color: #a95013;
    font-size: 0.82rem;
    font-weight: 700;
}

.campaign-badge {
    margin-bottom: 14px;
}

.price-line {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px;
    margin: 16px 0;
}

.price-line span {
    color: var(--muted);
    text-decoration: line-through;
}

.price-line strong {
    font-size: 1.5rem;
    color: var(--text);
}

.price-line small {
    color: var(--muted);
}

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

.step-index {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    margin-bottom: 14px;
    background: rgba(255, 255, 255, 0.12);
    font-weight: 800;
}

.support-strip .cta-banner {
    background: linear-gradient(135deg, #08353d 0%, #0f5965 100%);
    color: #effcfe;
    border: none;
}

.support-strip .eyebrow,
.support-strip p,
.support-strip h2 {
    color: #effcfe;
}

.reference-card,
.testimonial-card,
.software-card,
.campaign-card {
    min-height: 100%;
}

.stars {
    margin: 0 0 12px;
    color: #ffb43c;
    letter-spacing: 0.18em;
}

.testimonial-card span {
    color: var(--muted);
    display: block;
    margin-top: 6px;
}

.form-shell {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    align-items: start;
}

.form-card {
    padding: 28px;
}

.consultation-form,
.newsletter-form {
    display: grid;
    gap: 16px;
}

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

.consultation-form label,
.newsletter-form label {
    display: grid;
    gap: 8px;
    font-weight: 700;
}

.consultation-form span,
.newsletter-form span {
    font-size: 0.92rem;
}

.consultation-form input,
.consultation-form textarea,
.newsletter-form input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 14px 16px;
    font: inherit;
    color: var(--text);
    background: #fff;
}

.form-consent,
.newsletter-consent {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: start;
    color: var(--muted);
}

.form-consent input,
.newsletter-consent input {
    width: auto;
    margin-top: 4px;
}

.form-notice {
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 18px;
    font-weight: 700;
}

.notice-success {
    background: #ecfdf3;
    color: #166534;
}

.notice-error {
    background: #fff1f2;
    color: #b42318;
}

.page-hero {
    padding: 54px 0 20px;
}

.entry-card,
.editorial-card {
    padding: 28px;
}

.post-list-grid {
    display: grid;
    gap: 20px;
}

.partner-badge {
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.82);
    font-weight: 800;
}

.footer-grid-main {
    align-items: start;
}

.footer-nav-wrap,
.footer-newsletter,
.footer-link-column {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 24px;
}

.footer-link-groups {
    margin-top: 26px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

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

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

.satellite-home-hero {
    padding-top: 52px;
}

.section-head {
    max-width: 780px;
    margin: 0 auto 34px;
}

.section-copy {
    margin: 0;
    color: var(--muted);
}

.centered .section-copy {
    margin-left: auto;
    margin-right: auto;
}

.section-copy-light {
    color: #dbe7ea;
}

.check-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.check-list li {
    position: relative;
    padding-left: 28px;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--accent);
}

.service-card,
.area-card,
.faq-card {
    min-height: 100%;
}

.service-badge,
.area-label {
    display: inline-flex;
    width: fit-content;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
}

.service-badge {
    margin-bottom: 14px;
    background: var(--accent-soft);
    color: var(--accent-dark);
}

.area-label {
    background: var(--highlight-soft);
    color: #a95013;
}

.satellite-split,
.area-card {
    align-items: start;
}

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

.location-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 0 0 26px;
}

.location-pill {
    display: inline-flex;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

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

.contact-card {
    background: linear-gradient(135deg, #08353d 0%, #0f5965 100%);
    color: #effcfe;
    border: none;
}

.contact-card::before {
    background: linear-gradient(90deg, #7ce8f0 0%, #ffd0b7 100%);
}

.contact-card h2,
.contact-card strong,
.contact-card a {
    color: #ffffff;
}

.contact-card .section-copy {
    color: #d8f6f9;
}

.contact-detail-list {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.contact-detail-list li {
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-detail-list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.location-pill,
.service-card,
.step-card,
.area-card,
.faq-card,
.testimonial-card,
.hero-orbit-card,
.stat-card {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.location-pill:hover,
.service-card:hover,
.step-card:hover,
.area-card:hover,
.faq-card:hover,
.testimonial-card:hover,
.hero-orbit-card:hover,
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(9, 38, 45, 0.14);
}

body.nav-open {
    overflow: hidden;
}

@media (max-width: 1100px) {
    .process-grid,
    .stat-grid,
    .footer-link-groups,
    .satellite-process-grid,
    .area-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .domain-grid,
    .hosting-grid,
    .feature-grid,
    .software-grid,
    .reference-grid,
    .blog-grid,
    .partner-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .hero-grid,
    .campaign-grid,
    .testimonial-grid,
    .form-shell,
    .footer-grid-main,
    .content-grid,
    .footer-link-groups,
    .stat-grid,
    .domain-grid,
    .hosting-grid,
    .feature-grid,
    .software-grid,
    .reference-grid,
    .blog-grid,
    .partner-grid,
    .area-grid,
    .satellite-process-grid,
    .form-grid,
    .header-inner {
        grid-template-columns: 1fr;
    }

    .header-actions {
        grid-auto-flow: row;
    }

    .header-call,
    .header-link,
    .header-cta {
        width: 100%;
    }

    .nav-toggle {
        display: inline-flex;
        justify-content: center;
        width: fit-content;
    }

    .main-nav {
        display: none;
        width: 100%;
        overflow: visible;
    }

    .main-nav.is-open {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        border-radius: 22px;
        background: #fff;
        border: 1px solid var(--line);
    }

    .header-cta {
        display: inline-flex;
    }

    .hero-section {
        padding-top: 36px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .section,
    .hero-section {
        padding-left: 0;
        padding-right: 0;
    }

    .button,
    .header-cta {
        width: 100%;
    }

    .hero-actions,
    .contact-actions,
    .footer-bottom-links {
        flex-direction: column;
        align-items: stretch;
    }

    .header-call-number {
        font-size: 1rem;
    }
}

/* Legacy theme restore */
.announcement-bar {
    background: linear-gradient(90deg, #08353d 0%, #0c4a55 100%);
    color: #effcfe;
}

.announcement-inner,
.header-actions,
.announcement-meta,
.hero-metrics,
.domain-grid,
.campaign-grid,
.hosting-grid,
.process-grid,
.feature-grid,
.stat-grid,
.software-grid,
.reference-grid,
.testimonial-grid,
.blog-grid,
.partner-grid,
.footer-link-groups {
    display: grid;
    gap: 20px;
}

.announcement-inner {
    min-height: 48px;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
}

.announcement-copy {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 600;
}

.announcement-meta {
    grid-auto-flow: column;
    gap: 16px;
    align-items: center;
}

.announcement-meta a {
    color: #effcfe;
    font-size: 0.92rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(16, 36, 45, 0.08);
    box-shadow: none;
}

.header-inner {
    grid-template-columns: auto auto 1fr;
    align-items: center;
    min-height: 92px;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.brand-mark {
    background: linear-gradient(135deg, var(--accent) 0%, #43d3dc 100%);
    box-shadow: none;
}

.brand-subtitle {
    letter-spacing: 0;
}

.nav-list a {
    position: static;
}

.nav-list a::after {
    content: none;
}

.header-link {
    display: inline-flex;
    align-items: center;
    padding: 0;
    min-height: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--muted);
    font-weight: 700;
    box-shadow: none;
}

.header-cta {
    box-shadow: none;
}

.hero-section {
    padding: 72px 0 88px;
}

.hero-grid {
    gap: 24px;
}

.hero-copy h1 {
    max-width: 11ch;
    letter-spacing: -0.04em;
    text-wrap: initial;
}

.hero-description {
    font-size: 1.04rem;
}

.hero-metrics div,
.stat-card {
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
}

.hero-orbit-card {
    padding: 18px;
    background: var(--surface);
}

.service-card::before,
.step-card::before,
.testimonial-card::before,
.area-card::before,
.faq-card::before,
.hero-orbit-card::before,
.contact-card::before {
    content: none;
}

.location-pill,
.service-card,
.step-card,
.area-card,
.faq-card,
.testimonial-card,
.hero-orbit-card,
.stat-card {
    transition: none;
}

.location-pill:hover,
.service-card:hover,
.step-card:hover,
.area-card:hover,
.faq-card:hover,
.testimonial-card:hover,
.hero-orbit-card:hover,
.stat-card:hover {
    transform: none;
    box-shadow: var(--shadow);
}

.header-call {
    display: none;
}

.header-actions {
    display: none;
}

@media (max-width: 900px) {
    .announcement-inner,
    .hero-grid,
    .campaign-grid,
    .testimonial-grid,
    .form-shell,
    .footer-grid-main,
    .content-grid,
    .footer-link-groups,
    .stat-grid,
    .domain-grid,
    .hosting-grid,
    .feature-grid,
    .software-grid,
    .reference-grid,
    .blog-grid,
    .partner-grid,
    .area-grid,
    .satellite-process-grid,
    .form-grid,
    .header-inner {
        grid-template-columns: 1fr;
    }

    .announcement-meta,
    .header-actions {
        grid-auto-flow: row;
    }

    .header-cta {
        display: inline-flex;
    }
}

.visual-section {
    padding-top: 12px;
}

.visual-section .section-head {
    margin-bottom: 28px;
}

.visual-gallery {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 20px;
}

.visual-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: #08121d;
    box-shadow: 0 20px 52px rgba(15, 23, 42, 0.14);
    isolation: isolate;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.visual-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 18, 29, 0.05) 18%, rgba(8, 18, 29, 0.82) 100%);
    pointer-events: none;
}

.visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.visual-card figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: grid;
    gap: 6px;
    padding: 20px 22px;
    color: #fff;
}

.visual-card figcaption strong {
    font-size: 1.05rem;
    line-height: 1.25;
}

.visual-card figcaption span {
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.94rem;
    line-height: 1.5;
}

.visual-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 58px rgba(15, 23, 42, 0.18);
}

.visual-gallery-intro .visual-card--landscape,
.visual-gallery-services .visual-card--landscape,
.visual-gallery-areas .visual-card--landscape {
    grid-column: span 6;
    aspect-ratio: 3 / 2;
}

.visual-gallery-intro .visual-card--portrait,
.visual-gallery-services .visual-card--portrait {
    grid-column: span 3;
    aspect-ratio: 2 / 3;
}

@media (max-width: 900px) {
    .visual-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .visual-gallery-intro .visual-card--landscape,
    .visual-gallery-services .visual-card--landscape,
    .visual-gallery-areas .visual-card--landscape {
        grid-column: span 2;
        aspect-ratio: 16 / 10;
    }

    .visual-gallery-intro .visual-card--portrait,
    .visual-gallery-services .visual-card--portrait {
        grid-column: span 1;
        aspect-ratio: 3 / 4;
    }
}

@media (max-width: 640px) {
    .visual-gallery {
        grid-template-columns: 1fr;
    }

    .visual-gallery-intro .visual-card--landscape,
    .visual-gallery-services .visual-card--landscape,
    .visual-gallery-areas .visual-card--landscape,
    .visual-gallery-intro .visual-card--portrait,
    .visual-gallery-services .visual-card--portrait {
        grid-column: span 1;
    }

    .visual-gallery-intro .visual-card--landscape,
    .visual-gallery-services .visual-card--landscape,
    .visual-gallery-areas .visual-card--landscape {
        aspect-ratio: 4 / 3;
    }

    .visual-gallery-intro .visual-card--portrait,
    .visual-gallery-services .visual-card--portrait {
        aspect-ratio: 4 / 5;
    }

    .visual-card figcaption {
        padding: 16px;
    }
}

/* April 2026 homepage refresh */
.button-primary {
    background: linear-gradient(135deg, #ff7a18 0%, #d62839 100%);
    color: #fff;
    box-shadow: 0 16px 30px rgba(214, 40, 57, 0.24);
}

.button-primary:hover,
.header-cta:hover {
    background: linear-gradient(135deg, #ff8b36 0%, #be123c 100%);
}

.button-secondary {
    border: 0;
    background: linear-gradient(135deg, #1db954 0%, #0f8d43 100%);
    color: #fff;
    box-shadow: 0 16px 30px rgba(15, 141, 67, 0.22);
}

.button-secondary:hover {
    background: linear-gradient(135deg, #22c55e 0%, #0b7a39 100%);
    color: #fff;
}

.promo-slider-section {
    padding: 26px 0 18px;
}

.promo-slider {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: #07111c;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
}

.promo-slide {
    position: relative;
    display: none;
    min-height: 540px;
}

.promo-slide.is-active {
    display: block;
}

.promo-slide img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    display: block;
}

.promo-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 17, 28, 0.88) 0%, rgba(7, 17, 28, 0.54) 46%, rgba(7, 17, 28, 0.22) 100%);
}

.promo-slide-content {
    position: absolute;
    inset: auto auto 36px 36px;
    z-index: 1;
    width: min(560px, calc(100% - 72px));
    color: #fff;
}

.promo-slide-content h2 {
    margin-bottom: 14px;
    font-size: clamp(2rem, 4vw, 3.7rem);
    color: #fff;
}

.promo-slide-content p:last-of-type {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.88);
}

.promo-actions {
    margin-top: 22px;
}

.promo-slider-controls {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
}

.slider-arrow,
.promo-dot {
    border: 0;
    cursor: pointer;
}

.slider-arrow {
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    backdrop-filter: blur(12px);
}

.promo-slider-dots {
    display: flex;
    gap: 10px;
}

.promo-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
}

.promo-dot.is-active {
    background: #fff;
}

.campaign-grid,
.content-block-grid,
.brand-grid {
    display: grid;
    gap: 20px;
}

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

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

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

.campaign-card,
.content-block-card,
.brand-card,
.mert-article {
    padding: 26px;
    border-radius: 26px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
    box-shadow: var(--shadow);
}

.campaign-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(225, 29, 72, 0.12);
    color: #b91c1c;
    font-size: 0.84rem;
    font-weight: 700;
}

.campaign-card h3,
.content-block-card h3,
.brand-card h3 {
    margin-top: 16px;
    margin-bottom: 12px;
}

.mert-article {
    margin-top: 24px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #fff4f1 100%);
}

.mert-article p:last-child {
    margin-bottom: 0;
}

.brand-card {
    min-height: 100%;
}

.brand-card h3 {
    margin-bottom: 10px;
}

.contact-card-rich {
    gap: 18px;
}

.hours-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.hours-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-weight: 700;
}

.contact-map {
    margin-top: 22px;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.contact-map iframe {
    width: 100%;
    height: 280px;
    border: 0;
    display: block;
}

.service-type-select,
.service-type-select select {
    width: 100%;
}

.service-type-select select {
    min-height: 52px;
    padding: 0 14px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 16px;
    background: #fff;
    color: var(--text);
    font: inherit;
}

@media (max-width: 900px) {
    .promo-slide {
        min-height: 500px;
    }

    .promo-slide img {
        height: 500px;
    }

    .campaign-grid,
    .content-block-grid,
    .brand-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .promo-slide {
        min-height: 480px;
    }

    .promo-slide img {
        height: 480px;
    }

    .promo-slide-content {
        inset: auto 18px 18px 18px;
        width: auto;
    }

    .promo-slider-controls {
        right: 18px;
        bottom: 18px;
        left: 18px;
        justify-content: space-between;
    }

    .campaign-grid,
    .content-block-grid,
    .brand-grid {
        grid-template-columns: 1fr;
    }

    .slider-arrow {
        padding: 0 12px;
        font-size: 0.86rem;
    }
}

/* Professional visual refresh */
:root {
    --bg: #f3f1ec;
    --surface: #ffffff;
    --surface-alt: #152232;
    --text: #142131;
    --muted: #5c6876;
    --line: rgba(20, 33, 49, 0.1);
    --accent: #9b7a4b;
    --accent-dark: #7f6239;
    --accent-soft: #ede2d2;
    --shadow: 0 28px 70px rgba(20, 33, 49, 0.08);
}

body {
    font-family: "Segoe UI Variable", "Segoe UI", Tahoma, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(155, 122, 75, 0.08), transparent 28%),
        linear-gradient(180deg, #fbfaf8 0%, #f1eee8 100%);
    color: var(--text);
}

.announcement-bar,
.promo-slider-section {
    display: none;
}

.site-header {
    top: 0;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(20, 33, 49, 0.08);
    box-shadow: 0 18px 40px rgba(20, 33, 49, 0.06);
}

.header-inner {
    min-height: 96px;
    grid-template-columns: auto auto 1fr;
    gap: 24px;
}

.brand {
    gap: 14px;
}

.brand-mark {
    background: linear-gradient(135deg, #182636 0%, #22364c 100%);
    color: #f6e5c7;
    box-shadow: inset 0 0 0 1px rgba(246, 229, 199, 0.22);
}

.brand-text {
    color: #162333;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand-subtitle {
    color: #6a7684;
    font-size: 0.82rem;
}

.nav-list {
    justify-content: flex-end;
    gap: 12px;
}

.nav-list a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    color: #223145;
    font-weight: 700;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-list a:hover {
    background: rgba(155, 122, 75, 0.12);
    color: #111d2c;
}

.nav-toggle {
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(20, 33, 49, 0.1);
    background: #fff;
    color: #1b2b3e;
    font: inherit;
    font-weight: 700;
}

.hero-section {
    position: relative;
    padding: 74px 0 94px;
}

.satellite-home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at right top, rgba(155, 122, 75, 0.14), transparent 30%),
        linear-gradient(180deg, #f8f6f1 0%, rgba(248, 246, 241, 0) 100%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 34px;
    align-items: stretch;
}

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

.hero-copy h1 {
    max-width: 12ch;
    margin-bottom: 20px;
    font-size: clamp(3rem, 5vw, 4.9rem);
    letter-spacing: -0.045em;
    color: #101c2b;
}

.hero-description,
.section-copy {
    color: #5b6775;
    font-size: 1.03rem;
}

.hero-actions {
    margin-top: 30px;
    gap: 14px;
}

.button {
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.button-primary {
    background: linear-gradient(135deg, #182636 0%, #22364c 100%);
    color: #fff;
    border: 1px solid rgba(246, 229, 199, 0.18);
    box-shadow: 0 18px 36px rgba(24, 38, 54, 0.22);
}

.button-primary:hover,
.header-cta:hover {
    background: linear-gradient(135deg, #1f3145 0%, #2a4059 100%);
}

.button-secondary {
    background: linear-gradient(135deg, #177245 0%, #125938 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 36px rgba(18, 89, 56, 0.18);
}

.button-secondary:hover {
    background: linear-gradient(135deg, #1a7e4d 0%, #146540 100%);
}

.hero-badges span,
.location-pill,
.hours-badges span {
    border: 1px solid rgba(20, 33, 49, 0.08);
    background: rgba(255, 255, 255, 0.82);
    color: #243245;
    box-shadow: none;
}

.hero-orbit-card,
.stat-card,
.service-card,
.step-card,
.testimonial-card,
.area-card,
.faq-card,
.campaign-card,
.content-block-card,
.brand-card,
.mert-article,
.contact-card,
.form-card {
    border-radius: 28px;
    border: 1px solid rgba(20, 33, 49, 0.08);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
}

.hero-orbit-card,
.stat-card,
.campaign-card,
.content-block-card,
.brand-card,
.mert-article,
.contact-card,
.form-card {
    backdrop-filter: blur(10px);
}

.hero-orbit-card {
    padding: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f4ec 100%);
}

.hero-service-stack {
    display: grid;
    gap: 18px;
}

.stat-card strong,
.service-card h3,
.step-card h3,
.campaign-card h3,
.content-block-card h3,
.brand-card h3,
.mert-article h3 {
    color: #132032;
}

.campaign-card,
.content-block-card,
.brand-card,
.mert-article {
    padding: 30px;
}

.campaign-badge {
    background: rgba(155, 122, 75, 0.12);
    color: #7f6239;
}

.section-muted {
    background: rgba(255, 255, 255, 0.38);
}

.section-dark {
    background:
        linear-gradient(135deg, #152232 0%, #1e3145 100%);
}

.section-dark .eyebrow,
.section-dark h2,
.section-dark .section-copy-light,
.section-dark .testimonial-card strong,
.section-dark .testimonial-card span,
.section-dark .testimonial-card p {
    color: #f6f3ed;
}

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

.cta-banner {
    background: linear-gradient(135deg, #182636 0%, #23364c 100%);
    border: 1px solid rgba(246, 229, 199, 0.18);
    box-shadow: 0 26px 60px rgba(24, 38, 54, 0.2);
}

.cta-banner h2,
.cta-banner .eyebrow,
.cta-banner .section-copy-light {
    color: #fff;
}

.contact-card {
    background: linear-gradient(135deg, #182636 0%, #22364c 100%);
    color: #f4efe6;
    border: 1px solid rgba(246, 229, 199, 0.16);
}

.contact-card .section-copy,
.contact-card li,
.contact-card a {
    color: #f4efe6;
}

.contact-map {
    border-color: rgba(246, 229, 199, 0.18);
}

.form-card {
    padding: 30px;
}

.consultation-form input,
.consultation-form textarea,
.service-type-select select,
.newsletter-form input {
    border-radius: 16px;
    border: 1px solid rgba(20, 33, 49, 0.1);
    background: #fff;
    color: #142131;
}

.consultation-form input:focus,
.consultation-form textarea:focus,
.service-type-select select:focus,
.newsletter-form input:focus {
    outline: none;
    border-color: rgba(155, 122, 75, 0.5);
    box-shadow: 0 0 0 4px rgba(155, 122, 75, 0.12);
}

.text-link {
    color: #7f6239;
    font-weight: 700;
}

.site-footer {
    background: #152232;
}

.site-footer,
.site-footer a,
.site-footer p,
.site-footer h2,
.site-footer h3 {
    color: #f5f1ea;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 900px) {
    .header-inner,
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .nav-list {
        justify-content: flex-start;
    }
}

/* Header CTA and keyword section */
.header-inner {
    grid-template-columns: auto auto 1fr auto;
}

.main-nav {
    justify-self: end;
}

.header-call {
    display: grid;
    gap: 4px;
    padding: 12px 18px;
    border-radius: 22px;
    background: linear-gradient(135deg, #182636 0%, #22364c 100%);
    color: #fff;
    border: 1px solid rgba(246, 229, 199, 0.18);
    box-shadow: 0 18px 34px rgba(24, 38, 54, 0.18);
}

.header-call:hover {
    background: linear-gradient(135deg, #203247 0%, #29415a 100%);
    color: #fff;
}

.header-call-label {
    color: rgba(246, 239, 230, 0.82);
    letter-spacing: 0.14em;
}

.header-call-number {
    color: #fff;
    font-weight: 800;
}

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

.expertise-card {
    padding: 26px;
    border-radius: 26px;
    border: 1px solid rgba(20, 33, 49, 0.08);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
}

.expertise-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.expertise-list li {
    position: relative;
    padding-left: 18px;
    color: #334155;
    line-height: 1.45;
}

.expertise-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #9b7a4b;
}

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

@media (max-width: 900px) {
    .header-inner {
        grid-template-columns: 1fr;
    }

    .main-nav {
        justify-self: stretch;
    }

    .header-call {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

/* Header bottom CTA and expertise blocks */
.header-inner {
    grid-template-columns: auto auto 1fr;
}

.header-call-row {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 16px;
}

.hero-copy h1 {
    max-width: none;
}

.expertise-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.expertise-summary-card {
    padding: 24px;
    border-radius: 26px;
    border: 1px solid rgba(20, 33, 49, 0.08);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
}

.expertise-summary-card h3 {
    margin-bottom: 12px;
    color: #132032;
}

.expertise-summary-card p {
    margin: 0;
    color: #5b6775;
}

.step-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

@media (max-width: 1100px) {
    .expertise-summary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .header-call-row {
        justify-content: stretch;
        padding-bottom: 18px;
    }

    .expertise-summary-grid {
        grid-template-columns: 1fr;
    }
}

/* Final logo, navigation and lower-section refinements */
.header-inner {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
}

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

.brand-logo,
.brand .custom-logo {
    display: block;
    width: auto;
    max-width: 290px;
    max-height: 84px;
    height: auto;
}

.brand-subtitle,
.header-call-row {
    display: none !important;
}

.main-nav {
    justify-self: end;
}

.nav-list {
    gap: 10px;
}

.nav-list a {
    border: 1px solid transparent;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.nav-list a:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.1);
}

.nav-list li:nth-child(6n + 1) a {
    color: #0f4c81;
    background: #eef6ff;
    border-color: #d6e8ff;
}

.nav-list li:nth-child(6n + 2) a {
    color: #7a4b12;
    background: #fff4e5;
    border-color: #ffe1b8;
}

.nav-list li:nth-child(6n + 3) a {
    color: #7a2337;
    background: #fff0f4;
    border-color: #ffd4df;
}

.nav-list li:nth-child(6n + 4) a {
    color: #17603f;
    background: #eefbf4;
    border-color: #cfeedd;
}

.nav-list li:nth-child(6n + 5) a {
    color: #5b3aa8;
    background: #f4efff;
    border-color: #ddd2ff;
}

.nav-list li:nth-child(6n + 6) a {
    color: #0b5c61;
    background: #ebfbfc;
    border-color: #c7edf0;
}

.television-brand-grid {
    align-items: stretch;
}

.television-brand-card {
    min-height: 100%;
}

@media (max-width: 900px) {
    .header-inner {
        grid-template-columns: 1fr auto;
        gap: 16px;
    }

    .brand-logo,
    .brand .custom-logo {
        max-width: 220px;
        max-height: 68px;
    }

    .nav-toggle {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        min-width: 96px;
        background: #13263b;
        color: transparent;
        font-size: 0;
        line-height: 1;
        border-color: rgba(19, 38, 59, 0.2);
        position: relative;
    }

    .nav-toggle::before {
        content: "Menu";
        color: #fff;
        font-size: 0.95rem;
        font-weight: 700;
        letter-spacing: 0.04em;
    }

    .main-nav {
        display: none !important;
        width: 100%;
        grid-column: 1 / -1;
        margin-top: 10px;
    }

    .main-nav.is-open {
        display: block !important;
    }

    .nav-list {
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 16px;
        border-radius: 24px;
        background: #fff;
        border: 1px solid rgba(20, 33, 49, 0.08);
        box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    }

    .nav-list a {
        width: 100%;
        justify-content: flex-start;
    }
}

.hero-badges {
    display: none !important;
}

@media (max-width: 900px) {
    .site-header {
        overflow: visible;
    }

    .brand {
        max-width: 100%;
        min-width: 0;
    }

    .main-nav {
        order: 3;
        padding-top: 0;
        overflow: visible;
    }

    .nav-list {
        width: 100%;
        box-sizing: border-box;
        overflow: visible;
    }

    .nav-list li {
        width: 100%;
    }

    .hero-actions {
        margin-top: 24px;
    }
}

@media (max-width: 640px) {
    .brand-logo,
    .brand .custom-logo {
        max-width: 180px;
        max-height: 58px;
    }

    .nav-toggle {
        min-width: 88px;
    }
}

.ai-bot-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 26px;
    align-items: start;
}

.ai-bot-panel,
.ai-chat-card {
    padding: 30px;
    border-radius: 30px;
    border: 1px solid rgba(20, 33, 49, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.08);
}

.ai-bot-panel h3,
.ai-chat-card strong {
    color: #102131;
}

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

.ai-topic-card {
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f8fb 100%);
    border: 1px solid rgba(20, 33, 49, 0.08);
}

.ai-topic-card h4 {
    margin-bottom: 10px;
    color: #13263b;
}

.ai-topic-card p,
.ai-chat-message p,
.ai-chat-head span {
    margin: 0;
    color: #5b6775;
}

.ai-chat-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.ai-chat-stream {
    display: grid;
    gap: 14px;
}

.ai-chat-message {
    padding: 16px 18px;
    border-radius: 22px;
}

.ai-chat-message-bot {
    background: #f4f8fc;
    border: 1px solid rgba(15, 76, 129, 0.12);
}

.ai-chat-message-user {
    background: #fff5e8;
    border: 1px solid rgba(122, 75, 18, 0.12);
}

.ai-chat-label {
    display: inline-flex;
    margin-bottom: 8px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0f4c81;
}

.ai-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.ai-quick-actions span {
    padding: 10px 14px;
    border-radius: 999px;
    background: #f2f6fa;
    border: 1px solid rgba(20, 33, 49, 0.08);
    color: #223145;
    font-size: 0.9rem;
    font-weight: 700;
}

.ai-chat-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

@media (max-width: 1000px) {
    .ai-bot-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .ai-bot-panel,
    .ai-chat-card {
        padding: 22px;
        border-radius: 24px;
    }

    .ai-topic-grid {
        grid-template-columns: 1fr;
    }

    .ai-chat-head,
    .ai-chat-actions {
        flex-direction: column;
        align-items: stretch;
    }
}


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

.district-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.district-card-head h3 {
    margin-bottom: 10px;
}

.district-card-head p {
    margin: 0;
    color: #5b6775;
}

.district-link-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
    display: grid;
    gap: 14px;
}

.district-link-item {
    padding: 16px 18px;
    border-radius: 20px;
    background: #f7fafc;
    border: 1px solid rgba(15, 76, 129, 0.08);
}

.district-link-item a {
    display: inline-block;
    font-weight: 800;
    color: #102131;
    text-decoration: none;
    margin-bottom: 6px;
}

.district-link-item span {
    display: block;
    color: #5b6775;
    font-size: 0.95rem;
    line-height: 1.6;
}

.district-link-item a:hover {
    color: #0f4c81;
}

@media (max-width: 1000px) {
    .district-grid {
        grid-template-columns: 1fr;
    }
}


.button-call-red,
.quick-call-strip .button-primary {
    background: linear-gradient(135deg, #b31217 0%, #e53935 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 36px rgba(229, 57, 53, 0.24);
}

.button-call-red:hover,
.quick-call-strip .button-primary:hover {
    background: linear-gradient(135deg, #971015 0%, #cc2f2c 100%);
}

.quick-call-strip {
    padding-top: 1.2rem;
}

.quick-call-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.4rem;
    padding: 1.35rem 1.5rem;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(179, 18, 23, 0.08) 0%, rgba(229, 57, 53, 0.12) 100%);
    border: 1px solid rgba(229, 57, 53, 0.14);
}

.quick-call-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

@media (max-width: 767px) {
    .quick-call-shell {
        flex-direction: column;
        align-items: flex-start;
    }

    .quick-call-actions {
        width: 100%;
    }

    .quick-call-actions .button {
        flex: 1 1 180px;
        justify-content: center;
    }
}


.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.header-call-cta {
    background: #dc2626;
    box-shadow: 0 18px 40px rgba(220, 38, 38, 0.22);
}

.header-bot-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 999px;
    background: #ffffff;
    color: #0f172a;
    font-weight: 700;
    cursor: pointer;
}

.header-bot-cta:hover,
.header-call-cta:hover {
    transform: translateY(-1px);
}

.floating-support-bar {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 70;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-support-call,
.floating-support-bot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 999px;
    border: 0;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.18);
    font-weight: 800;
    cursor: pointer;
}

.floating-support-call {
    background: #dc2626;
    color: #ffffff;
}

.floating-support-bot {
    background: #111827;
    color: #ffffff;
}

.floating-ai-bot {
    position: fixed;
    inset: 0;
    z-index: 90;
}

.floating-ai-bot__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
}

.floating-ai-bot__panel {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: min(420px, calc(100% - 24px));
    max-height: min(78vh, 760px);
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px;
    overflow: hidden;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.24);
}

.floating-ai-bot__head,
.floating-ai-bot__footer-actions,
.floating-ai-bot__form {
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-ai-bot__head {
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.floating-ai-bot__head strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1rem;
}

.floating-ai-bot__head span {
    color: #64748b;
    font-size: 0.9rem;
}

.floating-ai-bot__close {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: #f1f5f9;
    color: #0f172a;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.floating-ai-bot__messages {
    display: grid;
    gap: 12px;
    overflow-y: auto;
    padding-right: 4px;
}

.floating-ai-bot__message {
    padding: 14px;
    border-radius: 20px;
    background: #f8fafc;
}

.floating-ai-bot__message-user {
    background: #111827;
    color: #ffffff;
}

.floating-ai-bot__message-label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.72;
}

.floating-ai-bot__message p {
    margin: 0;
    line-height: 1.6;
}

.floating-ai-bot__message-actions {
    margin-top: 10px;
}

.floating-ai-bot__inline-link {
    font-weight: 700;
    color: #dc2626;
}

.floating-ai-bot__quick {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.floating-ai-bot__quick-button {
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 999px;
    background: #ffffff;
    color: #0f172a;
    font-weight: 700;
    padding: 10px 14px;
    cursor: pointer;
}

.floating-ai-bot__form {
    align-items: stretch;
}

.floating-ai-bot__form input {
    flex: 1 1 auto;
    min-height: 48px;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    padding: 0 14px;
    font: inherit;
}

.floating-ai-bot__footer-actions {
    justify-content: flex-start;
}

body.ai-bot-open {
    overflow: hidden;
}

@media (max-width: 1100px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .header-actions {
        display: none;
    }
}

@media (max-width: 767px) {
    .floating-support-bar {
        left: 12px;
        right: 12px;
        bottom: 12px;
        flex-direction: row;
    }

    .floating-support-call,
    .floating-support-bot {
        flex: 1 1 50%;
        min-width: 0;
        padding: 0 12px;
        font-size: 0.92rem;
    }

    .floating-ai-bot__panel {
        right: 12px;
        left: 12px;
        bottom: 76px;
        width: auto;
        max-height: calc(100vh - 104px);
        border-radius: 22px;
    }

    .floating-ai-bot__footer-actions,
    .floating-ai-bot__form {
        flex-direction: column;
    }

    .floating-ai-bot__footer-actions .button,
    .floating-ai-bot__form .button {
        width: 100%;
    }
}
