:root {
    --bg: #f5f7fb;
    --panel: #ffffff;
    --ink: #182033;
    --muted: #667085;
    --line: #d9e0ec;
    --primary: #2563eb;
    --accent: #0891b2;
    --blue: var(--primary);
    --cyan: var(--accent);
    --green: #0f8a5f;
    --amber: #b7791f;
    --red: #b42318;
    --shadow: 0 18px 45px rgba(28, 39, 68, .10);
}

* { box-sizing: border-box; }
html {
    overflow-x: hidden;
}
body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--ink);
    overflow-x: hidden;
}

a { color: var(--blue); text-decoration: none; }
button, input, select, textarea { font: inherit; }
button {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    border-radius: 8px;
    padding: 9px 12px;
    cursor: pointer;
}
button.primary {
    border-color: var(--blue);
    background: var(--blue);
    color: #fff;
}
a.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 9px 12px;
    color: var(--ink);
}
a.button.primary {
    border-color: var(--blue);
    background: var(--blue);
    color: #fff;
}

.sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: 250px;
    background: #0f172a;
    color: #e5edf9;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 800;
}
.brand-logo {
    display: block;
    width: auto;
    height: auto;
    object-fit: contain;
}
.compact-logo {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
}
.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
}
.sidebar nav { display: grid; gap: 5px; }
.sidebar nav a, .logout button {
    display: block;
    width: 100%;
    border: 0;
    color: #cbd5e1;
    background: transparent;
    text-align: left;
    padding: 10px 12px;
    border-radius: 8px;
}
.sidebar nav a.active, .sidebar nav a:hover, .logout button:hover {
    background: rgba(255,255,255,.09);
    color: #fff;
}
.logout { margin-top: auto; }

.main {
    margin-left: 250px;
    padding: 28px;
}
.topbar {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-bottom: 22px;
}
.topbar h1, .login-panel h1 { margin: 0; line-height: 1.05; }
.eyebrow {
    margin: 0 0 6px;
    color: var(--cyan);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0;
    font-weight: 800;
}
.user-chip {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
}
.user-chip strong { color: var(--muted); font-size: 12px; }

.alert {
    padding: 12px 14px;
    border-radius: 8px;
    margin-bottom: 18px;
    border: 1px solid var(--line);
    background: #eef7ff;
}
.alert.error { background: #fff1f0; color: var(--red); }
.alert.success { background: #ecfdf3; color: var(--green); }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}
.stat, .card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}
.stat { padding: 18px; }
.stat span { display: block; color: var(--muted); font-size: 13px; margin-bottom: 10px; }
.stat strong { font-size: 30px; }

.grid { display: grid; gap: 18px; align-items: start; }
.grid.two { grid-template-columns: minmax(0, 1.7fr) minmax(320px, .8fr); }
.card { padding: 18px; overflow: auto; }
.card.wide { min-width: 0; }
.card h2 { margin: 0 0 14px; font-size: 18px; }
.card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.card-head h2 { margin: 0; }

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
th, td {
    text-align: left;
    padding: 11px 10px;
    border-bottom: 1px solid var(--line);
    vertical-align: middle;
}
th { color: var(--muted); font-size: 12px; text-transform: uppercase; }
tr:last-child td { border-bottom: 0; }

.badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 800;
    background: #eef2f7;
    color: var(--muted);
}
.badge.good { background: #dcfce7; color: var(--green); }
.badge.warn { background: #fff7db; color: var(--amber); }
.badge.bad { background: #fee4e2; color: var(--red); }
.badge.muted { background: #eef2f7; color: var(--muted); }

.form-stack { display: grid; gap: 12px; }
label { display: grid; gap: 6px; color: var(--muted); font-size: 13px; font-weight: 700; }
input, select, textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px 11px;
    color: var(--ink);
    background: #fff;
}
textarea { min-height: 96px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.check { display: flex; grid-template-columns: auto 1fr; flex-direction: row; align-items: center; gap: 8px; }
.check input { width: auto; }
.inline { display: flex; gap: 8px; align-items: center; }
.inline select { min-width: 120px; }
.brand-upload-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.brand-upload-card {
    display: grid;
    gap: 12px;
    align-content: start;
    min-height: 230px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, #fff, #f8fbff);
}
.brand-upload-card > span {
    color: var(--ink);
    font-weight: 800;
}
.brand-upload-card img {
    width: 100%;
    height: 96px;
    object-fit: contain;
    padding: 12px;
    border: 1px dashed #c8d5ea;
    border-radius: 8px;
    background:
        linear-gradient(45deg, #eef3fb 25%, transparent 25%),
        linear-gradient(-45deg, #eef3fb 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #eef3fb 75%),
        linear-gradient(-45deg, transparent 75%, #eef3fb 75%);
    background-size: 22px 22px;
    background-position: 0 0, 0 11px, 11px -11px, -11px 0;
}
.brand-upload-card.compact-preview img {
    width: 96px;
    justify-self: start;
}
.brand-upload-card input[type="file"] {
    padding: 8px;
    background: #fff;
}
.hint { color: var(--muted); font-size: 13px; line-height: 1.5; }
pre {
    white-space: pre-wrap;
    word-break: break-word;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px;
    background: #f8fafc;
    max-height: 520px;
    overflow: auto;
}

.timeline { display: grid; gap: 14px; }
.timeline div { border-left: 3px solid var(--blue); padding-left: 12px; }
.timeline span { color: var(--muted); font-size: 12px; }
.timeline p { margin: 4px 0 0; }

.ticket {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px;
    margin-bottom: 14px;
}
.ticket header { display: flex; justify-content: space-between; gap: 14px; }
.message {
    background: #f8fafc;
    border-radius: 8px;
    padding: 10px;
    margin: 10px 0;
}
.message span { color: var(--muted); margin-left: 8px; font-size: 12px; }
.message p { margin: 8px 0 0; }
.reply { display: grid; grid-template-columns: 1fr 140px 100px; gap: 10px; }

.quick-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}
.quick-grid a {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px;
    background: #f8fafc;
    color: var(--ink);
    font-weight: 800;
}
.usage {
    width: 100%;
    height: 12px;
    border-radius: 999px;
    overflow: hidden;
    background: #e5e7eb;
}
.usage span {
    display: block;
    height: 100%;
    background: var(--blue);
}
.usage.accent span { background: var(--cyan); }
.clean-list {
    display: grid;
    gap: 9px;
    padding-left: 18px;
    color: var(--muted);
}
.app-footer {
    margin-top: 24px;
    color: var(--muted);
    font-size: 12px;
}

.auth-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px;
    background:
        linear-gradient(120deg, rgba(37,99,235,.12), transparent 45%),
        linear-gradient(240deg, rgba(8,145,178,.14), transparent 50%),
        var(--bg);
}
.login-panel {
    width: min(980px, 100%);
    display: grid;
    grid-template-columns: 1.2fr 420px;
    gap: 24px;
    align-items: center;
}
.login-panel > div:first-child {
    padding: 20px;
}
.login-panel h1 { font-size: 44px; }
.login-panel p { color: var(--muted); line-height: 1.6; }
.settings-form { max-width: 880px; }

.public-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 22px 0 40px;
}
.public-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}
.public-nav nav {
    display: flex;
    align-items: center;
    gap: 16px;
}
.public-brand { color: var(--ink); }
.hero {
    min-height: 520px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    padding: 46px;
    background:
        linear-gradient(90deg, rgba(245,247,251,.95) 0%, rgba(245,247,251,.80) 44%, rgba(245,247,251,.18) 76%),
        url("hosting-hero.png") center right / cover no-repeat;
    border: 1px solid var(--line);
    overflow: hidden;
}
.hero h1 {
    font-size: 52px;
    line-height: 1.02;
    margin: 0 0 18px;
    max-width: 780px;
}
.hero p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
}
.hero-copy {
    width: min(720px, 100%);
}
.domain-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 170px;
    gap: 10px;
    max-width: 660px;
    margin-top: 22px;
}
.domain-search.large { max-width: none; margin-bottom: 20px; }
.public-section { margin: 28px 0; }
.public-section h1 {
    font-size: 38px;
    margin: 0 0 18px;
}
.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.plan-card {
    display: grid;
    gap: 12px;
}
.plan-card h3 {
    margin: 0;
    font-size: 22px;
}
.plan-card strong { font-size: 24px; }
.domain-results {
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
}
.domain-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.domain-result h2 { margin: 0 0 4px; }
.domain-result > div:last-child {
    display: flex;
    align-items: center;
    gap: 12px;
}
.public-footer {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: var(--muted);
    border-top: 1px solid var(--line);
    padding-top: 18px;
    margin-top: 38px;
}

@media (max-width: 980px) {
    .sidebar { position: static; width: auto; min-height: auto; }
    .sidebar nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .main { margin-left: 0; padding: 18px; }
    .stats-grid, .grid.two, .login-panel, .plan-grid { grid-template-columns: 1fr; }
    .hero { padding: 28px; background-position: 58% center; }
    .hero h1 { font-size: 38px; }
    .domain-search { grid-template-columns: 1fr; }
    .public-nav { align-items: flex-start; flex-direction: column; }
    .domain-result { align-items: flex-start; flex-direction: column; }
    .reply { grid-template-columns: 1fr; }
}

/* IG1 commercial UI refresh */
body {
    background: #f4f7fb;
}
.site-top {
    width: 100%;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 8px max(18px, calc((100vw - 1180px) / 2));
    background: #001b5d;
    color: #d8e7ff;
    font-size: 13px;
}
.public-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    margin: 0;
    padding: 14px max(18px, calc((100vw - 1180px) / 2));
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid #d9e2f2;
    backdrop-filter: blur(10px);
}
.public-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #07152f;
}
.public-logo {
    display: block;
    width: clamp(176px, 18vw, 260px);
    height: auto;
    max-height: 76px;
    object-fit: contain;
}
.public-brand small {
    display: block;
    color: #667085;
    font-size: 12px;
    margin-top: 2px;
}
.public-nav nav a {
    color: #24324b;
    font-weight: 800;
    font-size: 14px;
}
.nav-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.button.ghost,
a.button.ghost {
    background: #fff;
    border-color: #c9d5e8;
    color: #001b5d;
}
.public-shell {
    width: 100%;
    padding: 0;
}
.public-shell > .alert,
.public-shell > .public-section,
.public-shell > .category-strip,
.public-shell > .hero,
.public-shell > .public-footer {
    width: min(1180px, calc(100% - 36px));
    margin-left: auto;
    margin-right: auto;
}
.commercial-hero {
    margin-top: 24px;
    min-height: 620px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .72fr);
    align-items: center;
    gap: 34px;
    padding: 58px;
    background:
        linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.90) 42%, rgba(255,255,255,.35) 68%),
        url("hosting-hero.png") center right / cover no-repeat;
    border: 1px solid #d9e2f2;
    box-shadow: 0 22px 55px rgba(18, 31, 60, .12);
}
.commercial-hero h1 {
    max-width: 820px;
    font-size: 56px;
    letter-spacing: 0;
    color: #06183d;
}
.commercial-hero p {
    max-width: 720px;
    color: #3d4a63;
}
.hero-search {
    max-width: 720px;
    background: #fff;
    padding: 8px;
    border: 1px solid #cbd7ec;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(11, 35, 82, .12);
}
.hero-search input,
.hero-search button {
    min-height: 48px;
}
.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}
.trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 18px 0 0;
    list-style: none;
}
.trust-list li {
    border: 1px solid #cfe0f7;
    background: #f7fbff;
    color: #1b365f;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 800;
}
.hero-product-panel {
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(198, 215, 237, .95);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 24px 70px rgba(6, 24, 61, .18);
}
.hero-product-panel h2 {
    margin: 8px 0 18px;
    font-size: 26px;
    color: #06183d;
}
.mini-label {
    display: inline-flex;
    border-radius: 999px;
    padding: 6px 10px;
    background: #e8f7ff;
    color: #005da8;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}
.metric-row {
    display: flex;
    justify-content: space-between;
    padding: 11px 0;
    border-bottom: 1px solid #e3eaf5;
}
.metric-row strong { color: #001b5d; }
.landing-seal {
    margin-top: 18px;
    padding: 0;
    background: transparent;
}
.landing-seal .ig1-holo-seal.ig1-holo-sticker {
    width: min(235px, 72vw);
    margin: 0 auto;
}
.landing-seal .ig1-seal-orbital-text text {
    font-size: 11px;
}
.landing-seal .ig1-seal-mark span {
    font-size: .88rem;
}
.landing-seal .ig1-seal-ribbon {
    font-size: .54rem;
}
.landing-seal .ig1-holo-core small {
    font-size: .58rem;
}
.category-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}
.category-strip a {
    display: grid;
    gap: 4px;
    background: #fff;
    border: 1px solid #d9e2f2;
    border-radius: 8px;
    padding: 16px;
    color: #07152f;
    box-shadow: 0 10px 28px rgba(18,31,60,.06);
}
.category-strip span {
    color: #667085;
    font-size: 13px;
}
.split-section {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 32px;
    align-items: start;
    padding: 34px 0;
}
.split-section h2,
.section-head h2,
.faq-section h2 {
    margin: 0;
    font-size: 34px;
    color: #06183d;
}
.split-section > p,
.lead {
    margin: 0;
    color: #3d4a63;
    font-size: 17px;
    line-height: 1.7;
}
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 18px;
}
.pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.price-card {
    position: relative;
    display: grid;
    gap: 12px;
    background: #fff;
    border: 1px solid #d9e2f2;
    border-radius: 8px;
    padding: 22px;
    box-shadow: 0 16px 40px rgba(18,31,60,.08);
}
.price-card.featured {
    border-color: #00a3ff;
    box-shadow: 0 20px 52px rgba(0, 111, 191, .16);
}
.price-card h3 {
    margin: 0;
    font-size: 24px;
    color: #06183d;
}
.price-card p {
    margin: 0;
    color: #526078;
    line-height: 1.55;
}
.price-line {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.price-line strong {
    font-size: 34px;
    color: #001b5d;
}
.price-line span {
    color: #667085;
}
.ribbon {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 9px;
    border-radius: 999px;
    background: #e8f7ff;
    color: #0069b4;
    font-size: 12px;
    font-weight: 900;
}
.feature-list {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.feature-list li {
    position: relative;
    padding-left: 22px;
    color: #24324b;
    font-size: 14px;
}
.feature-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: .45em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #12b76a;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.service-grid article,
.compare-band > div {
    background: #fff;
    border: 1px solid #d9e2f2;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 12px 34px rgba(18,31,60,.07);
}
.service-grid h3,
.compare-band h3 {
    margin: 0 0 8px;
    color: #06183d;
}
.service-grid p,
.compare-band p {
    color: #526078;
    line-height: 1.6;
}
.compare-band {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.compare-band span {
    color: #00a3ff;
    font-weight: 1000;
}
.catalog-group {
    margin-top: 30px;
}
.faq-section {
    display: grid;
    gap: 10px;
    margin-bottom: 36px;
}
.faq-section details {
    background: #fff;
    border: 1px solid #d9e2f2;
    border-radius: 8px;
    padding: 16px 18px;
}
.faq-section summary {
    cursor: pointer;
    font-weight: 900;
    color: #06183d;
}
.faq-section p {
    color: #526078;
    line-height: 1.6;
}
.public-footer {
    display: grid;
    grid-template-columns: 1.1fr .9fr .9fr;
    align-items: start;
    padding: 34px 0 42px;
    color: #d8e7ff;
    background: #001b5d;
    border: 0;
    width: 100%;
    max-width: none;
}
.public-footer > * { min-width: 0; }
.footer-map {
    display: grid;
    gap: 8px;
}
.footer-map a,
.public-footer a {
    color: #fff;
}
.public-footer p,
.public-footer span {
    color: #b8c9e6;
    line-height: 1.6;
}
.danger-zone {
    border-color: #fed7d7;
}

/* Internal panel refresh */
.sidebar {
    background: #07152f;
    border-right: 1px solid rgba(255,255,255,.08);
}
.main {
    background: #f4f7fb;
    min-height: 100vh;
}
.topbar {
    background: #fff;
    border: 1px solid #d9e2f2;
    border-radius: 8px;
    padding: 18px;
    box-shadow: 0 12px 34px rgba(18,31,60,.06);
}
.stat, .card {
    box-shadow: 0 12px 34px rgba(18,31,60,.07);
}
.auth-shell {
    background:
        linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.84)),
        url("hosting-hero.png") center / cover no-repeat;
}
.login-panel {
    width: min(1040px, 100%);
}
.login-panel .card {
    border-color: #cbd7ec;
}

@media (max-width: 980px) {
    .site-top { flex-direction: column; align-items: flex-start; }
    .public-nav { align-items: flex-start; flex-direction: column; }
    .public-nav nav { flex-wrap: wrap; }
    .nav-actions { width: 100%; }
    .commercial-hero,
    .split-section,
    .category-strip,
    .pricing-grid,
    .service-grid,
    .compare-band,
    .public-footer {
        grid-template-columns: 1fr;
    }
    .commercial-hero {
        padding: 28px;
    }
    .commercial-hero h1 {
        font-size: 38px;
    }
}

/* Production polish for IG1 Hosting public landings */
.site-top {
    justify-content: center;
    gap: 22px;
    text-align: center;
    line-height: 1.35;
}

.public-nav {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    min-height: 72px;
    margin-bottom: 0;
}

.public-brand {
    min-width: 300px;
}

.public-brand > span:last-child {
    display: grid;
    gap: 2px;
}

.public-nav nav {
    justify-content: center;
    gap: 4px;
    min-width: 0;
    flex-wrap: wrap;
}

.public-nav nav a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 10px;
    border-radius: 6px;
    white-space: nowrap;
}

.public-nav nav a:hover {
    background: #edf6ff;
    color: #001b5d;
}

.nav-actions {
    justify-content: flex-end;
    flex-wrap: wrap;
}

.public-shell {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.public-shell > .alert,
.public-shell > .public-section,
.public-shell > .category-strip,
.public-shell > .hero {
    width: min(1180px, calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
}

.commercial-hero {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
    align-items: stretch;
    gap: clamp(24px, 4vw, 48px);
    min-height: auto;
    margin-top: 28px;
    padding: clamp(34px, 5vw, 64px);
    background: #fff;
    border-radius: 8px;
    overflow: visible;
}

.commercial-hero .hero-copy {
    width: 100%;
    align-self: center;
}

.commercial-hero h1 {
    max-width: 760px;
    font-size: 58px;
    line-height: 1.02;
}

.commercial-hero p {
    font-size: 18px;
    line-height: 1.65;
}

.hero-search {
    grid-template-columns: minmax(0, 1fr) minmax(142px, 170px);
}

.hero-search input,
.hero-search button {
    min-width: 0;
}

.hero-product-panel {
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: #f8fbff;
}

.platform-points {
    display: grid;
    gap: 10px;
}

.platform-points div {
    display: grid;
    gap: 4px;
    padding: 14px;
    background: #fff;
    border: 1px solid #d9e7f7;
    border-radius: 8px;
}

.platform-points strong {
    color: #06183d;
}

.platform-points span {
    color: #526078;
    font-size: 14px;
    line-height: 1.45;
}

.landing-seal {
    width: 100%;
    max-width: 230px;
    margin: 8px auto 0;
    padding: 0 !important;
    background: transparent !important;
}

.landing-seal .ig1-seal-link {
    display: block;
    color: inherit;
    outline-offset: 8px;
}

.hero-product-panel .landing-seal .ig1-holo-seal.ig1-holo-sticker {
    width: 186px !important;
    max-width: 100%;
    filter: drop-shadow(0 18px 22px rgba(15,23,42,.18)) drop-shadow(0 0 22px rgba(34,193,220,.16));
}

.landing-seal .ig1-holo-core {
    padding: .55rem;
    gap: .18rem;
}

.landing-seal .ig1-seal-emblem strong {
    font-size: 2.12rem;
}

.landing-seal .ig1-seal-mark span {
    font-size: .58rem;
    letter-spacing: 0;
}

.landing-seal .ig1-seal-mark i {
    font-size: .46rem;
}

.landing-seal .ig1-seal-ribbon {
    padding: .34rem .48rem;
    font-size: .38rem;
}

.landing-seal .ig1-holo-core small {
    padding: .20rem .38rem;
    font-size: .40rem;
}

.category-strip {
    margin-top: 20px;
}

.category-strip a {
    min-height: 112px;
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.category-strip a:hover,
.service-grid article:hover,
.price-card:hover {
    transform: translateY(-2px);
    border-color: #9cc7ef;
    box-shadow: 0 18px 44px rgba(18,31,60,.10);
}

.section-head a,
.service-grid article a {
    font-weight: 900;
}

.price-card {
    align-content: start;
}

.price-card .button {
    align-self: end;
    width: fit-content;
}

.public-shell > .public-footer {
    width: 100%;
    max-width: none;
    margin: 58px 0 0;
    padding: 42px max(20px, calc((100vw - 1180px) / 2));
}

.public-footer {
    grid-template-columns: 1.2fr .9fr .9fr;
    gap: 34px;
    border-top: 0;
}

.public-footer strong {
    color: #fff;
}

.footer-map a,
.footer-map span {
    display: block;
}

.footer-map a:hover {
    color: #9ddcff;
}

.auth-shell {
    background: #eef4fb;
}

.login-panel {
    width: min(1060px, 100%);
}

.login-panel .card {
    background: #fff;
    border: 1px solid #cbd7ec;
}

.login-panel-pro {
    gap: clamp(28px, 7vw, 92px);
}

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

.login-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #07152f;
}

.domain-notice {
    display: grid;
    gap: 4px;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #d7e2ef;
    background: #f8fbff;
    color: var(--text);
}

.domain-notice span {
    color: var(--subtle);
    font-size: 13px;
    line-height: 1.45;
}

.domain-notice.good {
    border-color: #b9ead9;
    background: #ecfdf7;
}

.domain-notice.warn {
    border-color: #f4d899;
    background: #fff8e6;
}

.domain-notice.bad {
    border-color: #f1b9b4;
    background: #fff1f0;
}

.login-brand-link > span:last-child {
    display: grid;
    gap: 2px;
}

.login-brand-link small {
    color: #667085;
}

.login-bullets {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: 560px;
}

.login-bullets span {
    padding: 12px 14px;
    background: #fff;
    border: 1px solid #cbd7ec;
    border-radius: 8px;
    color: #1b365f;
    font-weight: 900;
    box-shadow: 0 10px 26px rgba(18,31,60,.06);
}

.login-card {
    padding: 24px;
}

.form-intro {
    display: grid;
    gap: 6px;
    margin-bottom: 6px;
}

.form-intro h2,
.form-intro p {
    margin: 0;
}

.form-intro h2 {
    color: #06183d;
    font-size: 28px;
}

@media (max-width: 1100px) {
    .public-nav {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .public-brand {
        min-width: 0;
    }

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

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

@media (max-width: 980px) {
    .site-top {
        align-items: flex-start;
        text-align: left;
    }

    .commercial-hero,
    .category-strip,
    .split-section,
    .pricing-grid,
    .service-grid,
    .compare-band,
    .public-footer {
        grid-template-columns: 1fr;
    }

    .commercial-hero {
        padding: 28px;
    }

    .commercial-hero h1 {
        font-size: 40px;
    }
}

@media (max-width: 640px) {
    .public-shell > .alert,
    .public-shell > .public-section,
    .public-shell > .category-strip,
    .public-shell > .hero {
        width: calc(100% - 24px);
    }

    .public-nav {
        padding: 14px 18px;
    }

    .public-nav nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        gap: 8px;
    }

    .public-nav nav a {
        min-width: 0;
        white-space: normal;
    }

    .commercial-hero {
        grid-template-columns: minmax(0, 1fr);
        width: calc(100vw - 24px) !important;
        max-width: calc(100vw - 24px);
        padding: 22px;
    }

    .commercial-hero *,
    .hero-product-panel,
    .platform-points,
    .trust-list li {
        min-width: 0;
        max-width: 100%;
    }

    .commercial-hero h1 {
        max-width: calc(100vw - 68px) !important;
        font-size: 30px;
        overflow-wrap: break-word;
    }

    .commercial-hero p,
    .hero-search,
    .hero-actions,
    .trust-list,
    .hero-product-panel {
        width: 100%;
        max-width: calc(100vw - 68px) !important;
    }

    .hero-product-panel h2 {
        font-size: 23px;
        overflow-wrap: break-word;
    }

    .trust-list {
        display: grid;
        grid-template-columns: 1fr;
    }

    .trust-list li {
        width: 100%;
        font-size: 12px;
    }

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

    .hero-actions,
    .nav-actions {
        display: grid;
        width: 100%;
    }

    .login-bullets {
        grid-template-columns: 1fr;
    }

    .login-panel-pro {
        gap: 22px;
    }
}

/* Internal panel responsive correction */
@media (min-width: 801px) {
    .sidebar {
        position: fixed;
        inset: 0 auto 0 0;
        width: 250px;
        min-height: 100vh;
        flex-direction: column;
        overflow-y: auto;
    }

    .sidebar nav {
        grid-template-columns: 1fr !important;
    }

    .main {
        margin-left: 250px;
        padding: 28px;
    }
}

@media (min-width: 641px) and (max-width: 800px) {
    .sidebar {
        position: fixed;
        inset: 0 auto 0 0;
        width: 228px;
        min-height: 100vh;
        padding: 18px 12px;
        flex-direction: column;
        gap: 16px;
        overflow-y: auto;
    }

    .sidebar nav {
        grid-template-columns: 1fr !important;
        gap: 4px;
    }

    .sidebar nav a,
    .logout button {
        padding: 9px 10px;
        font-size: 14px;
    }

    .main {
        margin-left: 228px;
        padding: 18px;
    }
}

@media (max-width: 640px) {
    .sidebar {
        position: sticky;
        top: 0;
        z-index: 80;
        width: 100%;
        min-height: auto;
        padding: 14px;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 12px;
        overflow: hidden;
    }

    .sidebar .brand {
        width: 100%;
    }

    .sidebar nav {
        display: flex;
        grid-template-columns: none !important;
        gap: 8px;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: thin;
    }

    .sidebar nav a {
        width: auto;
        flex: 0 0 auto;
        white-space: nowrap;
        padding: 8px 10px;
    }

    .logout {
        margin-top: 0;
        margin-left: auto;
    }

    .logout button {
        width: auto;
        padding: 8px 12px;
    }

    .main {
        margin-left: 0;
        padding: 16px;
    }

    .topbar {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Final production UI/UX pass */
:root {
    --navy: #06183d;
    --navy-2: #0a244f;
    --sky: #0077c8;
    --teal: #0f9f95;
    --mint: #0f8a5f;
    --paper: #ffffff;
    --soft: #f3f7fb;
    --soft-2: #e9f2fb;
    --text: #132238;
    --subtle: #5f6f86;
    --border: #d7e2ef;
}

.eyebrow {
    letter-spacing: 0;
}

a,
button {
    transition: background .16s ease, border-color .16s ease, color .16s ease, transform .16s ease, box-shadow .16s ease;
}

button:hover,
a.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(19, 34, 56, .10);
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
    outline: 3px solid rgba(0, 119, 200, .18);
    outline-offset: 2px;
    border-color: var(--sky);
}

.site-top {
    min-height: 36px;
    background: var(--navy);
    color: #e8f2ff;
    font-weight: 700;
}

.public-nav {
    grid-template-columns: minmax(220px, auto) minmax(0, 1fr) auto;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 10px 30px rgba(19, 34, 56, .06);
}

.public-nav nav a {
    color: var(--text);
    font-weight: 800;
}

.public-nav nav a:hover {
    background: var(--soft-2);
}

.public-brand strong,
.login-brand-link strong {
    color: var(--navy);
}

.brand-mark {
    border-radius: 8px;
    background: linear-gradient(135deg, var(--navy), var(--sky));
}

.commercial-hero,
.local-hero {
    width: min(1180px, calc(100% - 40px));
    margin: 28px auto 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 24px 60px rgba(19, 34, 56, .12);
}

.commercial-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(320px, .88fr);
    gap: 44px;
    padding: 56px;
}

.commercial-hero h1,
.local-hero h1 {
    max-width: 780px;
    margin: 0 0 18px;
    color: var(--navy);
    font-size: 58px;
    line-height: 1.02;
    letter-spacing: 0;
}

.commercial-hero p,
.local-hero p {
    color: var(--subtle);
    line-height: 1.68;
}

.hero-media,
.local-hero-media {
    position: relative;
    min-width: 0;
    min-height: 430px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #dfeaf5;
}

.hero-media img,
.local-hero-media img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: block;
    object-fit: cover;
}

.hero-media-card {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: grid;
    gap: 8px;
    padding: 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(255, 255, 255, .82);
    box-shadow: 0 18px 34px rgba(19, 34, 56, .16);
}

.hero-media-card strong {
    color: var(--navy);
    line-height: 1.32;
}

.mini-label {
    width: fit-content;
    border-radius: 999px;
    background: #e7f7f5;
    color: var(--teal);
    font-weight: 900;
    letter-spacing: 0;
}

.hero-search {
    align-items: stretch;
    border-radius: 8px;
    background: #fff;
}

.hero-search input {
    border-color: transparent;
}

.hero-search button,
button.primary,
a.button.primary {
    border-color: var(--navy);
    background: var(--navy);
    color: #fff;
    font-weight: 900;
}

.hero-search button:hover,
button.primary:hover,
a.button.primary:hover {
    background: #092a61;
}

.button.ghost,
a.button.ghost {
    background: #fff;
    border-color: #b9c9dd;
    color: var(--navy);
    font-weight: 900;
}

.trust-list li {
    border-radius: 8px;
    background: #edf8f6;
    border-color: #c7ebe5;
    color: #095f59;
}

.category-strip a {
    min-height: 118px;
    border-color: var(--border);
}

.category-strip strong,
.price-card h3,
.service-grid h3,
.compare-band h3,
.local-blocks h2,
.process-section h3,
.lead-section h2,
.legal-page h1,
.legal-page h2 {
    color: var(--navy);
}

.trust-proof {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    align-items: center;
    gap: 34px;
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(19, 34, 56, .07);
}

.trust-proof p {
    color: var(--subtle);
    line-height: 1.65;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.proof-grid span {
    min-height: 58px;
    display: grid;
    place-items: center;
    padding: 10px;
    border: 1px solid #cae3f7;
    border-radius: 8px;
    background: #f4faff;
    color: var(--navy);
    font-weight: 900;
    text-align: center;
}

.trust-proof .landing-seal {
    max-width: 220px;
}

.trust-proof .ig1-holo-seal.ig1-holo-sticker {
    width: 220px !important;
}

.local-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, .82fr);
    gap: 42px;
    padding: 54px;
}

.local-hero-copy {
    align-self: center;
    min-width: 0;
}

.local-hero-media {
    min-height: 410px;
}

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

.local-blocks article,
.process-section > div,
.legal-grid article {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 22px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(19, 34, 56, .07);
}

.local-blocks p,
.process-section p,
.lead-section p,
.legal-page p {
    color: var(--subtle);
    line-height: 1.65;
}

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

.process-section span {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #e7f7f5;
    color: var(--teal);
    font-weight: 1000;
}

.lead-section {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(360px, 1fr);
    gap: 28px;
    align-items: start;
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
}

.lead-form.card {
    margin: 0;
    box-shadow: none;
    border-color: #cdddec;
    background: #f8fbff;
}

.legal-page {
    padding: 42px 0;
}

.legal-page h1 {
    max-width: 760px;
    margin: 0 0 14px;
    font-size: 46px;
    line-height: 1.08;
    letter-spacing: 0;
}

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

.public-footer {
    background: var(--navy);
}

.footer-map {
    align-content: start;
}

.footer-map a {
    width: fit-content;
}

.sidebar {
    width: 278px;
    padding: 22px 16px;
    background: #07152f;
}

.sidebar nav {
    grid-template-columns: 1fr !important;
    gap: 4px;
}

.sidebar nav a,
.logout button {
    min-height: 42px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    font-weight: 750;
}

.sidebar nav a.active {
    background: #16345f;
    box-shadow: inset 3px 0 0 var(--accent);
}

.main {
    margin-left: 278px;
    padding: 30px;
}

.topbar {
    margin-bottom: 24px;
}

.card,
.stat {
    border-color: var(--border);
}

.card {
    overflow: visible;
}

.card.wide {
    overflow-x: auto;
}

table {
    min-width: 680px;
}

.settings-form {
    width: min(980px, 100%);
}

.login-panel-pro {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
}

.login-card {
    border-radius: 8px;
}

@media (max-width: 1100px) {
    .commercial-hero,
    .local-hero {
        grid-template-columns: 1fr;
        padding: 38px;
    }

    .commercial-hero h1,
    .local-hero h1 {
        font-size: 46px;
    }

    .hero-media,
    .local-hero-media {
        min-height: 360px;
    }

    .category-strip,
    .pricing-grid,
    .service-grid,
    .local-blocks,
    .process-section,
    .legal-grid,
    .proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-proof,
    .lead-section {
        grid-template-columns: 1fr;
    }

    .public-nav {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 800px) {
    .public-nav {
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "brand actions"
            "nav nav";
        gap: 12px;
    }

    .public-brand {
        grid-area: brand;
        min-width: 0;
    }

    .public-logo {
        width: clamp(150px, 42vw, 210px);
    }

    .public-nav nav {
        grid-area: nav;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        width: 100%;
        padding-bottom: 2px;
    }

    .nav-actions {
        grid-area: actions;
        width: auto;
    }

    .commercial-hero h1,
    .local-hero h1 {
        font-size: 40px;
    }

    .sidebar {
        position: sticky;
        inset: auto;
        top: 0;
        width: 100%;
        min-height: auto;
        z-index: 70;
    }

    .sidebar nav {
        display: flex;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 4px;
    }

    .sidebar nav a,
    .logout button {
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .main {
        margin-left: 0;
        padding: 18px;
    }

    .brand-upload-grid {
        grid-template-columns: 1fr;
    }

    .login-panel-pro {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .site-top {
        align-items: flex-start;
        text-align: left;
        padding: 10px 16px;
    }

    .public-nav {
        grid-template-columns: 1fr;
        grid-template-areas:
            "brand"
            "nav"
            "actions";
        padding: 14px 16px;
        min-height: auto;
    }

    .public-logo {
        width: min(220px, 70vw);
        max-height: 64px;
    }

    .public-nav nav {
        grid-template-columns: 1fr 1fr;
    }

    .nav-actions a {
        width: 100%;
    }

    .commercial-hero,
    .local-hero,
    .public-shell > .public-section,
    .public-shell > .category-strip {
        width: calc(100% - 24px);
    }

    .commercial-hero,
    .local-hero {
        padding: 24px;
        gap: 24px;
    }

    .commercial-hero h1,
    .local-hero h1,
    .legal-page h1 {
        font-size: 32px;
        line-height: 1.08;
        overflow-wrap: anywhere;
    }

    .commercial-hero p,
    .local-hero p {
        font-size: 16px;
    }

    .hero-search,
    .hero-actions,
    .trust-list {
        max-width: none !important;
        width: 100%;
    }

    .hero-actions a,
    .hero-search button {
        width: 100%;
    }

    .hero-media,
    .local-hero-media {
        min-height: 260px;
    }

    .category-strip,
    .pricing-grid,
    .service-grid,
    .compare-band,
    .local-blocks,
    .process-section,
    .legal-grid,
    .proof-grid,
    .form-row,
    .stats-grid,
    .grid.two {
        grid-template-columns: 1fr;
    }

    .trust-proof,
    .lead-section {
        padding: 22px;
    }

    .price-card .button {
        width: 100%;
    }

    .public-footer {
        grid-template-columns: 1fr;
        padding: 30px 18px 34px !important;
    }

    .topbar,
    .card-head,
    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .login-panel h1 {
        font-size: 34px;
    }
}

/* Final public header and hero polish */
.site-top {
    min-height: 34px;
    padding: 7px max(18px, calc((100vw - 1180px) / 2));
    background: #001844;
    color: #eef5ff;
    font-size: 13px;
    font-weight: 750;
}

.public-nav {
    display: grid;
    grid-template-columns: minmax(250px, auto) minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    min-height: 84px;
    padding: 12px max(18px, calc((100vw - 1180px) / 2));
    background: rgba(255, 255, 255, .985);
    border-bottom: 1px solid #d8e1f0;
    box-shadow: 0 10px 26px rgba(0, 27, 93, .06);
}

.public-brand {
    gap: 12px;
    min-width: 0;
}

.public-logo {
    width: clamp(132px, 13vw, 174px);
    max-height: 54px;
}

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

.public-brand strong {
    color: #071b4d;
    font-size: 16px;
    line-height: 1.1;
}

.public-brand small {
    color: #69758f;
    font-size: 12px;
    white-space: nowrap;
}

.public-nav nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 0;
}

.public-nav nav a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 10px;
    border-radius: 8px;
    color: #16254a;
    font-size: 13px;
    font-weight: 850;
    white-space: nowrap;
}

.public-nav nav a:hover {
    background: #eef5ff;
    color: #001b5d;
}

.nav-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    white-space: nowrap;
}

.nav-actions .button {
    min-height: 42px;
    padding: 0 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 850;
}

.nav-actions .button.primary {
    background: #001b5d;
    border-color: #001b5d;
    box-shadow: 0 10px 22px rgba(0, 27, 93, .18);
}

.public-shell > .commercial-hero {
    width: 100%;
    min-height: 640px;
    margin: 0;
    padding: 72px max(22px, calc((100vw - 1180px) / 2));
    display: grid;
    grid-template-columns: minmax(0, 650px) minmax(340px, 1fr);
    align-items: center;
    gap: 46px;
    position: relative;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background:
        linear-gradient(90deg, rgba(247, 250, 254, 1) 0%, rgba(247, 250, 254, .98) 45%, rgba(247, 250, 254, .78) 70%, rgba(247, 250, 254, .42) 100%),
        var(--hero-image) center right / cover no-repeat;
}

.commercial-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(0, 163, 255, .16), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,.12), rgba(0,27,93,.08));
    pointer-events: none;
}

.commercial-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: #d7e2f1;
}

.commercial-hero > * {
    position: relative;
    z-index: 1;
}

.commercial-hero .hero-copy {
    max-width: 660px;
}

.commercial-hero .eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    margin-bottom: 16px;
    border: 1px solid #c7d9f2;
    border-radius: 999px;
    background: rgba(255,255,255,.78);
    color: #001b5d;
    font-size: 12px;
    font-weight: 900;
}

.commercial-hero h1 {
    max-width: 640px;
    margin: 0;
    color: #06143a;
    font-size: clamp(44px, 4.8vw, 66px);
    line-height: 1.02;
    font-weight: 900;
}

.commercial-hero p:not(.eyebrow) {
    max-width: 610px;
    margin: 22px 0 0;
    color: #34415d;
    font-size: 19px;
    line-height: 1.68;
}

.hero-search {
    max-width: 640px;
    margin-top: 28px;
    padding: 6px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 172px;
    align-items: center;
    background: #fff;
    border: 1px solid #cbd8eb;
    border-radius: 8px;
    box-shadow: 0 22px 45px rgba(0, 27, 93, .14);
}

.hero-search input {
    min-height: 52px;
    border: 0;
    background: transparent;
    padding: 0 16px;
    color: #071b4d;
}

.hero-search input:focus {
    outline: 0;
    box-shadow: none;
}

.hero-search button {
    min-height: 52px;
    border-radius: 8px;
    font-weight: 900;
}

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

.hero-actions .button {
    min-height: 40px;
    padding: 0 14px;
    font-weight: 850;
}

.trust-list {
    margin-top: 22px;
    gap: 8px;
}

.trust-list li {
    background: rgba(255,255,255,.72);
    border-color: #cbd8eb;
    color: #233960;
}

.hero-media {
    min-height: 440px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    overflow: visible;
    border: 0;
    background: transparent;
    padding: 0 0 18px;
}

.hero-infra-panel {
    width: min(520px, 100%);
    padding: 30px;
    color: #fff;
    background:
        linear-gradient(145deg, rgba(0, 27, 93, .99), rgba(6, 20, 58, .97));
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0, 27, 93, .34);
    backdrop-filter: blur(14px);
}

.hero-infra-panel .mini-label {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 0 10px;
    border: 1px solid rgba(132, 245, 233, .5);
    background: rgba(132, 245, 233, .18);
    color: #9ffff3;
    font-size: 12px;
    font-weight: 900;
}

.hero-infra-panel h2 {
    max-width: 470px;
    margin: 16px 0 0;
    color: #fff;
    font-size: clamp(32px, 3vw, 42px);
    line-height: 1.08;
    font-weight: 900;
}

.commercial-hero .hero-infra-panel p {
    max-width: 470px;
    margin: 16px 0 0;
    color: #f5f9ff;
    font-size: 17px;
    line-height: 1.62;
}

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

.infra-status span {
    min-height: 84px;
    padding: 16px;
    display: grid;
    align-content: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 8px;
    background: rgba(255, 255, 255, .11);
}

.infra-status strong {
    color: #fff;
    font-size: 20px;
    line-height: 1.1;
}

.infra-status small {
    color: #e1ebff;
    font-size: 14px;
    line-height: 1.35;
}

.infra-line {
    margin-top: 14px;
    padding-top: 14px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    color: #edf4ff;
    font-size: 15px;
    line-height: 1.35;
}

.infra-line strong {
    color: #9ffff3;
    white-space: nowrap;
    font-size: 15px;
}

.public-shell > .category-strip {
    margin-top: -34px;
    position: relative;
    z-index: 3;
}

.category-strip a {
    min-height: 92px;
    padding: 18px;
    border-color: #d6e0ef;
    box-shadow: 0 18px 38px rgba(0, 27, 93, .09);
}

@media (max-width: 1180px) {
    .public-nav {
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "brand actions"
            "nav nav";
        gap: 10px 16px;
    }

    .public-brand {
        grid-area: brand;
    }

    .public-nav nav {
        grid-area: nav;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .nav-actions {
        grid-area: actions;
        justify-content: flex-end;
    }
}

@media (max-width: 900px) {
    .site-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
    }

    .public-shell > .commercial-hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 38px;
        padding-bottom: 42px;
        background:
            linear-gradient(180deg, rgba(245, 248, 252, .98) 0%, rgba(245, 248, 252, .92) 62%, rgba(245, 248, 252, .76) 100%),
            var(--hero-image) center bottom / cover no-repeat;
    }

    .commercial-hero h1 {
        font-size: clamp(38px, 7vw, 48px);
    }

    .commercial-hero p:not(.eyebrow) {
        margin-top: 16px;
    }

    .hero-media {
        min-height: auto;
        justify-content: stretch;
        padding: 0;
    }

    .hero-infra-panel {
        width: 100%;
        padding: 24px;
    }

    .hero-infra-panel h2 {
        font-size: 32px;
    }

    .commercial-hero .hero-infra-panel p {
        font-size: 16px;
        line-height: 1.55;
    }

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

    .infra-status span {
        min-height: 78px;
        padding: 14px;
    }

    .public-shell > .category-strip {
        margin-top: 18px;
    }
}

@media (max-width: 640px) {
    .public-nav {
        padding: 12px 16px;
    }

    .public-brand {
        align-items: center;
    }

    .public-brand span {
        display: none;
    }

    .public-logo {
        width: min(180px, 58vw);
        max-height: 52px;
    }

    .public-nav nav {
        width: 100%;
    }

    .nav-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .nav-actions .button {
        width: 100%;
        padding: 0 10px;
    }

    .commercial-hero h1 {
        font-size: clamp(34px, 12vw, 46px);
    }

    .commercial-hero p:not(.eyebrow) {
        font-size: 16px;
    }

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

    .hero-search button {
        width: 100%;
    }

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

    .infra-line {
        display: grid;
        gap: 4px;
    }
}

/* IG1 public design system - global production layer */
:root {
    --ig1-navy: #061842;
    --ig1-blue: #001b5d;
    --ig1-sky: #0b8fe8;
    --ig1-teal: #10b8a8;
    --ig1-ink: #101828;
    --ig1-text: #26364f;
    --ig1-muted: #667085;
    --ig1-soft: #f5f8fc;
    --ig1-panel: #ffffff;
    --ig1-line: #d8e2f0;
    --ig1-radius: 8px;
    --ig1-shadow-sm: 0 10px 26px rgba(6, 24, 66, .08);
    --ig1-shadow-md: 0 22px 56px rgba(6, 24, 66, .12);
    --ig1-shadow-lg: 0 34px 90px rgba(6, 24, 66, .18);
}

body {
    font-family: Inter, "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--ig1-ink);
    background: var(--ig1-soft);
}

.public-shell {
    background:
        linear-gradient(180deg, #f7faff 0, #f4f7fb 520px, #fff 100%);
}

.public-section {
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto;
    padding: 70px 0;
}

.public-section + .public-section {
    padding-top: 26px;
}

.section-head {
    margin-bottom: 26px;
}

.section-head h2,
.public-section h2 {
    color: var(--ig1-navy);
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.12;
    letter-spacing: 0;
}

.public-section p,
.price-card p,
.service-grid p,
.local-blocks p,
.faq-section p,
.lead-section p {
    color: var(--ig1-text);
    font-size: 16px;
    line-height: 1.72;
}

.eyebrow {
    color: var(--ig1-sky);
    letter-spacing: 0;
    font-size: 12px;
    font-weight: 850;
}

.site-top {
    display: flex;
    justify-content: center;
    gap: 24px;
    background: #061842;
    color: #fff;
}

.public-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    min-height: 78px;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
}

.public-nav nav a {
    color: #172448;
    font-weight: 780;
}

.public-nav nav a:hover {
    background: #edf6ff;
}

.button,
button,
a.button,
.hero-search button {
    min-height: 42px;
    border-radius: var(--ig1-radius);
    font-weight: 800;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

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

a.button.primary,
button.primary,
.hero-search button {
    background: var(--ig1-blue);
    border-color: var(--ig1-blue);
    color: #fff;
    box-shadow: 0 14px 28px rgba(0, 27, 93, .16);
}

a.button.primary:hover,
button.primary:hover,
.hero-search button:hover {
    background: #082a78;
}

a.button.ghost,
.button.ghost {
    background: #fff;
    color: var(--ig1-blue);
    border-color: #b9c9dd;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 18px;
    color: #6b7892;
    font-size: 13px;
    font-weight: 700;
}

.breadcrumbs a {
    color: #335887;
}

.breadcrumbs strong {
    color: var(--ig1-navy);
}

.public-shell > .commercial-hero-pro {
    min-height: 620px;
    padding: 68px max(24px, calc((100vw - 1180px) / 2)) 82px;
    grid-template-columns: minmax(0, 640px) minmax(360px, 1fr);
    gap: 48px;
    background:
        linear-gradient(90deg, rgba(248, 251, 255, 1) 0%, rgba(248, 251, 255, .98) 46%, rgba(248, 251, 255, .84) 67%, rgba(248, 251, 255, .45) 100%),
        var(--hero-image) center right / cover no-repeat;
}

.commercial-hero-pro::before {
    background:
        linear-gradient(180deg, rgba(255,255,255,.22), rgba(0,27,93,.05)),
        radial-gradient(circle at 18% 20%, rgba(11, 143, 232, .13), transparent 32%);
}

.commercial-hero-pro h1 {
    max-width: 630px;
    font-size: clamp(42px, 4.2vw, 62px);
    line-height: 1.06;
    font-weight: 850;
}

.commercial-hero-pro .hero-copy > p:not(.eyebrow) {
    max-width: 620px;
    color: #34415d;
    font-size: clamp(17px, 1.45vw, 19px);
    line-height: 1.72;
}

.commercial-hero-pro .hero-actions {
    gap: 12px;
}

.commercial-hero-pro .hero-actions .button {
    min-height: 46px;
    padding: 0 18px;
}

.commercial-hero-pro .trust-list li {
    background: rgba(255,255,255,.84);
    color: #20365f;
}

.commercial-hero-pro .hero-media {
    min-height: 420px;
    align-items: center;
}

.commercial-hero-pro .hero-infra-panel {
    width: min(500px, 100%);
    padding: 30px;
    background: linear-gradient(145deg, rgba(6, 24, 66, .98), rgba(0, 27, 93, .96));
    box-shadow: var(--ig1-shadow-lg);
}

.commercial-hero-pro .hero-infra-panel h2 {
    font-size: clamp(28px, 2.55vw, 38px);
    line-height: 1.12;
}

.commercial-hero-pro .hero-infra-panel p {
    color: #f5f9ff;
    font-size: 16px;
}

.infra-status span {
    background: rgba(255,255,255,.12);
}

.category-strip-pro {
    width: min(1180px, calc(100% - 44px));
    margin: -38px auto 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.category-strip-pro a {
    display: grid;
    gap: 5px;
    min-height: 94px;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--ig1-line);
    border-radius: var(--ig1-radius);
    box-shadow: var(--ig1-shadow-sm);
}

.category-strip-pro strong {
    color: var(--ig1-navy);
}

.category-strip-pro span {
    color: #5d6d86;
    font-size: 13px;
    line-height: 1.35;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 48px;
    align-items: start;
}

.trust-proof,
.internal-links-block,
.final-cta {
    border: 1px solid var(--ig1-line);
    border-radius: var(--ig1-radius);
    background: #fff;
    box-shadow: var(--ig1-shadow-sm);
}

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

.feature-grid-pro article,
.price-card,
.local-blocks article,
.process-section-pro > div:not(.process-heading),
.lead-form,
.domain-result {
    border: 1px solid var(--ig1-line);
    border-radius: var(--ig1-radius);
    background: #fff;
    box-shadow: var(--ig1-shadow-sm);
}

.feature-grid-pro article,
.local-blocks article,
.process-section-pro > div:not(.process-heading) {
    padding: 24px;
}

.feature-icon {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: var(--ig1-radius);
    background: #eaf6ff;
    color: var(--ig1-blue);
    font-size: 13px;
    font-weight: 900;
}

.service-grid h3,
.price-card h3,
.local-blocks h2,
.process-section-pro h3 {
    color: var(--ig1-navy);
}

.price-card {
    position: relative;
    overflow: hidden;
    padding: 26px;
}

.price-card.featured {
    border-color: rgba(11, 143, 232, .45);
    box-shadow: var(--ig1-shadow-md);
}

.price-line strong {
    color: var(--ig1-blue);
}

.feature-list {
    display: grid;
    gap: 9px;
    padding-left: 0;
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 22px;
    color: #34415d;
    line-height: 1.5;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .62em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--ig1-teal);
}

.process-section-pro {
    display: grid;
    grid-template-columns: 1.1fr repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.process-heading {
    align-self: center;
}

.process-section-pro span {
    color: var(--ig1-sky);
    font-weight: 900;
}

.internal-links-block {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.35fr);
    gap: 30px;
    padding: 34px;
}

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

.internal-links-grid a {
    display: grid;
    gap: 5px;
    padding: 16px;
    border: 1px solid #dbe6f5;
    border-radius: var(--ig1-radius);
    background: #f8fbff;
}

.internal-links-grid strong {
    color: var(--ig1-navy);
}

.internal-links-grid span {
    color: #60708b;
    font-size: 13px;
    line-height: 1.38;
}

.faq-section-pro {
    max-width: 900px;
}

.faq-section-pro details {
    border: 1px solid var(--ig1-line);
    border-radius: var(--ig1-radius);
    background: #fff;
    box-shadow: 0 8px 20px rgba(6, 24, 66, .045);
}

.faq-section-pro summary {
    padding: 18px 20px;
    color: var(--ig1-navy);
    font-weight: 820;
}

.faq-section-pro details p {
    padding: 0 20px 20px;
}

.final-cta {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) auto;
    gap: 28px;
    align-items: center;
    padding: 34px;
    background:
        linear-gradient(135deg, #061842, #082a78);
}

.final-cta h2,
.final-cta p,
.final-cta .eyebrow {
    color: #fff;
}

.final-cta p {
    color: #e3edff;
}

.final-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.final-cta .button.ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.42);
}

.local-hero-pro {
    min-height: 560px !important;
}

.local-variant-1 .hero-infra-panel,
.service-hero-dominios .hero-infra-panel {
    background: linear-gradient(145deg, rgba(7, 48, 91, .98), rgba(0, 87, 139, .95));
}

.local-variant-2 .hero-infra-panel,
.service-hero-mantenimiento-web .hero-infra-panel {
    background: linear-gradient(145deg, rgba(17, 58, 77, .98), rgba(0, 90, 105, .95));
}

.local-variant-3 .hero-infra-panel,
.service-hero-servidores-dedicados .hero-infra-panel {
    background: linear-gradient(145deg, rgba(9, 22, 54, .99), rgba(20, 37, 82, .97));
}

.local-variant-4 .hero-infra-panel,
.service-hero-tienda-online .hero-infra-panel {
    background: linear-gradient(145deg, rgba(15, 33, 71, .99), rgba(0, 74, 116, .96));
}

.lead-section {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(360px, 1fr);
    gap: 26px;
    align-items: start;
}

.lead-form {
    padding: 24px;
    overflow: visible;
}

.lead-form input,
.lead-form textarea,
.domain-search input,
.form-stack input,
.form-stack select,
.form-stack textarea {
    min-height: 46px;
    border-color: #cfdced;
    background: #fff;
}

@media (max-width: 1100px) {
    .public-shell > .commercial-hero-pro {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 50px;
        background:
            linear-gradient(180deg, rgba(248, 251, 255, .99) 0%, rgba(248, 251, 255, .94) 68%, rgba(248, 251, 255, .78) 100%),
            var(--hero-image) center bottom / cover no-repeat;
    }

    .commercial-hero-pro .hero-media {
        min-height: auto;
        justify-content: stretch;
    }

    .commercial-hero-pro .hero-infra-panel {
        width: 100%;
    }

    .category-strip-pro,
    .feature-grid-pro,
    .plan-grid,
    .pricing-grid,
    .local-blocks {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-section-pro,
    .internal-links-block,
    .lead-section,
    .final-cta,
    .split-section {
        grid-template-columns: 1fr;
    }

    .final-cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 900px) {
    .public-shell > .commercial-hero-pro {
        padding-top: 38px;
        padding-bottom: 44px;
    }

    .commercial-hero-pro .hero-media {
        display: none;
    }

    .commercial-hero-pro .trust-list {
        margin-top: 18px;
    }
}

@media (max-width: 720px) {
    .public-section {
        width: min(100% - 32px, 1180px);
        padding: 46px 0;
    }

    .site-top {
        align-items: flex-start;
        padding: 8px 16px;
        gap: 2px;
        font-size: 12px;
    }

    .public-nav {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 12px 16px;
    }

    .public-nav nav {
        overflow-x: auto;
        justify-content: flex-start;
        width: 100%;
    }

    .nav-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .nav-actions .button {
        width: 100%;
    }

    .commercial-hero-pro h1 {
        font-size: clamp(34px, 10vw, 44px);
        line-height: 1.08;
    }

    .commercial-hero-pro .hero-copy > p:not(.eyebrow) {
        font-size: 16px;
    }

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

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

    .hero-actions .button,
    .hero-search button {
        width: 100%;
    }

    .commercial-hero-pro .hero-infra-panel {
        padding: 22px;
    }

    .commercial-hero-pro .hero-infra-panel h2 {
        font-size: 27px;
    }

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

    .infra-status span {
        min-height: 76px;
        padding: 13px;
    }

    .category-strip-pro,
    .feature-grid-pro,
    .plan-grid,
    .pricing-grid,
    .local-blocks,
    .internal-links-grid {
        grid-template-columns: 1fr;
    }

    .category-strip-pro {
        margin-top: 16px;
    }

    .final-cta,
    .internal-links-block {
        padding: 24px;
    }
}

/* IG1 premium visual pass: glass, spacing and reflective detail */
:root {
    --ig1-midnight: #00154d;
    --ig1-deep: #061b4d;
    --ig1-electric: #0079ff;
    --ig1-ice: #eaf6ff;
    --ig1-aqua: #51f0de;
    --ig1-ink: #061842;
    --ig1-copy: #172849;
    --ig1-soft: #f4f8ff;
    --ig1-glass: rgba(255, 255, 255, .78);
    --ig1-glass-strong: rgba(255, 255, 255, .92);
    --ig1-border-glass: rgba(123, 172, 229, .38);
    --ig1-shadow-premium: 0 24px 70px rgba(2, 18, 58, .14);
    --ig1-shadow-tight: 0 14px 34px rgba(2, 18, 58, .10);
}

body {
    color: var(--ig1-ink);
    background:
        linear-gradient(115deg, rgba(255,255,255,.94) 0 18%, rgba(235,246,255,.64) 18% 18.6%, transparent 18.6% 100%),
        linear-gradient(165deg, transparent 0 64%, rgba(210,236,255,.78) 64% 64.6%, transparent 64.6% 100%),
        linear-gradient(180deg, #f7fbff 0%, #eef5ff 48%, #f9fbff 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    opacity: .78;
    background:
        linear-gradient(105deg, transparent 0 13%, rgba(255,255,255,.84) 13.2% 14.3%, transparent 14.5% 100%),
        linear-gradient(145deg, transparent 0 72%, rgba(112,205,255,.16) 72.2% 73.2%, transparent 73.4% 100%);
}

.public-shell {
    position: relative;
    isolation: isolate;
    padding-bottom: 72px;
}

.site-top {
    min-height: 36px;
    padding: 8px max(22px, calc((100vw - 1180px) / 2));
    background:
        linear-gradient(90deg, #001341, #00246f 54%, #001341),
        linear-gradient(120deg, transparent 0 36%, rgba(255,255,255,.22) 37%, transparent 39% 100%);
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 21, 77, .16);
}

.site-top span {
    color: #f4f9ff;
    text-shadow: 0 1px 12px rgba(140, 220, 255, .22);
}

.public-nav {
    position: sticky;
    top: 0;
    z-index: 30;
    min-height: 104px;
    padding: 14px max(22px, calc((100vw - 1180px) / 2));
    border-bottom: 1px solid rgba(164, 196, 233, .48);
    background:
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(246,251,255,.80)),
        linear-gradient(110deg, transparent 0 42%, rgba(255,255,255,.82) 45%, transparent 48% 100%);
    backdrop-filter: blur(18px) saturate(1.35);
    box-shadow: 0 18px 42px rgba(1, 26, 76, .08);
}

.public-brand {
    min-width: 0;
    gap: 18px;
}

.public-logo {
    width: clamp(150px, 15vw, 208px);
    max-height: 78px;
    object-fit: contain;
    filter: drop-shadow(0 12px 22px rgba(0, 27, 93, .16));
}

.public-brand strong {
    color: var(--ig1-midnight);
    font-size: 18px;
    letter-spacing: 0;
}

.public-brand small {
    color: #49627f;
    font-weight: 650;
}

.public-nav nav {
    justify-content: center;
    gap: 8px;
}

.public-nav nav a {
    position: relative;
    padding: 11px 14px;
    border: 1px solid transparent;
    border-radius: 8px;
    color: #071e50;
    font-weight: 850;
}

.public-nav nav a::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 7px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--ig1-electric), var(--ig1-aqua));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .22s ease;
}

.public-nav nav a:hover {
    background: rgba(234, 246, 255, .86);
    border-color: rgba(137, 187, 233, .42);
    color: var(--ig1-midnight);
}

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

.nav-actions {
    gap: 10px;
}

.button,
button,
a.button {
    position: relative;
    overflow: hidden;
    min-height: 44px;
    border-radius: 8px;
    font-weight: 850;
    box-shadow: 0 9px 22px rgba(6, 24, 66, .08);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.button::before,
button::before,
a.button::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 0 38%, rgba(255,255,255,.48) 47%, transparent 56% 100%);
    transform: translateX(-130%);
}

.button:hover,
button:hover,
a.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(6, 24, 66, .13);
}

.button.primary,
button.primary,
a.button.primary,
.nav-actions .button.primary {
    border-color: #001b5d;
    color: #fff;
    background:
        linear-gradient(180deg, #00318d, #001b5d),
        linear-gradient(110deg, transparent, rgba(255,255,255,.28), transparent);
}

.button.ghost,
a.button.ghost {
    color: #061842;
    border-color: rgba(122, 166, 218, .55);
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(12px);
}

.public-shell > .commercial-hero-pro {
    width: min(1180px, calc(100% - 72px));
    min-height: 650px;
    margin: 30px auto 0;
    padding: clamp(52px, 6vw, 84px);
    border: 1px solid rgba(146, 188, 230, .48);
    border-radius: 8px;
    overflow: hidden;
    background:
        linear-gradient(105deg, rgba(255,255,255,.96) 0%, rgba(246,251,255,.94) 48%, rgba(239,248,255,.68) 68%, rgba(255,255,255,.28) 100%),
        var(--hero-image) center right / cover no-repeat;
    box-shadow: var(--ig1-shadow-premium);
}

.public-shell > .public-section.trust-proof {
    padding: clamp(42px, 5vw, 68px) clamp(34px, 5vw, 58px) clamp(42px, 5vw, 64px);
}

.public-shell > .commercial-hero-pro::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(120deg, transparent 0 16%, rgba(0,121,255,.09) 16.2% 17%, transparent 17.2% 100%),
        linear-gradient(153deg, transparent 0 75%, rgba(81,240,222,.16) 75.2% 76%, transparent 76.2% 100%),
        linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,0));
}

.public-shell > .commercial-hero-pro::after {
    content: "";
    position: absolute;
    top: -22%;
    bottom: -22%;
    width: 210px;
    left: -260px;
    pointer-events: none;
    background: linear-gradient(100deg, transparent 0 22%, rgba(255,255,255,.48) 48%, transparent 74% 100%);
    transform: rotate(9deg);
    opacity: .72;
}

.commercial-hero-pro > * {
    position: relative;
    z-index: 1;
}

.commercial-hero-pro .hero-copy {
    max-width: 650px;
}

.commercial-hero-pro .eyebrow,
.public-section .eyebrow {
    color: #005ecb;
    letter-spacing: 0;
    font-weight: 950;
}

.commercial-hero-pro h1 {
    max-width: 680px;
    color: #001341;
    font-size: clamp(44px, 4.8vw, 72px);
    line-height: .98;
    letter-spacing: 0;
    text-wrap: balance;
}

.commercial-hero-pro .hero-copy > p:not(.eyebrow) {
    max-width: 630px;
    color: #193055;
    font-size: clamp(17px, 1.35vw, 20px);
    line-height: 1.78;
}

.hero-search {
    max-width: 640px;
    padding: 8px;
    border: 1px solid rgba(134, 183, 231, .44);
    border-radius: 8px;
    background: rgba(255,255,255,.78);
    backdrop-filter: blur(14px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.88), 0 18px 34px rgba(0, 27, 93, .10);
}

.hero-search input,
.domain-search input {
    border-color: rgba(154, 190, 227, .55);
    background: rgba(255,255,255,.92);
    color: #061842;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.trust-list {
    gap: 10px;
}

.commercial-hero-pro .trust-list li {
    border: 1px solid rgba(130, 180, 232, .38);
    background: rgba(255,255,255,.74);
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 24px rgba(0, 27, 93, .08);
}

.commercial-hero-pro .hero-media {
    justify-content: flex-end;
}

.commercial-hero-pro .hero-infra-panel {
    position: relative;
    width: min(470px, 100%);
    padding: 34px;
    border: 1px solid rgba(198, 229, 255, .30);
    border-radius: 8px;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(0, 21, 77, .96), rgba(0, 48, 141, .88)),
        linear-gradient(115deg, transparent 0 34%, rgba(255,255,255,.20) 44%, transparent 55% 100%);
    box-shadow: 0 28px 72px rgba(0, 20, 70, .26);
}

.commercial-hero-pro .hero-infra-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(125deg, rgba(255,255,255,.20), transparent 28%),
        repeating-linear-gradient(90deg, rgba(255,255,255,.045) 0 1px, transparent 1px 18px);
}

.commercial-hero-pro .hero-infra-panel::after {
    content: "";
    position: absolute;
    inset: -40% auto -40% -55%;
    width: 46%;
    pointer-events: none;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,.26), transparent);
    transform: rotate(12deg);
}

.commercial-hero-pro .hero-infra-panel > * {
    position: relative;
    z-index: 1;
}

.hero-infra-panel .mini-label {
    color: #061842;
    background: linear-gradient(90deg, #8ffbed, #eaf6ff);
}

.commercial-hero-pro .hero-infra-panel h2,
.commercial-hero-pro .hero-infra-panel p {
    color: #fff;
}

.infra-status {
    gap: 12px;
}

.infra-status span {
    border: 1px solid rgba(213, 235, 255, .28);
    border-radius: 8px;
    background: rgba(255,255,255,.11);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
}

.infra-status strong {
    color: #fff;
}

.infra-status small,
.infra-line span {
    color: #e7f2ff;
}

.infra-line {
    border-color: rgba(214, 234, 255, .18);
}

.infra-line strong {
    color: #8ffbed;
}

.category-strip-pro {
    width: min(1180px, calc(100% - 72px));
    margin-top: -34px;
    gap: 14px;
    position: relative;
    z-index: 4;
}

.category-strip-pro a,
.feature-grid-pro article,
.price-card,
.local-blocks article,
.process-section-pro > div:not(.process-heading),
.lead-form,
.domain-result,
.faq-section-pro details,
.internal-links-grid a {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(138, 184, 231, .42);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(246,251,255,.78)),
        linear-gradient(118deg, transparent 0 34%, rgba(255,255,255,.72) 44%, transparent 53% 100%);
    backdrop-filter: blur(14px) saturate(1.2);
    box-shadow: var(--ig1-shadow-tight);
}

.category-strip-pro a::before,
.feature-grid-pro article::before,
.price-card::before,
.local-blocks article::before,
.process-section-pro > div:not(.process-heading)::before,
.lead-form::before,
.domain-result::before,
.faq-section-pro details::before,
.internal-links-grid a::before,
.trust-proof::before,
.final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(120deg, rgba(255,255,255,.78), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,.26), transparent);
}

.category-strip-pro a:hover,
.feature-grid-pro article:hover,
.price-card:hover,
.internal-links-grid a:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 121, 255, .42);
    box-shadow: 0 24px 54px rgba(0, 36, 111, .14);
}

.category-strip-pro strong,
.feature-grid-pro h3,
.price-card h3,
.local-blocks h2,
.process-section-pro h3 {
    color: #001341;
}

.category-strip-pro span,
.feature-grid-pro p,
.price-card p,
.local-blocks p,
.process-section-pro p,
.internal-links-grid span {
    color: #203757;
}

.public-section {
    width: min(1180px, calc(100% - 72px));
    margin: 36px auto;
}

.split-section {
    gap: clamp(30px, 5vw, 70px);
    align-items: center;
}

.split-section h2,
.section-head h2,
.public-section h2 {
    color: #001341;
    text-wrap: balance;
}

.trust-proof {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(190px, 260px);
    gap: clamp(28px, 5vw, 70px);
    align-items: center;
    min-height: 360px;
    padding: clamp(38px, 5vw, 62px) clamp(34px, 5vw, 58px);
    border: 1px solid rgba(138, 184, 231, .42);
    border-radius: 8px;
    overflow: hidden;
    background:
        linear-gradient(105deg, rgba(255,255,255,.94) 0%, rgba(248,252,255,.88) 52%, rgba(234,247,255,.66) 100%),
        linear-gradient(135deg, transparent 0 68%, rgba(81,240,222,.14) 68.2% 69%, transparent 69.2% 100%);
    box-shadow: var(--ig1-shadow-premium);
}

.trust-proof::after {
    content: "";
    position: absolute;
    top: 0;
    right: 260px;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(129, 184, 232, .38), transparent);
}

.trust-proof > * {
    position: relative;
    z-index: 1;
}

.trust-proof h2 {
    max-width: 760px;
    margin-bottom: 20px;
    font-size: clamp(34px, 3.35vw, 52px);
    line-height: 1.08;
}

.trust-proof p {
    max-width: 760px;
    color: #183152;
    font-size: clamp(16px, 1.25vw, 18px);
    line-height: 1.72;
}

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

.proof-grid span {
    min-height: 62px;
    display: grid;
    place-items: center;
    padding: 14px 16px;
    border: 1px solid rgba(122, 173, 225, .46);
    border-radius: 8px;
    color: #001b5d;
    font-weight: 900;
    text-align: center;
    background: rgba(255,255,255,.62);
    backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.80);
}

.trust-proof .landing-seal {
    justify-self: center;
    margin: 0;
    padding: 18px;
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.68), rgba(235,247,255,.38)),
        linear-gradient(125deg, transparent 0 42%, rgba(255,255,255,.72) 47%, transparent 54% 100%);
    box-shadow: 0 24px 58px rgba(0, 27, 93, .13);
}

.trust-proof .ig1-holo-seal.ig1-holo-sticker {
    width: min(210px, 20vw);
    height: min(210px, 20vw);
    min-width: 178px;
    min-height: 178px;
}

.service-grid-section,
.plan-grid,
.pricing-grid,
.local-blocks,
.lead-section {
    gap: 20px;
}

.feature-grid-pro article,
.price-card,
.process-section-pro > div:not(.process-heading),
.lead-form,
.domain-result {
    padding: 28px;
}

.feature-icon {
    border: 1px solid rgba(0, 121, 255, .20);
    background:
        linear-gradient(145deg, rgba(234,246,255,.95), rgba(255,255,255,.66)),
        linear-gradient(120deg, transparent, rgba(81,240,222,.35), transparent);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.85), 0 12px 22px rgba(0, 121, 255, .10);
}

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

.price-card.featured {
    border-color: rgba(0, 121, 255, .55);
    box-shadow: 0 28px 62px rgba(0, 58, 158, .16);
}

.price-card.featured::after {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ig1-electric), var(--ig1-aqua));
}

.price-line {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 18px 0;
}

.price-line strong {
    color: #004bcc;
    font-size: 30px;
}

.feature-list li {
    color: #183152;
}

.process-section-pro {
    gap: 18px;
}

.process-heading {
    padding-right: 18px;
}

.internal-links-block {
    padding: clamp(30px, 4vw, 48px);
    border: 1px solid rgba(138, 184, 231, .42);
    background:
        linear-gradient(120deg, rgba(255,255,255,.94), rgba(242,249,255,.82)),
        linear-gradient(145deg, transparent 0 70%, rgba(81,240,222,.11) 70.2% 71%, transparent 71.2%);
    box-shadow: var(--ig1-shadow-tight);
}

.faq-section-pro details + details {
    margin-top: 12px;
}

.final-cta {
    position: relative;
    padding: clamp(34px, 5vw, 56px);
    overflow: hidden;
    border: 1px solid rgba(170, 220, 255, .28);
    background:
        linear-gradient(135deg, rgba(0,19,65,.98), rgba(0,45,128,.95)),
        linear-gradient(120deg, transparent 0 38%, rgba(255,255,255,.18) 46%, transparent 54% 100%);
    box-shadow: 0 28px 72px rgba(0, 21, 77, .24);
}

.final-cta::after {
    content: "";
    position: absolute;
    top: -40%;
    bottom: -40%;
    left: -30%;
    width: 28%;
    pointer-events: none;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,.18), transparent);
    transform: rotate(13deg);
}

.final-cta > * {
    position: relative;
    z-index: 1;
}

.public-footer {
    width: min(1180px, calc(100% - 72px));
    margin: 54px auto 0;
    padding: 34px;
    border: 1px solid rgba(138, 184, 231, .34);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(243,249,255,.80));
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 46px rgba(2, 18, 58, .10);
}

.public-footer strong {
    color: #001341;
}

.public-footer p,
.public-footer span {
    color: #2b3d5c;
}

.auth-shell {
    background:
        linear-gradient(120deg, rgba(255,255,255,.95), rgba(238,248,255,.74)),
        linear-gradient(145deg, transparent 0 66%, rgba(0,121,255,.12) 66.2% 67%, transparent 67.2% 100%);
}

.login-panel,
.login-panel-pro {
    gap: 28px;
}

.login-card,
.login-panel .card,
.card,
.stat {
    border: 1px solid rgba(138, 184, 231, .36);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.94), rgba(247,251,255,.84));
    box-shadow: var(--ig1-shadow-tight);
}

.sidebar {
    background:
        linear-gradient(180deg, #001341, #061842 52%, #001033),
        linear-gradient(120deg, transparent 0 40%, rgba(255,255,255,.12) 48%, transparent 56% 100%);
    box-shadow: 18px 0 50px rgba(0, 19, 65, .16);
}

.sidebar nav a,
.logout button {
    border: 1px solid transparent;
}

.sidebar nav a.active,
.sidebar nav a:hover,
.logout button:hover {
    border-color: rgba(171, 220, 255, .18);
    background: rgba(255,255,255,.10);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
}

.main {
    background:
        linear-gradient(135deg, rgba(255,255,255,.70), rgba(238,248,255,.38)),
        linear-gradient(180deg, #f7fbff, #f3f7fc);
}

table {
    border-collapse: separate;
    border-spacing: 0;
}

th {
    color: #4d6381;
}

td {
    color: #132746;
}

input,
select,
textarea {
    border-color: rgba(132, 174, 218, .55);
    background: rgba(255,255,255,.88);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.82);
}

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(0, 121, 255, .16);
    border-color: rgba(0, 121, 255, .55);
}

@media (prefers-reduced-motion: no-preference) {
    .public-shell > .commercial-hero-pro::after {
        animation: ig1-sheen 7.2s ease-in-out infinite;
    }

    .commercial-hero-pro .hero-infra-panel::after,
    .final-cta::after {
        animation: ig1-panel-sheen 8s ease-in-out infinite;
    }

    .button:hover::before,
    button:hover::before,
    a.button:hover::before {
        animation: ig1-button-shine .78s ease both;
    }

    .category-strip-pro a,
    .feature-grid-pro article,
    .price-card,
    .internal-links-grid a {
        transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
    }
}

@keyframes ig1-sheen {
    0%, 24% { left: -260px; opacity: 0; }
    34% { opacity: .72; }
    58%, 100% { left: calc(100% + 160px); opacity: 0; }
}

@keyframes ig1-panel-sheen {
    0%, 30% { transform: translateX(0) rotate(12deg); opacity: 0; }
    42% { opacity: .70; }
    72%, 100% { transform: translateX(360%) rotate(12deg); opacity: 0; }
}

@keyframes ig1-button-shine {
    from { transform: translateX(-130%); }
    to { transform: translateX(130%); }
}

@media (max-width: 1100px) {
    .public-nav {
        grid-template-columns: 1fr;
        gap: 14px;
    }

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

    .public-shell > .commercial-hero-pro {
        width: min(100% - 44px, 1180px);
        grid-template-columns: 1fr;
        background:
            linear-gradient(180deg, rgba(255,255,255,.97), rgba(244,250,255,.88)),
            var(--hero-image) center bottom / cover no-repeat;
    }

    .trust-proof {
        grid-template-columns: 1fr;
    }

    .trust-proof::after {
        display: none;
    }

    .trust-proof .landing-seal {
        justify-self: start;
    }

    .trust-proof .ig1-holo-seal.ig1-holo-sticker {
        width: 190px;
        height: 190px;
    }

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

@media (max-width: 720px) {
    .site-top,
    .public-nav {
        padding-left: 18px;
        padding-right: 18px;
    }

    .public-logo {
        width: 150px;
        max-height: 64px;
    }

    .public-nav nav {
        gap: 6px;
        padding-bottom: 4px;
    }

    .public-nav nav a {
        padding: 10px 12px;
        white-space: nowrap;
    }

    .public-shell > .commercial-hero-pro,
    .public-section,
    .category-strip-pro,
    .public-footer {
        width: min(100% - 28px, 1180px);
    }

    .public-shell > .commercial-hero-pro {
        margin-top: 16px;
        padding: 32px 22px;
    }

    .commercial-hero-pro h1 {
        font-size: clamp(32px, 9.4vw, 42px);
        line-height: 1.04;
    }

    .proof-grid {
        grid-template-columns: 1fr;
    }

    .trust-proof,
    .internal-links-block,
    .final-cta,
    .public-footer {
        padding: 24px;
    }

    .trust-proof .landing-seal {
        justify-self: center;
        width: 100%;
        display: grid;
        place-items: center;
    }

    .trust-proof .ig1-holo-seal.ig1-holo-sticker {
        width: 174px;
        height: 174px;
        min-width: 174px;
        min-height: 174px;
    }
}

/* Mobile navigation hardening */
@media (max-width: 720px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .public-nav {
        display: grid;
        grid-template-columns: 1fr !important;
        grid-template-areas:
            "brand"
            "actions"
            "nav" !important;
        grid-auto-flow: row;
        gap: 12px;
        width: 100%;
        min-height: 0;
        align-items: stretch;
    }

    .public-brand {
        grid-area: brand;
        grid-column: 1 / -1;
        width: 100%;
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        align-items: center;
        gap: 12px;
    }

    .public-logo {
        width: 122px;
        max-height: 54px;
    }

    .public-brand span {
        min-width: 0;
    }

    .public-brand strong,
    .public-brand small {
        overflow-wrap: anywhere;
    }

    .public-brand small {
        display: none;
    }

    .nav-actions {
        grid-area: actions;
        grid-column: 1 / -1;
        order: 2;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .nav-actions .button {
        width: 100%;
        min-width: 0;
        padding-left: 10px;
        padding-right: 10px;
        font-size: 14px;
    }

    .public-nav nav {
        grid-area: nav;
        grid-column: 1 / -1;
        order: 3;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        overflow: visible;
        padding: 0;
    }

    .public-nav nav a {
        width: 100%;
        min-width: 0;
        display: grid;
        place-items: center;
        min-height: 42px;
        padding: 9px 8px;
        white-space: normal;
        text-align: center;
        font-size: 13px;
        line-height: 1.18;
        background: rgba(255,255,255,.68);
        border-color: rgba(122, 166, 218, .42);
    }

    .public-nav nav a::after {
        display: none;
    }

    .public-shell > .commercial-hero-pro {
        width: calc(100% - 24px);
        margin-left: auto;
        margin-right: auto;
    }

    .hero-search,
    .domain-search {
        width: 100%;
        max-width: 100%;
    }
}

/* Footer completion */
.public-footer.footer-pro {
    display: grid;
    grid-template-columns: minmax(280px, 1.1fr) minmax(180px, .72fr) minmax(220px, .9fr) minmax(220px, .82fr);
    gap: clamp(24px, 3vw, 42px);
    align-items: start;
    color: #061842;
}

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

.footer-brand-title {
    display: grid;
    gap: 6px;
}

.footer-brand-title strong {
    font-size: 22px;
    color: #001341;
}

.footer-brand-title span,
.footer-brand-title a {
    color: #005ecb;
    font-weight: 850;
}

.public-footer.footer-pro p {
    max-width: 520px;
    margin: 0;
    color: #183152;
    line-height: 1.7;
}

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

.footer-contact-grid a,
.footer-contact-grid span,
.footer-map a,
.footer-map span {
    color: #173052;
    opacity: 1;
}

.footer-contact-grid a,
.footer-contact-grid span {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid rgba(122, 173, 225, .38);
    border-radius: 8px;
    background: rgba(255,255,255,.68);
    font-weight: 780;
}

.footer-contact-grid a:hover,
.footer-map a:hover {
    color: #004bcc;
    border-color: rgba(0, 121, 255, .42);
}

.footer-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-cta-row .button {
    min-height: 42px;
}

.footer-map {
    display: grid;
    gap: 9px;
}

.footer-map strong {
    display: block;
    margin-bottom: 6px;
    color: #001341;
    font-size: 17px;
}

.footer-map a {
    width: fit-content;
    max-width: 100%;
    font-weight: 760;
    line-height: 1.35;
}

.footer-map span {
    line-height: 1.55;
}

.footer-legal {
    gap: 10px;
}

.footer-seal-mini {
    width: 122px;
    height: 122px;
    margin-top: 8px;
    overflow: visible;
}

.footer-seal-mini .landing-seal {
    margin: 0;
    padding: 0;
    width: 122px;
    height: 122px;
}

.footer-seal-mini .ig1-holo-seal.ig1-holo-sticker {
    width: 210px;
    height: 210px;
    min-width: 210px;
    min-height: 210px;
    transform: scale(.58);
    transform-origin: top left;
    box-shadow: 0 16px 34px rgba(0, 27, 93, .14);
}

.footer-seal-mini .ig1-seal-orbital-text,
.footer-seal-mini .ig1-holo-core small {
    opacity: .72;
}

/* Rich commercial and local SEO copy */
.copy-rich-section,
.local-seo-copy {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: clamp(24px, 4vw, 48px);
    align-items: stretch;
    padding: clamp(34px, 5vw, 56px);
    border: 1px solid rgba(138, 184, 231, .42);
    border-radius: 8px;
    background:
        linear-gradient(120deg, rgba(255,255,255,.95), rgba(242,249,255,.82)),
        linear-gradient(145deg, transparent 0 72%, rgba(81,240,222,.12) 72.2% 73%, transparent 73.2%);
    box-shadow: var(--ig1-shadow-tight);
}

.copy-rich-section h2,
.local-seo-copy h2 {
    color: #001341;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.1;
}

.copy-rich-section p,
.local-seo-copy p {
    color: #183152;
    font-size: 17px;
    line-height: 1.75;
}

.copy-proof-grid,
.seo-copy-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.copy-proof-grid article,
.seo-copy-grid article {
    display: grid;
    gap: 8px;
    align-content: start;
    min-height: 150px;
    padding: 20px;
    border: 1px solid rgba(122, 173, 225, .38);
    border-radius: 8px;
    background: rgba(255,255,255,.68);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.86);
}

.copy-proof-grid strong,
.seo-copy-grid strong {
    color: #001b5d;
    font-size: 18px;
}

.copy-proof-grid span,
.seo-copy-grid span {
    color: #203757;
    line-height: 1.55;
}

@media (max-width: 1100px) {
    .copy-rich-section,
    .local-seo-copy {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .copy-rich-section,
    .local-seo-copy {
        padding: 24px;
    }

    .copy-proof-grid,
    .seo-copy-grid {
        grid-template-columns: 1fr;
    }
}

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

@media (max-width: 720px) {
    .public-footer.footer-pro {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-seal-mini {
        width: 100%;
    }
}
