:root {
    --bg: #242428;
    --bg-elevated: #2d2f34;
    --bg-deep: #191a1e;
    --surface: rgba(255, 255, 255, 0.05);
    --surface-strong: rgba(255, 255, 255, 0.08);
    --line: rgba(255, 255, 255, 0.1);
    --text: #f4f7fb;
    --muted: #a8b0c0;
    --primary: #0f66fb;
    --secondary: #57d8d1;
    --sky: #9fd2f3;
    --steel: #67676b;
    --gradient: linear-gradient(135deg, #0f66fb 0%, #1ea4f8 40%, #57d8d1 100%);
    --gradient-soft: linear-gradient(135deg, rgba(15, 102, 251, 0.2), rgba(87, 216, 209, 0.2));
    --shadow: 0 30px 80px rgba(5, 9, 20, 0.35);
    --radius: 28px;
    --radius-sm: 18px;
    --container: min(1180px, calc(100vw - 2rem));
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(30, 164, 248, 0.18), transparent 25%),
        radial-gradient(circle at top right, rgba(87, 216, 209, 0.12), transparent 28%),
        linear-gradient(180deg, #26262a 0%, #222328 100%);
    color: var(--text);
    font-family: "Manrope", sans-serif;
    line-height: 1.6;
}

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

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

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

main {
    overflow: hidden;
}

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

.narrow {
    max-width: 860px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 800;
    color: #26b2f7;
}

.eyebrow::before {
    content: "";
    width: 42px;
    height: 1px;
    background: rgba(87, 216, 209, 0.5);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 0.9rem;
    font-family: "Fraunces", serif;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(3.25rem, 6vw, 6rem);
}

h2 {
    font-size: clamp(2.2rem, 4vw, 3.8rem);
}

h3 {
    font-size: 1.45rem;
}

p {
    margin: 0 0 1rem;
    color: var(--muted);
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-nowrap {
    white-space: nowrap;
}

.button,
.button-ghost,
.button-dark,
.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 54px;
    padding: 0 1.35rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.button,
.nav-cta {
    background: var(--gradient);
    color: #081018;
    box-shadow: 0 18px 40px rgba(17, 118, 250, 0.3);
}

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

.button-ghost {
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--text);
    background: rgba(255, 255, 255, 0.03);
}

.button-dark {
    background: #101215;
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.08);
}

.button-row,
.chip-row,
.hero-microstats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(16px);
    background: rgba(24, 25, 29, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 88px;
    gap: 1.25rem;
}

.brand-mark img {
    width: 220px;
    max-width: min(42vw, 220px);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.35rem;
}

.site-nav > a:not(.nav-cta) {
    color: rgba(244, 247, 251, 0.82);
    font-weight: 700;
    font-size: 0.95rem;
}

.site-nav > a.is-active,
.site-nav > a:not(.nav-cta):hover {
    color: #ffffff;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 6px auto;
    border-radius: 999px;
    background: #fff;
}

.hero,
.page-hero {
    padding: clamp(5rem, 8vw, 7.75rem) 0 clamp(4rem, 6vw, 6rem);
}

.hero-grid,
.split-panel,
.contact-grid,
.form-shell {
    display: grid;
    gap: 1.5rem;
}

.hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
}

.hero-lead {
    font-size: 1.1rem;
    max-width: 720px;
}

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

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

.hero-home::before {
    content: "";
    position: absolute;
    inset: 7% -6% auto auto;
    width: 38vw;
    height: 38vw;
    max-width: 540px;
    max-height: 540px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 164, 248, 0.22), transparent 68%);
    filter: blur(22px);
}

.hero-home > .container {
    position: relative;
    z-index: 1;
}

.hero-home-background,
.hero-home-background::after {
    position: absolute;
    inset: 0;
}

.hero-home-background {
    background-image: var(--home-hero-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.04);
    opacity: 0.46;
}

.hero-home-background::after {
    content: "";
    background:
        linear-gradient(90deg, rgba(7, 12, 19, 0.94) 0%, rgba(7, 12, 19, 0.8) 48%, rgba(7, 12, 19, 0.6) 100%),
        linear-gradient(180deg, rgba(7, 12, 19, 0.3), rgba(7, 12, 19, 0.18));
}

/* ─── Shared hero gradient mode ─────────────────────────────────────────────
   When .hero--gradient is added to any hero section, the photo layer (::before)
   is hidden and the ::after overlay becomes the pure gradient fill.
   The home page hero uses a child div instead of ::before so it gets its own rule.
────────────────────────────────────────────────────────────────────────────── */

/* Hide the photo layer in gradient mode */
.hero--gradient::before,
.hero--gradient .hero-home-background {
    background-image: none !important;
    opacity: 0 !important;
}

/* Replace the dark overlay with the admin-controlled gradient */
.hero--gradient::after,
.hero--gradient .hero-home-background::after {
    background: linear-gradient(
        var(--hero-grad-dir, to right),
        var(--hero-grad-start, #07111a),
        var(--hero-grad-end, #0f2035)
    ) !important;
    opacity: var(--hero-overlay-opacity, 0.7) !important;
}


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

.venue-hero::before,
.venue-hero::after {
    content: "";
    position: absolute;
    inset: 0;
}

.venue-hero::before {
    background-image: var(--venue-hero-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.04);
}

.venue-hero::after {
    background:
        linear-gradient(90deg, rgba(7, 12, 19, 0.94) 0%, rgba(7, 12, 19, 0.8) 48%, rgba(7, 12, 19, 0.54) 100%),
        radial-gradient(circle at top right, rgba(15, 102, 251, 0.26), transparent 28%);
}

.venue-hero-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.55fr);
    gap: 1.4rem;
    align-items: end;
    min-height: clamp(420px, 64vh, 620px);
    padding: clamp(5rem, 8vw, 7rem) 0 clamp(3rem, 5vw, 4.4rem);
}

.venue-hero-copy h1 {
    max-width: 9ch;
    margin-top: 0.85rem;
    font-size: clamp(2.8rem, 5vw, 4.9rem);
}

.venue-hero-copy .hero-lead {
    max-width: 640px;
}

.venue-hero-panel {
    display: grid;
    gap: 0.9rem;
    padding: 1.3rem;
    border-radius: 28px;
    background: rgba(9, 17, 26, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.venue-hero-stat {
    padding: 0.95rem 1rem;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.venue-hero-stat span {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--secondary);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.venue-hero-stat strong {
    display: block;
    color: #fff;
    font-size: 1.08rem;
    line-height: 1.3;
}

.hero-copy h1,
.page-hero h1 {
    max-width: 12ch;
    margin-top: 1rem;
}

.hero-visual {
    position: relative;
}

.screen-stage {
    position: relative;
    width: min(100%, 520px);
    min-height: 680px;
    margin-left: auto;
}

.screen-card {
    position: absolute;
    width: min(100%, 280px);
    border-radius: 34px;
    padding: 1.4rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.screen-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), transparent 70%);
    pointer-events: none;
}

.screen-card-primary {
    top: 0;
    right: 18px;
    width: min(100%, 320px);
    min-height: 545px;
    background: linear-gradient(180deg, rgba(48, 103, 245, 0.94), rgba(7, 18, 27, 0.96));
    z-index: 1;
}

.screen-card-secondary {
    left: 0;
    top: 260px;
    width: min(100%, 265px);
    background: linear-gradient(160deg, rgba(120, 228, 221, 0.9), rgba(41, 91, 102, 0.88));
    color: #051017;
    z-index: 2;
}

.screen-card-tertiary {
    right: 6px;
    bottom: 22px;
    width: min(100%, 285px);
    background: rgba(14, 18, 26, 0.94);
    z-index: 3;
}

.screen-card h3 {
    font-size: clamp(1.65rem, 2.2vw, 2.35rem);
    max-width: 9ch;
}

.screen-card p {
    color: inherit;
    opacity: 0.86;
}

.screen-badge {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-microstats {
    margin-top: 2rem;
}

.mini-stat {
    min-width: 150px;
    padding: 0.85rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.mini-stat strong,
.stat-card strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

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

.stats-strip {
    padding: 1.5rem 0;
}

.stats-grid,
.feature-grid,
.market-grid,
.gallery-grid,
.step-grid,
.location-grid,
.contact-grid,
.proof-gallery,
.footer-grid,
.admin-stat-grid,
.admin-grid {
    display: grid;
    gap: 1rem;
}

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

.stat-card,
.feature-card,
.market-card,
.gallery-card,
.step-card,
.location-card,
.testimonial-card,
.panel-card,
.admin-card {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.035);
    box-shadow: var(--shadow);
}

.stat-card {
    padding: 1.6rem;
}

.stat-card-home {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 1rem;
    align-items: center;
}

.stat-card-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    color: #0b1620;
    background: linear-gradient(135deg, #e7d1a3 0%, #d8a660 100%);
    box-shadow: 0 14px 32px rgba(215, 166, 96, 0.2);
}

.stat-card-icon svg {
    width: 26px;
    height: 26px;
}

.section {
    padding: clamp(4.5rem, 8vw, 6.5rem) 0;
}

.section-dark {
    background: rgba(0, 0, 0, 0.12);
}

.section-heading {
    max-width: 840px;
    margin-bottom: 2rem;
}

.section-heading p {
    max-width: 720px;
}

.home-proof-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.72fr);
    gap: clamp(1.6rem, 4vw, 4rem);
    align-items: center;
}

.home-proof-shell .section-heading {
    max-width: none;
    margin-bottom: 0;
}

.home-proof-copy p {
    margin-bottom: 0;
}

.home-proof-media {
    position: relative;
    margin: 0;
    min-height: clamp(320px, 34vw, 460px);
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.035);
    box-shadow: var(--shadow);
}

.home-proof-media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 64%);
    pointer-events: none;
}

.home-proof-media img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
}

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

.feature-card {
    padding: 1.6rem;
}

.feature-count {
    display: inline-flex;
    margin-bottom: 0.8rem;
    color: var(--secondary);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
}

.gradient-panel {
    position: relative;
}

.gradient-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 102, 251, 0.12), rgba(87, 216, 209, 0.1));
    pointer-events: none;
}

.home-coverage-band {
    position: relative;
    overflow: hidden;
}

.home-coverage-band::before,
.home-coverage-band::after {
    content: "";
    position: absolute;
    inset: 0;
}

.home-coverage-band::before {
    background-image: var(--home-coverage-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.04);
}

.home-coverage-band::after {
    background:
        linear-gradient(90deg, rgba(7, 12, 19, 0.92) 0%, rgba(7, 12, 19, 0.76) 48%, rgba(7, 12, 19, 0.5) 100%),
        linear-gradient(135deg, rgba(15, 102, 251, 0.2), rgba(87, 216, 209, 0.1));
}

.home-coverage-shell {
    position: relative;
    z-index: 1;
    padding: clamp(1.6rem, 3vw, 2.3rem);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 13, 20, 0.35);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.home-brands-section {
    position: relative;
    overflow: hidden;
}

.home-brands-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top center, rgba(87, 216, 209, 0.14), transparent 32%),
        linear-gradient(180deg, rgba(10, 14, 24, 0.92), rgba(9, 11, 18, 0.98));
}

.home-brands-shell {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2rem;
}

.home-brands-heading {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    align-items: center;
    justify-items: center;
}

.home-brands-heading h2 {
    max-width: 16ch;
    margin-left: auto;
    margin-right: auto;
}

.home-brands-heading p {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.home-brands-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.home-brand-card {
    display: grid;
    place-items: center;
    min-height: 168px;
    padding: 1.35rem;
    border-radius: 28px;
    border: 1px solid rgba(12, 18, 28, 0.08);
    background: #fff;
    box-shadow: var(--shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.home-brand-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(5, 9, 20, 0.24);
}

.home-brand-card img {
    width: 100%;
    max-width: 250px;
    max-height: 92px;
    object-fit: contain;
    transition: opacity 0.22s ease;
    opacity: 1;
}

.map-page-hero {
    position: relative;
    overflow: hidden;
}

.map-page-hero::before,
.map-page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
}

.map-page-hero::before {
    background-image: var(--map-hero-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.04);
}

.map-page-hero::after {
    background:
        linear-gradient(90deg, rgba(7, 12, 19, 0.92) 0%, rgba(7, 12, 19, 0.76) 54%, rgba(7, 12, 19, 0.42) 100%),
        radial-gradient(circle at top right, rgba(15, 102, 251, 0.24), transparent 28%);
}

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

.split-panel {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.venue-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.venue-info-card {
    padding: 1.45rem;
}

.venue-info-card h2 {
    font-size: clamp(1.8rem, 2.8vw, 2.9rem);
    margin-bottom: 0.85rem;
}

.chip {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.88);
}

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

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

.proof-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

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

.market-grid.compact {
    grid-template-columns: repeat(2, 1fr);
}

.market-card {
    display: grid;
    gap: 0.72rem;
    padding: 1.25rem 1.35rem;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.market-card:hover {
    transform: translateY(-3px);
    border-color: rgba(87, 216, 209, 0.35);
}

.market-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
}

.market-card span,
.gallery-subtitle {
    display: block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.78rem;
    color: var(--secondary);
    font-weight: 800;
}

.market-card-top span {
    margin-bottom: 0;
}

.market-card-icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    color: #0b1620;
    background: linear-gradient(135deg, #e7d1a3 0%, #d8a660 100%);
    box-shadow: 0 12px 24px rgba(215, 166, 96, 0.18);
}

.market-card-icon svg {
    width: 22px;
    height: 22px;
}

.market-card strong {
    display: block;
    font-size: 1.35rem;
    color: #fff;
}

.market-card em {
    display: block;
    margin-top: 0.4rem;
    font-style: normal;
    color: var(--muted);
}

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

.gallery-card {
    overflow: hidden;
}

.screen-mockup {
    display: grid;
    align-content: end;
    min-height: 340px;
    padding: 1.3rem;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.screen-mockup-image {
    padding: 0;
    overflow: hidden;
}

.screen-mockup-image img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
}

.screen-mockup span,
.screen-mockup em {
    font-size: 0.82rem;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-weight: 800;
    opacity: 0.85;
}

.screen-mockup strong {
    display: block;
    margin: 0.6rem 0;
    font-family: "Fraunces", serif;
    font-size: 2rem;
    line-height: 1;
}

.screen-theme-impact {
    background: linear-gradient(180deg, rgba(15, 102, 251, 0.92), rgba(4, 10, 16, 0.9));
}

.screen-theme-offer {
    background: linear-gradient(180deg, rgba(87, 216, 209, 0.92), rgba(11, 18, 22, 0.92));
    color: #061117;
}

.screen-theme-brand {
    background: linear-gradient(180deg, rgba(159, 210, 243, 0.92), rgba(17, 28, 35, 0.92));
}

.gallery-copy {
    padding: 1.35rem;
}

.step-grid {
    position: relative;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem;
}

.step-grid::before {
    content: "";
    position: absolute;
    top: 56px;
    left: 9%;
    right: 9%;
    height: 1px;
    background: linear-gradient(90deg, rgba(87, 216, 209, 0.04), rgba(87, 216, 209, 0.38), rgba(87, 216, 209, 0.04));
    pointer-events: none;
}

.step-card {
    position: relative;
    padding: 1.45rem;
    overflow: hidden;
}

.step-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(87, 216, 209, 0.14), transparent 34%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.step-card:hover::before {
    opacity: 1;
}

.step-card-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.step-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    color: #0b1620;
    background: linear-gradient(135deg, #e7d1a3 0%, #d8a660 100%);
    box-shadow: 0 14px 28px rgba(215, 166, 96, 0.18);
}

.step-icon svg {
    width: 24px;
    height: 24px;
}

.step-card-number {
    display: inline-flex;
    margin-bottom: 0;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--secondary);
}

.step-card-kicker {
    position: relative;
    z-index: 1;
    display: inline-flex;
    margin-bottom: 0.75rem;
    padding: 0.42rem 0.74rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #d8dee8;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.step-card h3,
.step-card p {
    position: relative;
    z-index: 1;
}

.step-card h3 {
    margin-bottom: 0.65rem;
    font-size: 1.28rem;
}

.testimonial-card {
    padding: 2rem;
    text-align: center;
}

.testimonial-card h2 {
    margin: 0.75rem auto 0;
    max-width: 16ch;
}

.testimonial-card blockquote {
    margin: 1rem 0;
    font-family: "Fraunces", serif;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.16;
}

.testimonial-card p {
    max-width: 42rem;
    margin: 0 auto;
}

.home-reviews-experience {
    display: grid;
    grid-template-columns: minmax(190px, 0.28fr) minmax(0, 1fr);
    gap: 1rem;
    align-items: stretch;
    margin-top: 1.8rem;
    text-align: left;
}

.home-reviews-experience > :only-child {
    grid-column: 1 / -1;
}

.home-reviews-summary,
.home-review-card,
.home-reviews-widget {
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 22px 52px rgba(5, 9, 20, 0.22);
}

.home-reviews-summary {
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 0.35rem;
    padding: 1.4rem 1rem;
    text-align: center;
}

.home-reviews-summary-label,
.home-review-card-top strong {
    color: #fff;
    font-weight: 800;
}

.home-reviews-summary-label {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.78rem;
}

.home-reviews-summary strong {
    display: block;
    font-size: 2.2rem;
    line-height: 1;
}

.home-reviews-stars,
.home-review-stars {
    display: inline-flex;
    color: #e7d1a3;
    letter-spacing: 0.08em;
    line-height: 1;
}

.home-reviews-count,
.home-review-card-top span {
    color: var(--muted);
    font-size: 0.9rem;
}

.home-reviews-source {
    margin-top: 0.2rem;
    color: #fff;
    font-weight: 800;
}

.home-review-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.home-review-card {
    min-height: 230px;
    padding: 1.15rem;
}

.home-review-card-top {
    display: grid;
    grid-template-columns: 28px 1fr 42px;
    gap: 0.7rem;
    align-items: center;
    margin-bottom: 0.8rem;
}

.home-review-google,
.home-review-avatar {
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-weight: 800;
}

.home-review-google {
    width: 28px;
    height: 28px;
    background: #fff;
    color: #4285f4;
}

.home-review-avatar {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #e7d1a3, #57d8d1);
    color: #0b1620;
}

.home-review-card p {
    max-width: none;
    margin-top: 0.8rem;
    color: rgba(244, 247, 251, 0.86);
}

.home-reviews-widget {
    position: relative;
    min-height: 280px;
    padding: 1rem;
    overflow: hidden;
}

.home-reviews-loading {
    position: absolute;
    inset: 1rem;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.025);
}

.home-reviews-embed {
    position: relative;
    z-index: 1;
    min-height: 248px;
}

.home-reviews-embed iframe {
    width: 100%;
    min-height: 280px;
    border: 0;
    border-radius: 18px;
    background: #fff;
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    padding: 1.25rem 1.4rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    font-weight: 800;
    color: #fff;
}

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

.faq-item p {
    margin-top: 1rem;
}

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

.location-card {
    padding: 1.35rem;
}

.location-card-top span {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.location-card-top strong {
    display: block;
    font-size: 1.25rem;
}

.location-meta {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    align-items: center;
    margin-top: 1.1rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.location-meta a {
    color: #fff;
    font-weight: 800;
}

.map-section {
    padding-top: 2rem;
}

.map-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 1rem;
    margin-bottom: 1rem;
}

.map-controls > div {
    min-width: 220px;
}

.map-controls label {
    display: block;
    margin-bottom: 0.45rem;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
}

.map-controls input,
.map-controls select,
.contact-form input,
.contact-form textarea,
.admin-form input,
.admin-form textarea,
.admin-form select {
    width: 100%;
    min-height: 52px;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
}

.map-shell {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 1rem;
    align-items: stretch;
}

.location-sidebar,
.map-frame,
.form-shell,
.admin-shell,
.admin-sidebar,
.admin-main {
    border-radius: var(--radius);
}

.location-sidebar {
    max-height: 720px;
    overflow: auto;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
}

.sidebar-location {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 0.75rem;
}

.sidebar-location strong {
    display: block;
    color: #fff;
}

.sidebar-location span {
    display: block;
    color: var(--secondary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
}

.sidebar-location p {
    margin: 0.55rem 0 0;
    font-size: 0.92rem;
}

.map-frame {
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    background: #fff;
    min-height: 720px;
}

#networkMap {
    width: 100%;
    height: 100%;
    min-height: 720px;
}

.map-popup h3 {
    margin-bottom: 0.3rem;
    font-size: 1.15rem;
}

.map-popup strong {
    display: block;
    margin-top: 0.55rem;
}

.map-placeholder {
    display: grid;
    place-items: end start;
    min-height: 120px;
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #0f66fb, #57d8d1);
    color: #07131d;
    font-weight: 900;
}

.marker-cluster-small,
.marker-cluster-medium,
.marker-cluster-large {
    background: rgba(15, 102, 251, 0.16);
}

.marker-cluster-small div,
.marker-cluster-medium div,
.marker-cluster-large div {
    background: linear-gradient(135deg, #0f66fb, #57d8d1);
    color: #061017;
    font-weight: 800;
}

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

.contact-hero,
.contact-coverage-band,
.footer-cta-band {
    position: relative;
    overflow: hidden;
}

.contact-hero::before,
.contact-coverage-band::before,
.footer-cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.04);
}

.contact-hero::after,
.contact-coverage-band::after,
.footer-cta-band::after {
    content: "";
    position: absolute;
    inset: 0;
}

.contact-hero::before {
    background-image: var(--contact-hero-image);
}

.contact-hero::after {
    background:
        linear-gradient(90deg, rgba(6, 12, 18, 0.92) 0%, rgba(6, 12, 18, 0.72) 50%, rgba(6, 12, 18, 0.4) 100%),
        radial-gradient(circle at top right, rgba(214, 166, 96, 0.28), transparent 28%);
}

.contact-hero-shell,
.contact-coverage-shell,
.footer-cta-inner {
    position: relative;
    z-index: 1;
}

.contact-hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
    gap: 1.5rem;
    align-items: end;
    min-height: clamp(480px, 72vh, 720px);
    padding: clamp(5.5rem, 8vw, 8rem) 0 clamp(3.5rem, 6vw, 5rem);
}

.contact-hero-copy h1 {
    max-width: 11ch;
    margin-top: 1rem;
}

.contact-hero-panel {
    padding: 1.5rem;
    border-radius: 28px;
    background: rgba(10, 18, 27, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.contact-hero-panel-label {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #f8fafc;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-hero-panel h3 {
    margin-bottom: 1rem;
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

.contact-widgets-section {
    margin-top: -2rem;
    position: relative;
    z-index: 2;
    padding-top: 0;
}

.contact-widget-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.contact-widget-card {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1.15rem 1.2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(20, 24, 31, 0.95), rgba(11, 15, 22, 0.92));
    box-shadow: 0 24px 60px rgba(4, 10, 18, 0.26);
}

.contact-widget-card .eyebrow {
    margin-bottom: 0.45rem;
}

.contact-widget-card h3 {
    margin-bottom: 0.45rem;
    font-size: 1.2rem;
}

.contact-widget-card p {
    margin-bottom: 0.85rem;
    font-size: 0.94rem;
}

.contact-widget-icon {
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    border-radius: 18px;
    color: #0b1620;
    background: linear-gradient(135deg, #e7d1a3 0%, #d8a660 100%);
    box-shadow: 0 12px 30px rgba(215, 166, 96, 0.24);
}

.contact-widget-icon svg {
    width: 26px;
    height: 26px;
}

.contact-widget-link {
    display: inline-block;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.01em;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contact-widget-link.is-static {
    display: inline-block;
}

.contact-coverage-band::before {
    background-image: var(--contact-coverage-image);
}

.footer-cta-band::before {
    background-image: var(--footer-cta-image);
}

.contact-coverage-band::after,
.footer-cta-band::after {
    background:
        linear-gradient(90deg, rgba(7, 13, 21, 0.9) 0%, rgba(7, 13, 21, 0.68) 54%, rgba(7, 13, 21, 0.44) 100%),
        linear-gradient(135deg, rgba(21, 66, 122, 0.36), rgba(215, 166, 96, 0.22));
}

.contact-coverage-shell,
.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.contact-coverage-shell {
    min-height: 340px;
    padding: 0;
}

.contact-coverage-copy,
.footer-cta-inner > div:first-child {
    max-width: 720px;
}

.contact-coverage-actions,
.footer-cta-actions {
    justify-content: flex-end;
}

.form-shell {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 1.25rem;
    padding: 1.4rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-form-shell {
    scroll-margin-top: 120px;
}

.contact-form {
    display: grid;
    gap: 0.9rem;
}

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

.contact-form label,
.admin-form label {
    display: grid;
    gap: 0.45rem;
    font-weight: 700;
    color: #fff;
}

.contact-form textarea,
.admin-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-error-list {
    margin: 0.75rem 0 0;
    padding-left: 1.2rem;
}

.contact-form-note {
    margin-top: 1.25rem;
    padding: 1rem 1.05rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.contact-form-note-label {
    display: inline-flex;
    margin-bottom: 0.45rem;
    color: var(--secondary);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 800;
}

.contact-submit {
    justify-self: start;
    min-width: 220px;
}

.thank-you-page {
    position: relative;
}

.thank-you-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(215, 166, 96, 0.2), transparent 24%),
        radial-gradient(circle at bottom right, rgba(30, 164, 248, 0.18), transparent 28%);
    pointer-events: none;
}

.thank-you-shell {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    min-height: 60vh;
}

.thank-you-card {
    width: min(100%, 760px);
    padding: clamp(2rem, 4vw, 3rem);
    text-align: center;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(14, 18, 25, 0.94), rgba(10, 13, 20, 0.9));
    box-shadow: var(--shadow);
}

.about-hero,
.about-cta-band {
    position: relative;
    overflow: hidden;
}

.about-hero::before,
.about-cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.04);
}

.about-hero::before {
    background-image: var(--about-hero-image);
}

.about-cta-band::before {
    background-image: var(--about-cta-image);
}

.about-hero::after,
.about-cta-band::after {
    content: "";
    position: absolute;
    inset: 0;
}

.about-hero::after {
    background:
        linear-gradient(90deg, rgba(7, 12, 19, 0.82) 0%, rgba(7, 12, 19, 0.58) 50%, rgba(7, 12, 19, 0.32) 100%),
        linear-gradient(var(--hero-grad-dir, to right), var(--hero-grad-start, #07111a), var(--hero-grad-end, #0f2035));
}

.about-cta-band::after {
    background:
        linear-gradient(90deg, rgba(7, 13, 21, 0.9) 0%, rgba(7, 13, 21, 0.68) 54%, rgba(7, 13, 21, 0.44) 100%),
        linear-gradient(135deg, rgba(21, 66, 122, 0.32), rgba(215, 166, 96, 0.18));
}

.about-hero-shell,
.about-cta-shell {
    position: relative;
    z-index: 1;
}

.about-hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.7fr);
    gap: 1.5rem;
    align-items: end;
    min-height: clamp(500px, 70vh, 700px);
    padding: clamp(5.25rem, 8vw, 7.5rem) 0 clamp(3.25rem, 6vw, 4.5rem);
}

.about-hero-copy h1 {
    max-width: 12ch;
    margin-top: 1rem;
}

.about-hero-panel {
    padding: 1.5rem;
    border-radius: 28px;
    background: rgba(9, 16, 24, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.about-heading-centered {
    text-align: center;
}

.about-heading-centered p {
    margin-inline: auto;
}

.about-value-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.about-value-card {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1.25rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
    box-shadow: var(--shadow);
}

.about-value-card h3 {
    margin-bottom: 0.4rem;
}

.about-value-icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 20px;
    color: #0b1620;
    background: linear-gradient(135deg, #e7d1a3 0%, #d8a660 100%);
    box-shadow: 0 14px 34px rgba(215, 166, 96, 0.22);
}

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

.about-focus-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
    gap: 1.2rem;
    align-items: center;
}

.about-focus-panel {
    padding: 1.5rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018));
    box-shadow: var(--shadow);
}

.about-focus-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.95rem 0;
}

.about-focus-item + .about-focus-item {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-focus-check {
    display: inline-grid;
    place-items: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    color: #d8a660;
}

.about-focus-check svg {
    width: 100%;
    height: 100%;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.about-team-card {
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.about-team-card:hover {
    transform: translateY(-4px);
    border-color: rgba(87, 216, 209, 0.28);
}

.about-team-image-wrap {
    aspect-ratio: 4 / 4.5;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
}

.about-team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 78% center;
}

.about-team-copy {
    padding: 1.2rem;
}

.about-team-role {
    display: inline-flex;
    margin-bottom: 0.55rem;
    color: var(--secondary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 800;
}

.about-team-copy h3 {
    margin-bottom: 0.45rem;
}

.about-team-copy p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.about-cta-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 320px;
}

.about-cta-copy {
    max-width: 720px;
}

.about-cta-actions {
    justify-content: flex-end;
}

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

.network-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--network-hero-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.04);
}

.network-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 12, 19, 0.92) 0%, rgba(7, 12, 19, 0.74) 54%, rgba(7, 12, 19, 0.44) 100%),
        radial-gradient(circle at top right, rgba(15, 102, 251, 0.22), transparent 28%);
}

.network-hero-shell {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: end;
    min-height: clamp(460px, 68vh, 660px);
    padding: clamp(5.25rem, 8vw, 7.5rem) 0 clamp(3.25rem, 6vw, 4.5rem);
}

.network-hero-copy {
    max-width: 760px;
}

.network-hero-copy h1 {
    max-width: 11ch;
    margin-top: 1rem;
    font-size: clamp(2.9rem, 5.2vw, 5rem);
    line-height: 0.98;
}

.network-hero-copy .hero-lead {
    font-size: 1rem;
    max-width: 34rem;
}

.network-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.network-stat-card {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1rem;
    align-items: center;
    padding: 1.3rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
    box-shadow: var(--shadow);
}

.network-stat-icon,
.network-market-icon {
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    border-radius: 20px;
    color: #0b1620;
    background: linear-gradient(135deg, #e7d1a3 0%, #d8a660 100%);
    box-shadow: 0 14px 32px rgba(215, 166, 96, 0.2);
}

.network-stat-icon svg,
.network-market-icon svg {
    width: 27px;
    height: 27px;
}

.network-stat-card strong {
    display: block;
    color: #fff;
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    font-weight: 800;
    line-height: 1;
}

.network-stat-card span {
    display: block;
    margin-top: 0.45rem;
    color: var(--muted);
    font-size: 0.96rem;
}

.network-market-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.network-market-card {
    display: grid;
    gap: 0.9rem;
    min-height: 158px;
    padding: 1.2rem;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.network-market-card.is-visible {
    animation: marketCardReveal 0.36s ease both;
}

.network-market-card:hover {
    transform: translateY(-4px);
    border-color: rgba(87, 216, 209, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

.network-market-card strong {
    color: #fff;
    font-size: 1.12rem;
    line-height: 1.25;
}

.network-market-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.network-market-actions {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.network-market-actions .button[hidden] {
    display: none;
}

@keyframes marketCardReveal {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.billboards-hero,
.billboards-cta-band {
    position: relative;
    overflow: hidden;
}

.billboards-hero::before,
.billboards-cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.04);
}

.billboards-hero::after,
.billboards-cta-band::after {
    content: "";
    position: absolute;
    inset: 0;
}

.billboards-hero::before {
    background-image: var(--billboards-hero-image);
}

.billboards-cta-band::before {
    background-image: var(--billboards-cta-image);
}

.billboards-hero::after {
    background:
        linear-gradient(90deg, rgba(7, 12, 19, 0.94) 0%, rgba(7, 12, 19, 0.72) 52%, rgba(7, 12, 19, 0.42) 100%),
        radial-gradient(circle at top right, rgba(15, 102, 251, 0.26), transparent 28%);
}

.billboards-cta-band::after {
    background:
        linear-gradient(90deg, rgba(7, 13, 21, 0.9) 0%, rgba(7, 13, 21, 0.66) 52%, rgba(7, 13, 21, 0.4) 100%),
        linear-gradient(135deg, rgba(21, 66, 122, 0.32), rgba(215, 166, 96, 0.18));
}

.billboards-hero-shell,
.billboards-cta-shell {
    position: relative;
    z-index: 1;
}

.billboards-hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.68fr);
    gap: 1.5rem;
    align-items: end;
    min-height: clamp(500px, 72vh, 720px);
    padding: clamp(5.5rem, 8vw, 8rem) 0 clamp(3.6rem, 6vw, 5rem);
}

.billboards-hero-copy h1 {
    max-width: 11ch;
    margin-top: 1rem;
}

.billboards-hero-panel {
    padding: 1.5rem;
    border-radius: 28px;
    background: rgba(9, 17, 26, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.billboards-hero-panel-label {
    display: inline-flex;
    margin-bottom: 0.9rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #f8fafc;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.billboards-hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1.4rem;
}

.billboards-hero-metric {
    padding: 0.95rem 1rem;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.billboards-hero-metric strong {
    display: block;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 800;
}

.billboards-hero-metric span {
    color: var(--muted);
    font-size: 0.88rem;
}

.billboards-intro-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 1.2rem;
    align-items: start;
}

.billboards-intro-list,
.billboards-value-grid,
.billboards-process-grid,
.billboards-pricing-grid {
    display: grid;
    gap: 1rem;
}

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

.billboards-intro-card,
.billboards-pricing-card {
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
    box-shadow: var(--shadow);
}

.billboards-intro-card {
    padding: 1.3rem;
}

.billboards-intro-count,
.billboards-step-number {
    display: inline-flex;
    color: var(--secondary);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.billboards-intro-card p,
.billboards-pricing-card p,
.billboards-process-card p {
    margin-bottom: 0;
}

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

.billboards-value-card {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1.2rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
    box-shadow: var(--shadow);
}

.billboards-value-card h3 {
    margin-bottom: 0.4rem;
}

.billboards-value-icon {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border-radius: 20px;
    color: #0b1620;
    background: linear-gradient(135deg, #e7d1a3 0%, #d8a660 100%);
    box-shadow: 0 14px 32px rgba(215, 166, 96, 0.2);
}

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

.billboards-coverage-shell {
    padding: clamp(1.6rem, 3vw, 2.2rem);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at top right, rgba(87, 216, 209, 0.11), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.018));
    box-shadow: var(--shadow);
}

.billboards-coverage-heading {
    max-width: none;
}

.billboards-coverage-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.6rem;
}

.billboards-coverage-card {
    display: grid;
    gap: 0.75rem;
    min-height: 170px;
    padding: 1.2rem;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.billboards-coverage-card:hover {
    transform: translateY(-4px);
    border-color: rgba(87, 216, 209, 0.32);
    background: rgba(255, 255, 255, 0.07);
}

.billboards-coverage-icon,
.billboards-process-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 20px;
    color: #0b1620;
    background: linear-gradient(135deg, #e7d1a3 0%, #d8a660 100%);
    box-shadow: 0 14px 32px rgba(215, 166, 96, 0.2);
}

.billboards-coverage-icon svg,
.billboards-process-icon svg {
    width: 26px;
    height: 26px;
}

.billboards-coverage-name {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.2;
}

.billboards-coverage-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--secondary);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.billboards-coverage-link::after {
    content: "→";
    font-size: 1rem;
}

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

.billboards-process-card {
    padding: 1.35rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018));
    box-shadow: var(--shadow);
}

.billboards-process-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    margin-bottom: 1.2rem;
}

.billboards-step-number {
    margin-bottom: 0;
}

.billboards-process-card h3 {
    font-size: 1.18rem;
}

.billboards-spotlight-slider {
    display: grid;
    gap: 1rem;
}

.billboards-spotlight-track {
    display: flex;
    transition: transform 0.35s ease;
    will-change: transform;
}

.billboards-spotlight-slide {
    flex: 0 0 100%;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018));
    box-shadow: var(--shadow);
}

.billboards-spotlight-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: rgba(10, 18, 28, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
}

.billboards-spotlight-media img,
.billboards-partner-panel img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.billboards-spotlight-placeholder,
.billboards-partner-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    padding: 1.2rem;
    text-align: center;
    color: #f8fafc;
    background:
        radial-gradient(circle at top left, rgba(15, 102, 251, 0.22), transparent 28%),
        linear-gradient(135deg, rgba(10, 22, 36, 0.92), rgba(17, 39, 61, 0.88));
}

.billboards-spotlight-copy {
    padding: 1.25rem 1.25rem 1.35rem;
}

.billboards-spotlight-copy h3 {
    margin-bottom: 0.35rem;
}

.billboards-slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.billboards-slider-button {
    min-width: 108px;
    min-height: 48px;
    padding: 0 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

.billboards-slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    flex: 1;
}

.billboards-slider-dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.billboards-slider-dot.is-active {
    background: var(--secondary);
}

.billboards-partner-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 1.2rem;
    align-items: stretch;
}

.billboards-partner-panel {
    min-height: 320px;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
    box-shadow: var(--shadow);
}

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

.billboards-pricing-card {
    position: relative;
    display: grid;
    gap: 1.5rem;
    padding: 1.6rem;
}

.billboards-pricing-card.is-featured {
    border-color: rgba(87, 216, 209, 0.35);
    background: linear-gradient(180deg, rgba(15, 102, 251, 0.12), rgba(87, 216, 209, 0.06));
}

.billboards-pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(87, 216, 209, 0.14);
    color: #aef3ed;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.billboards-pricing-header strong {
    display: block;
    margin-bottom: 0.55rem;
    color: #fff;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.1;
}

.billboards-pricing-features {
    display: grid;
    gap: 0.75rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.billboards-pricing-features li {
    position: relative;
    padding-left: 1.35rem;
    color: var(--muted);
}

.billboards-pricing-features li::before {
    content: "";
    position: absolute;
    top: 0.65rem;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--secondary);
}

.billboards-cta-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 320px;
}

.billboards-cta-copy {
    max-width: 720px;
}

.billboards-cta-actions {
    justify-content: flex-end;
}

.flash-message {
    padding: 0.95rem 1rem;
    border-radius: 16px;
    font-weight: 700;
    margin-top: 1rem;
}

.flash-success {
    background: rgba(87, 216, 209, 0.15);
    color: #aef3ed;
}

.flash-error {
    background: rgba(255, 99, 132, 0.16);
    color: #ffcfda;
}

.venue-partner-hero,
.venue-partner-cta-band {
    position: relative;
    overflow: hidden;
}

.venue-partner-hero::before,
.venue-partner-cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.04);
}

.venue-partner-hero::before {
    background-image: var(--venue-partner-hero-image);
}

.venue-partner-cta-band::before {
    background-image: var(--venue-partner-cta-image);
}

.venue-partner-hero::after,
.venue-partner-cta-band::after {
    content: "";
    position: absolute;
    inset: 0;
}

.venue-partner-hero::after {
    background:
        linear-gradient(
            90deg,
            rgb(6 12 18 / min(calc(var(--hero-overlay-opacity, 0.7) + 0.24), 0.96)) 0%,
            rgb(6 12 18 / max(calc(var(--hero-overlay-opacity, 0.7) - 0.04), 0.28)) 52%,
            rgb(6 12 18 / max(calc(var(--hero-overlay-opacity, 0.7) - 0.3), 0.16)) 100%
        ),
        linear-gradient(var(--hero-grad-dir, 135deg), var(--hero-grad-start, #07111a), var(--hero-grad-end, #163a67));
}

.venue-partner-cta-band::after {
    background:
        linear-gradient(90deg, rgba(7, 13, 21, 0.92) 0%, rgba(7, 13, 21, 0.7) 54%, rgba(7, 13, 21, 0.42) 100%),
        linear-gradient(135deg, rgba(21, 66, 122, 0.34), rgba(215, 166, 96, 0.22));
}

.venue-partner-hero-shell,
.venue-partner-cta-shell {
    position: relative;
    z-index: 1;
}

.venue-partner-hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.68fr);
    gap: 1.5rem;
    align-items: end;
    min-height: clamp(520px, 74vh, 760px);
    padding: clamp(5.5rem, 8vw, 8rem) 0 clamp(3.5rem, 6vw, 5rem);
}

.venue-partner-hero-copy h1 {
    max-width: 11.5ch;
    margin-top: 1rem;
    font-size: clamp(2.15rem, 4.1vw, 3.75rem);
}

.venue-partner-hero-panel {
    padding: 1.5rem;
    border-radius: 28px;
    background: rgba(9, 16, 24, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.venue-partner-panel-label {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #f8fafc;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.venue-partner-hero-panel h3,
.venue-partner-form-note h3 {
    margin-bottom: 1rem;
    font-size: clamp(1.45rem, 2vw, 2rem);
}

.venue-partner-checklist {
    display: grid;
    gap: 0.8rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.venue-partner-checklist li {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 0.75rem;
    align-items: start;
    color: rgba(244, 247, 251, 0.88);
}

.venue-partner-checklist i,
.venue-partner-requirement-card i {
    margin-top: 0.2rem;
    color: #57d8d1;
}

.venue-partner-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1.4rem;
}

.venue-partner-metrics div,
.venue-partner-story-stat {
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.venue-partner-metrics strong,
.venue-partner-story-stat strong {
    display: block;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
}

.venue-partner-metrics span,
.venue-partner-story-stat span {
    display: block;
    margin-top: 0.45rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.venue-partner-gallery-section {
    padding-top: clamp(4rem, 6vw, 5.5rem);
}

.venue-partner-gallery-section .section-heading {
    max-width: 960px;
    margin: 0 auto 2rem;
    text-align: center;
}

.venue-partner-gallery-section .section-heading .eyebrow {
    justify-content: center;
}

.venue-partner-gallery-section .section-heading p {
    margin-inline: auto;
}

.venue-partner-gallery-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1rem;
}

.venue-partner-gallery-card {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    margin: 0;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 24px 60px rgba(4, 10, 18, 0.2);
}

.venue-partner-gallery-card.is-tall {
    grid-row: span 2;
    min-height: 660px;
}

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

.venue-partner-gallery-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(6, 12, 18, 0) 0%, rgba(6, 12, 18, 0.82) 100%);
}

.venue-partner-gallery-card figcaption {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 1;
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    background: rgba(9, 16, 24, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.venue-partner-steps-grid,
.venue-partner-benefits-grid,
.venue-partner-requirements-grid {
    display: grid;
    gap: 1rem;
}

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

#how-it-works {
    padding-top: clamp(4rem, 6vw, 5.5rem);
}

#how-it-works .section-heading {
    max-width: 960px;
    margin: 0 auto 2rem;
    text-align: center;
}

#how-it-works .section-heading .eyebrow {
    justify-content: center;
}

#how-it-works .section-heading p {
    margin-inline: auto;
}

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

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

.venue-partner-step-card,
.venue-partner-benefit-card,
.venue-partner-requirement-card,
.venue-partner-testimonial {
    padding: 1.25rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.venue-partner-benefit-card {
    display: grid;
    align-content: start;
    gap: 1.1rem;
}

.venue-partner-benefit-icon {
    margin-bottom: 0.2rem;
}

.venue-partner-benefit-card h3 {
    margin-bottom: 0.35rem;
}

.venue-partner-step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.venue-partner-step-icon,
.venue-partner-benefit-icon {
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(215, 166, 96, 0.96), rgba(87, 216, 209, 0.92));
    color: #081018;
    box-shadow: 0 16px 34px rgba(87, 216, 209, 0.16);
    font-size: 1.25rem;
}

.venue-partner-step-number {
    color: rgba(244, 247, 251, 0.26);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.venue-partner-story-shell,
.venue-partner-proof-shell,
.venue-partner-cta-shell {
    display: grid;
    gap: 1.25rem;
}

.venue-partner-story-shell {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    align-items: start;
}

.venue-partner-story-copy p,
.venue-partner-proof-shell .section-heading p {
    max-width: 760px;
}

.venue-partner-story-aside {
    display: grid;
    gap: 1rem;
}

.venue-partner-type-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.venue-partner-type-pill {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 0 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-weight: 700;
}

.venue-partner-testimonial {
    margin: 0;
    background: linear-gradient(180deg, rgba(20, 24, 31, 0.92), rgba(11, 15, 22, 0.94));
}

.venue-partner-testimonial p {
    margin-bottom: 1rem;
    font-size: 1.08rem;
    color: rgba(244, 247, 251, 0.9);
}

.venue-partner-testimonial footer {
    display: grid;
    gap: 0.2rem;
}

.venue-partner-testimonial strong {
    color: #fff;
}

.venue-partner-form-shell {
    scroll-margin-top: 120px;
}

.venue-partner-form-note {
    margin-top: 1.5rem;
}

.venue-partner-checklist-compact {
    margin-top: 1rem;
}

.venue-partner-requirement-card {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 0.85rem;
    align-items: start;
}

.venue-partner-cta-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    min-height: 300px;
}

.venue-partner-cta-actions {
    justify-content: flex-end;
}

.detail-list {
    padding-left: 1rem;
    margin: 0;
    color: var(--muted);
}

.detail-list li + li {
    margin-top: 0.65rem;
}

.footer-cta-inner {
    min-height: 280px;
    padding: 2.6rem 0;
}

.footer-cta-band {
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer {
    padding-top: 0;
}

.footer-grid {
    grid-template-columns: 1.15fr 0.9fr 0.9fr 1fr;
    padding: 3rem 0 2rem;
}

.footer-brand img {
    width: 220px;
    margin-bottom: 1rem;
}

.footer-grid h3 {
    margin-bottom: 0.85rem;
    font-size: 1rem;
}

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

.footer-grid li + li {
    margin-top: 0.55rem;
}

.footer-grid a {
    color: var(--muted);
}

.footer-grid a:hover {
    color: #fff;
}

.footer-bottom {
    padding: 1.3rem 0 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-legal {
    display: grid;
    gap: 0.35rem;
    max-width: 760px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.92rem;
}

.footer-partner-logos {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-partner-logo {
    width: 180px;
    max-width: 42vw;
    height: auto;
    opacity: 0.92;
}

.footer-partner-logo-secondary {
    width: 154px;
    padding: 0.55rem 0.8rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.admin-body {
    background: linear-gradient(180deg, #15161a, #0f1014);
}

.admin-login-shell,
.admin-shell {
    width: min(1240px, calc(100vw - 2rem));
    margin: 0 auto;
}

.admin-login-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
}

.admin-login-card {
    width: min(100%, 520px);
    padding: 2rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.admin-shell {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 1rem;
    padding: 1rem 0 2rem;
}

.admin-sidebar {
    position: sticky;
    top: 1rem;
    align-self: start;
    padding: 1.25rem;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
        rgba(7, 12, 19, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.admin-sidebar img {
    width: 180px;
    margin-bottom: 1.25rem;
}

.admin-nav {
    display: grid;
    gap: 0.45rem;
}

.admin-nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 1rem;
    border-radius: 16px;
    color: var(--muted);
    font-weight: 700;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.admin-nav a.is-active,
.admin-nav a:hover {
    background: linear-gradient(135deg, rgba(15, 102, 251, 0.22), rgba(87, 216, 209, 0.12));
    color: #fff;
    transform: translateX(3px);
}

.admin-main {
    padding: 1.25rem;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(87, 216, 209, 0.09), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.admin-topbar h1 {
    font-size: clamp(2rem, 3vw, 2.7rem);
}

.admin-stat-grid {
    grid-template-columns: repeat(5, 1fr);
    margin-bottom: 1rem;
}

.admin-card {
    padding: 1.25rem;
}

.admin-topbar-dashboard {
    align-items: flex-start;
}

.admin-topbar-dashboard p {
    max-width: 720px;
}

.admin-topbar-meta {
    display: grid;
    gap: 0.75rem;
    justify-items: end;
}

.admin-date-chip {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-dashboard-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.85fr);
    gap: 1rem;
    overflow: hidden;
    margin-bottom: 1rem;
    padding: 1.5rem;
    border-radius: 32px;
    background:
        radial-gradient(circle at top left, rgba(15, 102, 251, 0.24), transparent 28%),
        linear-gradient(135deg, rgba(10, 24, 37, 0.96), rgba(17, 20, 26, 0.88));
}

.admin-dashboard-hero::after {
    content: "";
    position: absolute;
    inset: auto -60px -90px auto;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(87, 216, 209, 0.18), transparent 68%);
    filter: blur(10px);
    pointer-events: none;
}

.admin-dashboard-hero-copy,
.admin-dashboard-hero-panel {
    position: relative;
    z-index: 1;
}

.admin-dashboard-hero-copy h2 {
    max-width: 12ch;
    margin-top: 0.9rem;
    font-size: clamp(2rem, 4vw, 3.3rem);
}

.admin-dashboard-hero-copy p {
    max-width: 640px;
}

.admin-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.6rem;
}

.admin-dashboard-hero-panel {
    display: grid;
    align-content: stretch;
}

.admin-kpi-stack {
    display: grid;
    gap: 0.85rem;
}

.admin-kpi-card {
    padding: 1rem 1.05rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.admin-kpi-card span,
.admin-module-card-top span,
.admin-stat-card span,
.admin-section-kicker {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--secondary);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-kpi-card strong,
.admin-stat-card strong,
.admin-module-card h4,
.admin-feature-panel h4 {
    display: block;
    color: #fff;
}

.admin-kpi-card strong,
.admin-stat-card strong {
    margin-bottom: 0.3rem;
    font-size: 2rem;
    line-height: 1;
}

.admin-kpi-card em {
    display: block;
    color: var(--muted);
    font-style: normal;
    font-size: 0.94rem;
}

.admin-dashboard-stat-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.admin-stat-card {
    position: relative;
    overflow: hidden;
    min-height: 160px;
    padding: 1.2rem;
}

.admin-stat-card::before {
    content: "";
    position: absolute;
    inset: auto -30px -30px auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: 0.9;
    filter: blur(8px);
}

.admin-stat-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.admin-stat-card-cyan::before {
    background: radial-gradient(circle, rgba(87, 216, 209, 0.2), transparent 70%);
}

.admin-stat-card-blue::before {
    background: radial-gradient(circle, rgba(15, 102, 251, 0.22), transparent 70%);
}

.admin-stat-card-gold::before {
    background: radial-gradient(circle, rgba(231, 209, 163, 0.22), transparent 70%);
}

.admin-stat-card-rose::before {
    background: radial-gradient(circle, rgba(255, 134, 173, 0.18), transparent 70%);
}

.admin-stat-card-mint::before {
    background: radial-gradient(circle, rgba(129, 236, 196, 0.18), transparent 70%);
}

.admin-dashboard-tabs {
    display: grid;
    gap: 1rem;
}

.admin-tab-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.35rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-tab-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 1.15rem;
    border: 0;
    border-radius: 18px;
    background: transparent;
    color: var(--muted);
    font-weight: 800;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.admin-tab-button:hover,
.admin-tab-button.is-active {
    background: linear-gradient(135deg, rgba(15, 102, 251, 0.2), rgba(87, 216, 209, 0.14));
    color: #fff;
    transform: translateY(-1px);
}

.admin-content-tab-list {
    margin-bottom: 1rem;
}

.admin-content-intro {
    max-width: 720px;
    margin: 0.75rem 0 0;
    color: var(--muted);
}

.admin-tab-panel {
    display: none;
    gap: 1rem;
}

.admin-tab-panel.is-active {
    display: grid;
}

.admin-panel-heading {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: end;
}

.admin-panel-heading h3 {
    font-size: clamp(1.7rem, 2.7vw, 2.4rem);
    margin-top: 0.7rem;
}

.admin-panel-heading p {
    max-width: 560px;
    margin-bottom: 0;
}

.admin-dashboard-panel-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 1rem;
}

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

.admin-feature-panel,
.admin-module-card {
    height: 100%;
    border-radius: 28px;
}

.admin-feature-panel {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.admin-feature-panel-top,
.admin-module-card-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: start;
}

.admin-action-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.admin-action-card {
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.admin-action-card:hover {
    transform: translateY(-2px);
    border-color: rgba(87, 216, 209, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.admin-action-card strong {
    color: #fff;
    font-size: 1rem;
}

.admin-action-card span {
    color: var(--muted);
    font-size: 0.94rem;
}

.admin-checklist {
    display: grid;
    gap: 0.85rem;
}

.admin-checklist-item {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 0.8rem;
    align-items: start;
}

.admin-checklist-item span {
    width: 18px;
    height: 18px;
    margin-top: 0.25rem;
    border-radius: 50%;
    border: 1px solid rgba(87, 216, 209, 0.5);
    background: linear-gradient(135deg, rgba(15, 102, 251, 0.3), rgba(87, 216, 209, 0.18));
}

.admin-checklist-item p {
    margin: 0;
}

.admin-metric-list {
    display: grid;
    gap: 0.9rem;
}

.admin-metric-list div {
    display: grid;
    gap: 0.25rem;
    padding: 0.95rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-metric-list strong {
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
}

.admin-metric-list span {
    color: var(--muted);
}

.admin-module-card {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.admin-module-card h4 {
    font-size: 1.5rem;
    line-height: 1.15;
}

.admin-module-card p {
    margin-bottom: 0;
}

.admin-module-card .button,
.admin-module-card .button-ghost,
.admin-feature-panel .button {
    width: fit-content;
}

.admin-module-callout {
    background:
        linear-gradient(135deg, rgba(15, 102, 251, 0.15), rgba(87, 216, 209, 0.08)),
        rgba(255, 255, 255, 0.035);
}

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

.admin-form {
    display: grid;
    gap: 1rem;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.admin-form-grid.three {
    grid-template-columns: repeat(3, 1fr);
}

.admin-section {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.025);
}

.admin-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

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

.admin-table th,
.admin-table td {
    padding: 0.9rem 0.75rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    vertical-align: top;
}

.admin-table th {
    color: #fff;
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.admin-table td {
    color: var(--muted);
}

.admin-table-person {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 0.85rem;
    align-items: start;
}

.admin-table-thumb {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    object-fit: cover;
    object-position: 78% center;
}

.admin-table-thumb-logo {
    object-fit: contain;
    object-position: center;
    padding: 0.45rem;
    background: #fff;
}

.table-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.table-actions a,
.table-actions button,
.small-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.small-button-danger {
    border-color: rgba(255, 98, 122, 0.34);
    color: #ffb5c1;
}

.admin-note {
    color: var(--muted);
    font-size: 0.92rem;
}

.admin-image-preview {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 0.75rem;
}

.admin-image-preview-logo {
    object-fit: contain;
    background: #fff;
    padding: 0.8rem;
}

.admin-image-remove {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.75rem;
    color: #ffb5c1;
    font-size: 0.92rem;
    font-weight: 700;
}

.admin-image-remove input {
    width: auto;
}

.admin-checkbox-field {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 52px;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
}

.admin-checkbox-field input {
    width: auto;
    min-height: 0;
    padding: 0;
}

.status-pill {
    display: inline-flex;
    min-height: 28px;
    padding: 0 0.7rem;
    align-items: center;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.status-pill.active,
.status-pill.read {
    background: rgba(87, 216, 209, 0.14);
    color: #aef3ed;
}

.status-pill.inactive,
.status-pill.unread {
    background: rgba(15, 102, 251, 0.14);
    color: #a9c6ff;
}

@media (max-width: 1100px) {
    .hero-grid,
    .venue-hero-shell,
    .venue-detail-grid,
    .split-panel,
    .contact-hero-shell,
    .venue-partner-hero-shell,
    .about-hero-shell,
    .billboards-hero-shell,
    .about-focus-shell,
    .billboards-intro-shell,
    .form-shell,
    .map-shell,
    .admin-shell,
    .footer-grid,
    .gallery-grid,
    .feature-grid,
    .step-grid,
    .location-grid,
    .contact-grid,
    .contact-widget-grid,
    .billboards-partner-shell,
    .venue-partner-story-shell,
    .venue-partner-cta-shell,
    .admin-grid,
    .admin-stat-grid {
        grid-template-columns: 1fr;
    }

    .screen-stage {
        min-height: auto;
    }

    .venue-hero-panel {
        max-width: 520px;
    }

    .screen-card {
        position: relative;
        width: 100%;
        min-height: auto;
        right: auto;
        left: auto;
        top: auto;
        bottom: auto;
        margin-bottom: 1rem;
    }

    .contact-hero-panel {
        max-width: 520px;
    }

    .about-hero-panel {
        max-width: 520px;
    }

    .billboards-hero-panel {
        max-width: 520px;
    }

    .venue-partner-hero-panel {
        max-width: 520px;
    }

    .network-stat-grid,
    .network-market-grid,
    .billboards-intro-list,
    .billboards-process-grid,
    .billboards-pricing-grid,
    .billboards-coverage-grid,
    .venue-partner-gallery-grid,
    .venue-partner-steps-grid,
    .venue-partner-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-dashboard-hero,
    .admin-dashboard-panel-grid,
    .admin-dashboard-card-grid,
    .admin-dashboard-stat-grid,
    .admin-action-grid {
        grid-template-columns: 1fr;
    }

    .step-grid::before {
        display: none;
    }
}

@media (max-width: 860px) {
    .site-nav {
        position: absolute;
        top: calc(100% + 0.6rem);
        right: 1rem;
        left: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        border-radius: 24px;
        background: rgba(18, 20, 24, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: var(--shadow);
    }

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

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

    .nav-cta {
        width: 100%;
    }

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

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

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

    .home-reviews-experience {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .home-review-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        text-align: left;
    }

    .network-stat-grid,
    .network-market-grid,
    .home-brands-grid,
    .about-value-grid,
    .about-team-grid,
    .billboards-value-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-cta-inner,
    .contact-coverage-shell,
    .about-cta-shell,
    .billboards-cta-shell,
    .footer-bottom,
    .admin-topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-partner-logos {
        justify-content: flex-start;
    }

    .contact-form-grid,
    .admin-form-grid,
    .admin-form-grid.three {
        grid-template-columns: 1fr;
    }

    .venue-partner-requirements-grid,
    .venue-partner-benefits-grid,
    .venue-partner-steps-grid,
    .venue-partner-metrics,
    .venue-partner-gallery-grid {
        grid-template-columns: 1fr;
    }

    .admin-panel-heading,
    .admin-topbar-meta {
        align-items: flex-start;
        justify-items: start;
    }

    .admin-panel-heading {
        flex-direction: column;
    }

    .admin-tab-list {
        padding: 0.5rem;
    }

    .admin-tab-button {
        width: 100%;
        justify-content: center;
    }

    .contact-coverage-actions,
    .about-cta-actions,
    .billboards-cta-actions,
    .footer-cta-actions,
    .venue-partner-cta-actions {
        justify-content: flex-start;
    }

    .billboards-slider-controls {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100vw - 1.25rem, 100%);
    }

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

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

    .market-grid,
    .market-grid.compact {
        grid-template-columns: 1fr;
    }

    .map-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .home-proof-media {
        min-height: 260px;
        border-radius: 24px;
    }

    .testimonial-card {
        padding: 1.2rem;
    }

    .home-review-track {
        grid-auto-flow: column;
        grid-auto-columns: minmax(260px, 86%);
        grid-template-columns: none;
        overflow-x: auto;
        padding-bottom: 0.35rem;
        scroll-snap-type: x mandatory;
    }

    .home-review-card {
        scroll-snap-align: start;
    }

    .contact-hero-shell {
        min-height: auto;
        padding-top: 5rem;
    }

    .venue-partner-hero-shell {
        min-height: auto;
        padding-top: 5rem;
    }

    .venue-partner-gallery-card,
    .venue-partner-gallery-card.is-tall {
        min-height: 280px;
    }

    .about-hero-shell {
        min-height: auto;
        padding-top: 5rem;
    }

    .network-hero-shell {
        min-height: auto;
        padding-top: 5rem;
    }

    .network-hero-copy h1 {
        max-width: 9ch;
        font-size: clamp(2.35rem, 11vw, 3rem);
        line-height: 1.02;
    }

    .network-hero-copy .hero-lead {
        font-size: 0.98rem;
        max-width: 30rem;
    }

    .billboards-hero-shell {
        min-height: auto;
        padding-top: 5rem;
    }

    .venue-hero-shell {
        min-height: auto;
        padding-top: 5rem;
    }

    .screen-card-primary {
        min-height: 0;
    }

    .screen-card p:last-child {
        margin-bottom: 0;
    }

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

    .network-stat-grid,
    .network-market-grid,
    .home-brands-grid,
    .about-value-grid,
    .about-team-grid,
    .billboards-value-grid,
    .billboards-intro-list,
    .billboards-process-grid,
    .billboards-pricing-grid,
    .billboards-coverage-grid,
    .billboards-hero-metrics,
    .venue-partner-steps-grid,
    .venue-partner-benefits-grid,
    .venue-partner-requirements-grid,
    .venue-partner-metrics,
    .venue-partner-gallery-grid {
        grid-template-columns: 1fr;
    }

    .contact-submit,
    .contact-coverage-actions .button,
    .about-cta-actions .button,
    .billboards-pricing-card .button,
    .billboards-cta-actions .button,
    .footer-cta-actions .button,
    .venue-partner-cta-actions .button {
        width: 100%;
    }

    .venue-partner-type-pill {
        width: 100%;
        justify-content: center;
    }

    .billboards-slider-controls {
        flex-wrap: wrap;
    }

    .billboards-slider-button {
        min-width: 0;
        flex: 1;
    }

    .footer-partner-logo,
    .footer-partner-logo-secondary {
        max-width: 100%;
    }

    .admin-dashboard-hero,
    .admin-main,
    .admin-sidebar {
        border-radius: 24px;
    }


    .admin-dashboard-hero-copy h2 {
        max-width: 100%;
    }
}

/* ─── Admin color picker field ─────────────────────────────────────────────── */

.admin-color-field {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.admin-color-field input[type="color"] {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    padding: 2px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: transparent;
    cursor: pointer;
}

.admin-color-hex {
    flex: 1;
    font-family: monospace;
    font-size: 0.92rem;
    background: rgba(255, 255, 255, 0.04) !important;
    cursor: default;
}
