/* ============================================= */
/* Unified Cyberpunk ↔ Professional Theme      */
/* Fixed inconsistencies – March 2026           */
/* Dark Mode is now DEFAULT                     */
/* ============================================= */

/* ── Dark Mode (DEFAULT) ── */
:root {
    --bg-deep: #0a0a0f;
    --bg-secondary: #11161d;
    --bg-glass: rgba(20, 20, 30, 0.85);
    --bg-card: rgba(15, 15, 28, 0.95);

    --neon-pink: #ff2c9c;
    --neon-cyan: #00f5ff;
    --neon-green: #39ff14;

    --text-main: #eaeaf0;
    --text-dim: rgba(234, 234, 240, 0.75);
    --border: rgba(255, 255, 255, 0.12);

    --field-bg: rgba(255, 255, 255, 0.06);
    --field-bg-2: rgba(255, 255, 255, 0.10);
    --glow-pink: rgba(255, 44, 156, 0.45);
    --glow-cyan: rgba(0, 245, 255, 0.45);
    --focus-ring: rgba(0, 245, 255, 0.35);
    --label-color: var(--neon-cyan);
}

/* ── Light Mode (only when explicitly set) ── */
html[data-theme="light"] {
    --bg-deep: #f8fafc;
    --bg-secondary: #f1f5f9;
    --bg-glass: #ffffff;
    --bg-card: #ffffff;

    --neon-pink: #be185d;
    --neon-cyan: #0e7490;
    --neon-green: #15803d;

    --text-main: #0f172a;
    --text-dim: #475569;
    --border: #cbd5e1;

    --field-bg: #f8fafc;
    --field-bg-2: #f1f5f9;
    --glow-pink: rgba(190, 24, 93, 0.18);
    --glow-cyan: rgba(14, 116, 144, 0.18);
    --focus-ring: rgba(14, 116, 144, 0.25);
    --label-color: #334155;
}

/* Glassmorphic / Card Base */
.neo-card,
.panel,
.panel.hero-form,
.bg-white\/95 {
    background: var(--bg-glass);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.15),
        0 0 40px var(--glow-cyan);
    transition: all 0.3s ease;
}

html[data-theme="light"] .neo-card,
html[data-theme="light"] .panel,
html[data-theme="light"] .panel.hero-form,
html[data-theme="light"] .bg-white\/95 {
    backdrop-filter: blur(10px);
    border: none;
    box-shadow: 
        10px 10px 25px rgba(0,0,0,0.08),
        -10px -10px 25px rgba(255,255,255,0.95);
}

/* Headings */
.heading,
.neo-heading {
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(var(--neon-cyan), 0.3);
}

html[data-theme="light"] .heading,
html[data-theme="light"] .neo-heading {
    text-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

/* Form elements */
.neo-input,
.neo-textarea,
.neo-select {
    background: var(--field-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    color: var(--text-main);
    transition: all 0.25s ease;
}

html[data-theme="light"] .neo-input,
html[data-theme="light"] .neo-textarea,
html[data-theme="light"] .neo-select {
    border: none;
    box-shadow: inset 3px 3px 8px #e2e8f0,
                inset -3px -3px 8px #ffffff;
    background: #ffffff;
}

.neo-input:focus,
.neo-textarea:focus,
.neo-select:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 0 4px var(--focus-ring);
    background: var(--field-bg-2);
    outline: none;
}

/* Buttons */
.neo-button,
button[type="submit"] {
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
    color: #0a0a0f;
    border: none;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.neo-button:hover,
button[type="submit"]:hover {
    box-shadow: 0 0 24px var(--glow-pink), 0 0 24px var(--glow-cyan);
    transform: translateY(-2px);
}

html[data-theme="light"] .neo-button,
html[data-theme="light"] button[type="submit"] {
    background: linear-gradient(145deg, #e2e8f0, #cbd5e1) !important;
    color: #0f172a !important;
    box-shadow: 6px 6px 14px #cbd5e1,
                -6px -6px 14px #ffffff !important;
}

/* Light mode text safeguard */
html[data-theme="light"] .text-white,
html[data-theme="light"] .text-white *,
html[data-theme="light"] [class*="text-white"] {
    color: var(--text-main) !important;
}

/* Global body */
body {
    margin: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 44, 156, 0.08), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 245, 255, 0.08), transparent 50%),
        var(--bg-deep);
    color: var(--text-main);
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, sans-serif;
    min-height: 100vh;
    transition: background-color 0.4s ease, color 0.4s ease;
}

/* Layout wrappers */
.neo-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 18px;
}

.neo-card {
    width: 100%;
    max-width: 980px;
    background: var(--bg-glass);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 38px;
    box-shadow: 0 0 40px rgba(255, 44, 156, 0.10), 0 0 60px rgba(0, 245, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.neo-inner {
    position: relative;
    z-index: 1;
}

/* Typography */
.neo-heading {
    font-family: 'Orbitron', system-ui, sans-serif;
    font-size: 1.7rem;
    letter-spacing: 4px;
    margin-bottom: 6px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.neo-subheading {
    color: var(--text-dim);
    margin-bottom: 22px;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
}

/* Glitch effect */
.max-w-7xl .heading.text-5xl.font-bold.text-center.mb-16 {
    position: relative;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: var(--text-main);
}

.max-w-7xl .heading.text-5xl.font-bold.text-center.mb-16::before,
.max-w-7xl .heading.text-5xl.font-bold.text-center.mb-16::after {
    content: "High-Ticket Services We Deliver";
    position: absolute;
    inset: 0;
    opacity: 0.8;
    pointer-events: none;
}

.max-w-7xl .heading.text-5xl.font-bold.text-center.mb-16::before {
    color: var(--neon-cyan);
    transform: translate(4px, -3px);
    mix-blend-mode: screen;
    animation: glitch 2.2s infinite alternate;
}

.max-w-7xl .heading.text-5xl.font-bold.text-center.mb-16::after {
    color: var(--neon-pink);
    transform: translate(-4px, 3px);
    mix-blend-mode: screen;
    animation: glitch 1.7s infinite alternate-reverse;
}

@keyframes glitch {
    0%   { clip-path: inset(0 0 70% 0); }
    25%  { clip-path: inset(20% 0 40% 0); }
    50%  { clip-path: inset(40% 0 20% 0); }
    75%  { clip-path: inset(10% 0 60% 0); }
    100% { clip-path: inset(0 0 0 0); }
}

/* Panel Grid */
.panel-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .panel-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

.panel {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* HERO FORM TRACE - FIXED: respects dark/light mode */
.panel.hero-form {
    position: relative;
    overflow: hidden;
    background: var(--bg-glass) !important;   /* Dark in dark mode, white in light mode */
    border: none !important;
    border-radius: 18px;
    padding: 38px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.panel.hero-form:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2.5px;
    background: linear-gradient(90deg, transparent 0%, var(--neon-cyan) 25%, var(--neon-pink) 50%, var(--neon-cyan) 75%, transparent 100%);
    background-size: 400% 400%;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: traceMove 10s linear infinite;
    pointer-events: none;
}

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

@keyframes traceMove {
    0%   { background-position: 0% 50%; }
    100% { background-position: 400% 50%; }
}

html[data-theme="light"] .panel.hero-form:before {
    animation-duration: 6.5s;
}

/* Form inputs & layout */
.input {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 14px;
    color: var(--text-main);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.input::placeholder {
    color: #5f7488;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 18px;
    margin-top: 18px;
}

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

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field.full {
    grid-column: 1 / -1;
}

.neo-label {
    font-size: 0.82rem;
    letter-spacing: 0.10em;
    color: var(--label-color);
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* IMPROVED SELECT DROPDOWN - Fixed to stay dark in dark mode */
.neo-select {
    appearance: none;
    width: 100%;
    background: var(--field-bg) !important;
    border: 1px solid var(--border) !important;
    border-radius: 10px;
    padding: 12px 14px;
    color: var(--text-main) !important;
    outline: none;

    background-image:
        linear-gradient(45deg, transparent 50%, var(--text-dim) 50%),
        linear-gradient(135deg, var(--text-dim) 50%, transparent 50%),
        linear-gradient(to right, transparent, transparent);
    background-position:
        calc(100% - 18px) calc(50% - 2px),
        calc(100% - 12px) calc(50% - 2px),
        0 0;
    background-size: 6px 6px, 6px 6px, 100% 100%;
    background-repeat: no-repeat;
    padding-right: 42px;
}

/* Force dark options in dark mode */
.neo-select option,
.neo-select optgroup {
    background: #0f1720 !important;   /* Hard dark background for options in dark mode */
    color: #eaeaf0 !important;
    padding: 12px 16px;
}

/* Light mode options */
html[data-theme="light"] .neo-select option,
html[data-theme="light"] .neo-select optgroup {
    background: #ffffff !important;
    color: #0f172a !important;
}

.neo-select:focus {
    border-color: var(--neon-cyan) !important;
    box-shadow: 0 0 0 3px var(--focus-ring) !important;
    background: var(--field-bg-2) !important;
}

/* Other form focus states */
.neo-input:focus,
.neo-textarea:focus,
.neo-select:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 0 3px var(--focus-ring);
    background: var(--field-bg-2);
}

.help,
.neo-input::placeholder,
.neo-textarea::placeholder {
    color: var(--text-dim);
    opacity: 1;
}

html[data-theme="light"] .neo-input::placeholder,
html[data-theme="light"] .neo-textarea::placeholder {
    color: #6b7280;
}

/* Checkbox */
.neo-checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--field-bg);
}

.neo-checkbox {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: var(--neon-cyan);
}

/* Button */
.neo-button {
    margin-top: 18px;
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
    border: none;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0a0a0f;
    cursor: pointer;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.neo-button:hover {
    box-shadow:
        0 0 18px rgba(255, 44, 156, 0.45),
        0 0 18px rgba(0, 245, 255, 0.45);
    transform: translateY(-1px);
}

/* Alerts */
.neo-alert {
    margin: 0 0 18px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--neon-cyan);
    background: rgba(0, 140, 153, 0.08);
    color: var(--text-main);
}

html[data-theme="light"] .neo-alert {
    background: #ecfdf5;
    border-color: #6ee7b7;
    color: #065f46;
}

.neo-errors {
    margin: 0 0 18px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--neon-pink);
    background: rgba(192, 38, 122, 0.08);
    color: var(--text-main);
}

html[data-theme="light"] .neo-errors {
    background: #fef2f2;
    border-color: #fca5a5;
    color: #991b1b;
}

/* Honeypot */
.hp {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* FAQ */
.faq-card {
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 0;
    transition: all .25s ease;
    overflow: hidden;
}

.faq-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 25px rgba(0,245,255,.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.35rem;
    font-weight: 700;
    padding: 26px 30px;
    list-style: none;
    color: var(--text-main);
}

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

.faq-icon {
    width: 22px;
    height: 22px;
    stroke: var(--neon-cyan);
    stroke-width: 2;
    fill: none;
    transition: transform .25s ease;
}

details[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px 28px 30px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dim);
    max-width: 65ch;
}

/* Mobile Menu System */
#mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 320px;
    max-width: 85vw;
    background: var(--bg-secondary);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 1001;
}

#mobile-menu.menu-open {
    transform: translateX(0);
}

#mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.menu-open + #mobile-backdrop,
body .menu-open ~ #mobile-backdrop {
    opacity: 1;
    pointer-events: auto;
}

#mobile-menu {
    display: flex;
    flex-direction: column;
}

#mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 2rem;
}

#mobile-menu a {
    font-size: 1.1rem;
}

#mobile-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    font-size: 1.6rem;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
}

.burger-svg {
    stroke: var(--neon-cyan);
    stroke-width: 6;
    stroke-linecap: round;
    transition: all 0.4s ease;
}

.burger-line {
    transition: all 0.4s ease;
}

html[data-theme="dark"] .burger-svg:hover {
    filter: drop-shadow(0 0 6px var(--neon-cyan))
            drop-shadow(0 0 12px var(--neon-cyan));
}

.burger-open .burger-line:nth-child(1) {
    transform: translateY(20px) rotate(45deg);
}

.burger-open .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-open .burger-line:nth-child(3) {
    transform: translateY(-20px) rotate(-45deg);
}

.menu-lock {
    overflow: hidden;
}

.electric-menu {
    border-left: 2px solid var(--neon-cyan);
    filter: url(#electric-border);
    box-shadow:
        0 0 8px var(--neon-cyan),
        0 0 18px var(--neon-cyan),
        inset 0 0 10px rgba(0,255,255,0.3);
}

@media (min-width: 768px) {
    #mobile-menu,
    #mobile-backdrop {
        display: none;
    }
}

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

:root {
  --gutter: 2rem;
}

@media (max-width: 600px) {
  :root {
    --gutter: 1rem;
  }
}

.scrollgallery-root header {
  min-height: 100vh;
  width: 100vw;
  background: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.scrollgallery-root header h1,
.scrollgallery-root header h2 {
  margin: 0;
}

.scrollgallery-root main section:first-of-type {
  min-height: 240vh;
}

.scrollgallery-root .scrollgallery-content {
  min-height: 100vh;
  width: 100vw;
  display: flex;
  place-items: center;
  align-content: center;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.scrollgallery-root .scrollgallery-grid {
  --offset: 0;
  --gap: clamp(10px, 7.35vw, 80px);
  width: min(1600px, 100%);
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: var(--gap);
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

@media (max-width: 600px) {
  .scrollgallery-root .scrollgallery-grid {
    grid-template-columns: repeat(3, 1fr);
    --offset: -1;
  }
  .scrollgallery-root .scrollgallery-grid > .scrollgallery-layer:nth-of-type(1) {
    display: none;
  }
}

.scrollgallery-root .scrollgallery-grid > .scrollgallery-layer {
  display: grid;
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  grid-template-columns: subgrid;
  grid-template-rows: subgrid;
}

.scrollgallery-root .scrollgallery-grid > .scrollgallery-layer:nth-of-type(1) div:nth-of-type(odd) {
  grid-column: 1;
}

.scrollgallery-root .scrollgallery-grid > .scrollgallery-layer:nth-of-type(1) div:nth-of-type(even) {
  grid-column: -2;
}

.scrollgallery-root .scrollgallery-grid > .scrollgallery-layer:nth-of-type(2) div:nth-of-type(odd) {
  grid-column: calc(2 + var(--offset));
}

.scrollgallery-root .scrollgallery-grid > .scrollgallery-layer:nth-of-type(2) div:nth-of-type(even) {
  grid-column: calc(-3 - var(--offset));
}

.scrollgallery-root .scrollgallery-grid > .scrollgallery-layer:nth-of-type(3) div:first-of-type {
  grid-column: calc(3 + var(--offset));
  grid-row: 1;
}

.scrollgallery-root .scrollgallery-grid > .scrollgallery-layer:nth-of-type(3) div:last-of-type {
  grid-column: calc(3 + var(--offset));
  grid-row: -1;
}

.scrollgallery-root .scrollgallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 1rem;
}

.scrollgallery-root .scrollgallery-scaler {
  position: relative;
  grid-area: 2 / calc(3 + var(--offset));
  aspect-ratio: 4 / 5;
}

.scrollgallery-root .scrollgallery-scaler img {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100dvh;
  object-fit: cover;
  border-radius: 1rem;
  z-index: 10;
  pointer-events: none;
  transform-origin: center center;
}

.scrollgallery-root .scrollgallery-scaler.is-finished img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  transform: none;
  z-index: 1;
}

.scrollgallery-root header h1.fluid {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(4rem, 12vw, 12rem);
  line-height: 0.9;
}

.scrollgallery-root header h2.fluid {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.2rem, 3vw, 3rem);
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .scrollgallery-root .scrollgallery-scaler img {
    object-fit: contain;
    background: #000;
  }
}

/* Force clean panel for consistency */
.panel {
    background: var(--bg-card) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Browser compatibility fixes for select dropdowns */
html[data-theme="light"] select,
html[data-theme="light"] .neo-select {
    color-scheme: light;
}

html[data-theme="dark"],
:root:not([data-theme="light"]) {
    color-scheme: dark !important;
}

html[data-theme="light"] {
    color-scheme: light !important;
}



/* ============================================= */
/* FOOTER STYLING - Enhanced Cyberpunk Style     */
/* ============================================= */

footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

footer h4 {
    color: var(--neon-cyan);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.125em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

footer a {
    color: var(--text-dim);
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--neon-cyan);
}

/* Footer Grid - 6 columns on large screens */
footer .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem 2rem;
}

@media (min-width: 1024px) {
    footer .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
    }
}

/* Brand */
footer .brand-column p {
    max-width: 380px;
    line-height: 1.75;
    color: var(--text-dim);
}

footer .trusted {
    margin-top: 2rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    opacity: 0.75;
    text-transform: uppercase;
}

/* Opening Hours - Individual Days */
footer .opening-hours {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--text-dim);
}

footer .opening-hours div {
    margin-bottom: 0.15rem;
}

/* Social Links */
footer .social-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    font-size: 1rem;
}

footer .social-links svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

footer .social-links a:hover svg {
    transform: scale(1.15);
}

/* Bottom Bar */
footer .bottom-bar {
    border-top: 1px solid var(--border);
    margin-top: 4.5rem;
    padding-top: 2rem;
    font-size: 0.85rem;
    color: var(--text-dim);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    footer .bottom-bar {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}
/* Tailwind Directives */
@tailwind base;
@tailwind components;
@tailwind utilities;

input:where([type=checkbox]):checked,
input:where([type=radio]):checked {
    border-color: rgba(59, 130, 246, 0.9);
    background-color: rgb(59, 130, 246);
    background-size: 100% 100%;
    background-position: 50%;
    background-repeat: no-repeat;
    box-shadow:
        0 0 0 1px rgba(59, 130, 246, 0.45),
        0 0 8px rgba(59, 130, 246, 0.45),
        0 0 16px rgba(59, 130, 246, 0.3),
        0 0 24px rgba(59, 130, 246, 0.2);
    animation: calm-blue-pulse 3.6s ease-in-out infinite;
}

@keyframes calm-blue-pulse {
    0%,
    100% {
        background-color: rgb(59, 130, 246);
        box-shadow:
            0 0 0 1px rgba(59, 130, 246, 0.35),
            0 0 6px rgba(59, 130, 246, 0.25),
            0 0 12px rgba(59, 130, 246, 0.18),
            0 0 18px rgba(59, 130, 246, 0.12);
        transform: scale(1);
    }

    50% {
        background-color: rgb(96, 165, 250);
        box-shadow:
            0 0 0 1px rgba(96, 165, 250, 0.5),
            0 0 10px rgba(96, 165, 250, 0.45),
            0 0 20px rgba(96, 165, 250, 0.32),
            0 0 30px rgba(96, 165, 250, 0.2);
        transform: scale(1.04);
    }
}

/* ============================================= */
/* Light Mode Clay Refresh - April 2026          */
/* Dark mode intentionally left untouched        */
/* ============================================= */

html[data-theme="light"] {
    --bg-deep: #f4f7fe;
    --bg-secondary: #eef3fb;
    --bg-glass: rgba(255, 255, 255, 0.82);
    --bg-card: rgba(255, 255, 255, 0.96);
    --neon-pink: #ff7eb3;
    --neon-cyan: #4facfe;
    --neon-green: #0f9b73;
    --text-main: #24364a;
    --text-dim: #526275;
    --border: rgba(255, 255, 255, 0.62);
    --field-bg: #eef3fb;
    --field-bg-2: #ffffff;
    --glow-pink: rgba(255, 126, 179, 0.22);
    --glow-cyan: rgba(79, 172, 254, 0.20);
    --focus-ring: rgba(79, 172, 254, 0.22);
    --label-color: #425166;
}

html[data-theme="light"] body {
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 126, 179, 0.20), transparent 24%),
        radial-gradient(circle at 86% 14%, rgba(79, 172, 254, 0.18), transparent 26%),
        radial-gradient(circle at 78% 76%, rgba(162, 155, 254, 0.16), transparent 24%),
        linear-gradient(180deg, #f8fbff 0%, #f4f7fe 48%, #eef4fb 100%);
    color: var(--text-main);
    font-family: 'Nunito', system-ui, -apple-system, Segoe UI, sans-serif;
}

html[data-theme="light"] .heading,
html[data-theme="light"] .neo-heading {
    font-family: 'Baloo 2', 'Nunito', cursive;
    font-weight: 800;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, #ff7eb3, #ff9f68 48%, #4facfe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
}

html[data-theme="light"] .max-w-7xl .heading.text-5xl.font-bold.text-center.mb-16::before,
html[data-theme="light"] .max-w-7xl .heading.text-5xl.font-bold.text-center.mb-16::after {
    display: none;
}

html[data-theme="light"] .neo-card,
html[data-theme="light"] .panel,
html[data-theme="light"] .panel.hero-form,
html[data-theme="light"] .bg-white\/95,
html[data-theme="light"] .faq-card {
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, var(--light-panel-glass-base, 0.72)),
        rgba(250, 252, 255, var(--light-panel-glass-mid, 0.84))
    ) !important;
    border: 1px solid rgba(255, 255, 255, var(--light-glass-border-opacity, 0.62)) !important;
    border-radius: 28px !important;
    box-shadow:
        14px 14px 28px rgba(183, 194, 210, 0.16),
        -12px -12px 24px rgba(255, 255, 255, 0.96),
        inset 5px 5px 12px rgba(255, 255, 255, 0.56),
        inset -6px -6px 12px rgba(157, 173, 194, 0.05) !important;
    backdrop-filter: blur(var(--light-glass-blur, 10px));
    -webkit-backdrop-filter: blur(var(--light-glass-blur, 10px));
}

html[data-theme="light"] .neo-card:hover,
html[data-theme="light"] .panel:hover,
html[data-theme="light"] .faq-card:hover {
    transform: translateY(-4px);
    box-shadow:
        18px 18px 34px rgba(183, 194, 210, 0.42),
        -14px -14px 28px rgba(255, 255, 255, 0.98),
        inset 5px 5px 12px rgba(255, 255, 255, 0.75),
        inset -6px -6px 12px rgba(157, 173, 194, 0.08) !important;
}

html[data-theme="light"] .panel.hero-form::before {
    display: none;
}

html[data-theme="light"] .neo-input,
html[data-theme="light"] .neo-textarea,
html[data-theme="light"] .neo-select,
html[data-theme="light"] .input {
    background: linear-gradient(145deg, #fbfdff, #f2f6fd) !important;
    border: 1px solid rgba(255, 255, 255, 0.84) !important;
    border-radius: 20px !important;
    color: var(--text-main) !important;
    box-shadow:
        inset 5px 5px 12px rgba(198, 209, 224, 0.24),
        inset -5px -5px 12px rgba(255, 255, 255, 0.94) !important;
}

html[data-theme="light"] .neo-input:focus,
html[data-theme="light"] .neo-textarea:focus,
html[data-theme="light"] .neo-select:focus,
html[data-theme="light"] .input:focus {
    background: #ffffff !important;
    box-shadow:
        inset 4px 4px 10px rgba(194, 206, 223, 0.18),
        inset -4px -4px 10px rgba(255, 255, 255, 0.97),
        0 0 0 4px rgba(79, 172, 254, 0.16) !important;
}

html[data-theme="light"] .neo-subheading {
    color: #5a6c82;
}

html[data-theme="light"] .neo-checkbox-row {
    background: linear-gradient(145deg, #f7faff, #edf3fb);
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 20px;
    box-shadow:
        8px 8px 18px rgba(186, 198, 214, 0.24),
        -8px -8px 18px rgba(255, 255, 255, 0.88);
}

html[data-theme="light"] .neo-button,
html[data-theme="light"] button[type="submit"] {
    background: linear-gradient(135deg, #ff8ba7, #ff6b6b) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.42) !important;
    border-radius: 9999px !important;
    font-family: 'Nunito', system-ui, sans-serif;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: none;
    box-shadow:
        8px 8px 18px rgba(255, 107, 107, 0.26),
        -8px -8px 18px rgba(255, 255, 255, 0.96),
        inset 3px 3px 10px rgba(255, 255, 255, 0.26),
        inset -4px -4px 10px rgba(163, 53, 53, 0.18) !important;
}

html[data-theme="light"] .neo-button:hover,
html[data-theme="light"] button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow:
        10px 10px 22px rgba(255, 107, 107, 0.28),
        -10px -10px 22px rgba(255, 255, 255, 0.98),
        inset 3px 3px 10px rgba(255, 255, 255, 0.28),
        inset -4px -4px 10px rgba(163, 53, 53, 0.18) !important;
}

html[data-theme="light"] .faq-card:hover {
    border-color: rgba(79, 172, 254, 0.38) !important;
}

html[data-theme="light"] .faq-question,
html[data-theme="light"] footer h4,
html[data-theme="light"] .neo-label {
    font-family: 'Nunito', system-ui, sans-serif;
}

html[data-theme="light"] footer {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(240, 245, 252, 0.96));
    border-top: 1px solid rgba(255, 255, 255, 0.68);
}

html[data-theme="light"] footer h4 {
    color: #4facfe;
}

html[data-theme="light"] footer a:hover,
html[data-theme="light"] a:hover {
    color: #ff7eb3;
    text-shadow: none;
}

html[data-theme="light"] nav[aria-label="Main navigation"] a,
html[data-theme="light"] .mobile-links a {
    color: var(--text-main);
}

html[data-theme="light"] nav[aria-label="Main navigation"] a:hover,
html[data-theme="light"] .mobile-links a:hover {
    color: #ff7eb3;
}

html[data-theme="light"] nav[aria-label="Main navigation"] .group > ul {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 255, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow:
        12px 12px 28px rgba(183, 194, 210, 0.28),
        -10px -10px 24px rgba(255, 255, 255, 0.96);
}

html[data-theme="light"] nav[aria-label="Main navigation"] .group > ul a {
    color: var(--text-main);
}

html[data-theme="light"] .text-slate-300,
html[data-theme="light"] .text-slate-400,
html[data-theme="light"] .text-slate-500,
html[data-theme="light"] .text-gray-300,
html[data-theme="light"] .text-gray-400,
html[data-theme="light"] .text-gray-500 {
    color: var(--text-dim) !important;
}

html[data-theme="light"] .text-slate-600,
html[data-theme="light"] .text-slate-700,
html[data-theme="light"] .text-gray-600,
html[data-theme="light"] .text-gray-700 {
    color: var(--text-main) !important;
}

.calculator-switcher {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.875rem;
}

.calc-group-btn {
    min-height: 3.9rem;
    width: 100%;
    font-weight: 700;
    line-height: 1.35;
}

.calculator-option-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.calculator-option-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 1rem 1.125rem;
    border-radius: 1.25rem;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-main);
    text-align: left;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.calculator-option-card:hover {
    transform: translateY(-2px);
    border-color: var(--neon-cyan);
}

.calculator-option-card.is-active {
    border-color: var(--neon-cyan);
    background: rgba(79, 172, 254, 0.14);
    box-shadow: 0 12px 28px rgba(79, 172, 254, 0.14);
}

.calculator-option-card__label {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-main);
}

.calculator-option-card__summary {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-dim);
}

.calculator-option-card__price {
    margin-top: 0.1rem;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--neon-cyan);
}

.calculator-group-summary,
.calculator-summary-eyebrow,
.calculator-discount-total {
    color: var(--neon-green);
    font-weight: 800;
}

.calculator-group-summary,
.calculator-summary-eyebrow {
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

html[data-theme="light"] .calculator-option-card {
    background: linear-gradient(145deg, rgba(249, 251, 255, 0.96), rgba(238, 243, 251, 0.96));
    border-color: rgba(198, 211, 226, 0.58);
    box-shadow:
        inset 4px 4px 10px rgba(194, 206, 223, 0.22),
        inset -4px -4px 10px rgba(255, 255, 255, 0.9);
}

html[data-theme="light"] .calculator-option-card:hover {
    border-color: rgba(79, 172, 254, 0.5);
    box-shadow:
        10px 10px 20px rgba(183, 194, 210, 0.24),
        -8px -8px 16px rgba(255, 255, 255, 0.9),
        inset 4px 4px 10px rgba(194, 206, 223, 0.18),
        inset -4px -4px 10px rgba(255, 255, 255, 0.92);
}

html[data-theme="light"] .calculator-option-card.is-active {
    background: linear-gradient(145deg, rgba(227, 241, 255, 0.98), rgba(240, 248, 255, 0.98));
    border-color: rgba(79, 172, 254, 0.52);
    box-shadow:
        12px 12px 24px rgba(172, 186, 205, 0.22),
        -10px -10px 18px rgba(255, 255, 255, 0.94),
        inset 4px 4px 10px rgba(194, 206, 223, 0.16),
        inset -4px -4px 10px rgba(255, 255, 255, 0.92);
}

html[data-theme="light"] .calculator-group-summary,
html[data-theme="light"] .calculator-summary-eyebrow,
html[data-theme="light"] .calculator-discount-total {
    color: #127a5b;
}

@media (max-width: 768px) {
    .calculator-switcher,
    .calculator-option-buttons {
        grid-template-columns: 1fr;
    }
}

/* ============================================= */
/* Phase 2 Premium Lead-Generation Rebrand       */
/* ============================================= */

:root,
html[data-theme="light"] {
    --bg-deep: #fffdf8;
    --bg-secondary: #f4f0e8;
    --bg-glass: #fffaf0;
    --bg-card: #ffffff;
    --ink: #080a32;
    --muted: #667085;
    --line: #e3ded4;
    --paper: #fffdf8;
    --wash: #f4f0e8;
    --gold: #aa925c;
    --green: #1f6b4a;
    --navy-soft: #171b46;
    --neon-pink: var(--gold);
    --neon-cyan: var(--ink);
    --neon-green: var(--green);
    --text-main: var(--ink);
    --text-dim: #4d5567;
    --border: var(--line);
    --field-bg: #fffdf8;
    --field-bg-2: #ffffff;
    --glow-pink: rgba(170, 146, 92, 0.22);
    --glow-cyan: rgba(8, 10, 50, 0.16);
    --focus-ring: rgba(170, 146, 92, 0.24);
    --label-color: var(--gold);
    color-scheme: light;
}

html[data-theme="dark"] {
    --bg-deep: #080a32;
    --bg-secondary: #10133c;
    --bg-glass: rgba(255, 253, 248, 0.08);
    --bg-card: #11143f;
    --ink: #fffdf8;
    --muted: #c6c4bd;
    --line: rgba(255, 253, 248, 0.18);
    --paper: #10133c;
    --wash: #171b46;
    --gold: #d5bd7a;
    --green: #78c59c;
    --navy-soft: #1d2256;
    --neon-pink: var(--gold);
    --neon-cyan: #fffdf8;
    --neon-green: var(--green);
    --text-main: #fffdf8;
    --text-dim: rgba(255, 253, 248, 0.76);
    --border: rgba(255, 253, 248, 0.18);
    --field-bg: rgba(255, 253, 248, 0.08);
    --field-bg-2: rgba(255, 253, 248, 0.12);
    --glow-pink: rgba(213, 189, 122, 0.18);
    --glow-cyan: rgba(255, 253, 248, 0.12);
    --focus-ring: rgba(213, 189, 122, 0.26);
    --label-color: var(--gold);
    color-scheme: dark;
}

body {
    background:
        radial-gradient(circle at top left, rgba(170, 146, 92, 0.14), transparent 36rem),
        linear-gradient(135deg, var(--paper) 0%, var(--wash) 100%);
    color: var(--text-main);
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 0;
}

html[data-theme="dark"] body {
    background:
        radial-gradient(circle at top left, rgba(213, 189, 122, 0.12), transparent 34rem),
        linear-gradient(135deg, #080a32 0%, #141849 100%);
}

.heading,
.neo-heading,
.premium-title,
.premium-section-title {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    color: var(--text-main);
    text-shadow: none;
}

.premium-title {
    font-size: 3.5rem;
    line-height: 0.98;
}

.premium-section-title {
    font-size: 2.5rem;
    line-height: 1.05;
}

@media (max-width: 900px) {
    .premium-title {
        font-size: 2.7rem;
        line-height: 1.02;
    }

    .premium-section-title {
        font-size: 2rem;
        line-height: 1.1;
    }
}

@media (max-width: 520px) {
    .premium-title {
        font-size: 2.2rem;
    }

    .premium-section-title {
        font-size: 1.7rem;
    }
}

.premium-kicker,
.premium-eyebrow {
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.premium-copy {
    color: var(--text-dim);
    font-size: 1.08rem;
    line-height: 1.8;
}

.premium-page {
    overflow: hidden;
}

.premium-section,
.premium-band {
    position: relative;
    padding: 5.5rem 1.5rem;
}

.premium-section {
    background: var(--paper);
}

.premium-band {
    background: var(--wash);
    border-block: 1px solid var(--line);
}

.premium-dark {
    background: var(--ink);
    color: #fffdf8;
}

html[data-theme="dark"] .premium-dark {
    background: #050721;
}

.premium-dark .premium-section-title,
.premium-dark .premium-title,
.premium-dark .premium-copy,
.premium-dark .premium-card-title {
    color: #fffdf8;
}

.premium-dark .premium-copy,
.premium-dark .premium-card-copy {
    color: rgba(255, 253, 248, 0.76);
}

.premium-dark .premium-card,
.premium-dark .premium-process-step,
.premium-dark .premium-stat {
    background: rgba(255, 253, 248, 0.06) !important;
    border-color: rgba(255, 253, 248, 0.16) !important;
}

.premium-dark .premium-button.secondary {
    color: #fffdf8 !important;
    border-color: rgba(255, 253, 248, 0.32);
}

.premium-dark .premium-button.secondary:hover {
    background: #fffdf8;
    border-color: #fffdf8;
    color: #080a32 !important;
}

.premium-shell {
    width: min(100%, 78rem);
    margin-inline: auto;
}

.premium-hero {
    position: relative;
    min-height: calc(100vh - 8rem);
    display: flex;
    align-items: center;
    padding: 5.5rem 1.5rem 4.5rem;
    background:
        linear-gradient(90deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.88)),
        url("/images/stock/coding-screens.jpg") center / cover no-repeat;
}

html[data-theme="dark"] .premium-hero {
    background:
        linear-gradient(90deg, rgba(8, 10, 50, 0.94), rgba(8, 10, 50, 0.78)),
        url("/images/stock/coding-screens.jpg") center / cover no-repeat;
}

.premium-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(22rem, 0.78fr);
    gap: 3rem;
    align-items: start;
}

.premium-hero-actions,
.premium-inline-actions,
.premium-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
}

.premium-button,
.neo-button,
button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.2rem;
    padding: 0.9rem 1.15rem;
    border-radius: 0.375rem;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: #fffdf8 !important;
    box-shadow: none !important;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.premium-button:hover,
.neo-button:hover,
button[type="submit"]:hover {
    transform: translateY(-1px);
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink) !important;
}

.premium-button.secondary {
    background: transparent;
    color: var(--ink) !important;
    border-color: var(--line);
}

.premium-button.secondary:hover {
    background: var(--ink);
    border-color: var(--ink);
    color: #fffdf8 !important;
}

.premium-button.gold {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink) !important;
}

.premium-button.gold:hover {
    background: #8f7849;
    border-color: #8f7849;
    color: #fffdf8 !important;
}

html[data-theme="dark"] .premium-button,
html[data-theme="dark"] .neo-button,
html[data-theme="dark"] button[type="submit"] {
    border-color: var(--gold);
    background: var(--gold);
    color: #080a32 !important;
}

html[data-theme="dark"] .premium-button.secondary {
    background: transparent;
    color: #fffdf8 !important;
    border-color: rgba(255, 253, 248, 0.26);
}

.panel,
.panel.hero-form,
.premium-card,
.premium-form-card,
.premium-stat,
.premium-process-step,
.premium-proof-panel {
    border: 1px solid var(--line) !important;
    border-radius: 0.5rem !important;
    background: var(--bg-card) !important;
    box-shadow: 0 24px 70px rgba(8, 10, 50, 0.08) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

html[data-theme="dark"] .panel,
html[data-theme="dark"] .panel.hero-form,
html[data-theme="dark"] .premium-card,
html[data-theme="dark"] .premium-form-card,
html[data-theme="dark"] .premium-stat,
html[data-theme="dark"] .premium-process-step,
html[data-theme="dark"] .premium-proof-panel {
    background: rgba(255, 253, 248, 0.06) !important;
    border-color: rgba(255, 253, 248, 0.16) !important;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22) !important;
}

.panel.hero-form:before {
    display: none;
}

.premium-form-card {
    padding: 2rem;
}

.neo-heading {
    font-size: 1.65rem;
    margin-bottom: 0.75rem;
}

.neo-subheading {
    color: var(--text-dim);
    letter-spacing: 0;
    line-height: 1.7;
}

.neo-label {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--gold);
    letter-spacing: 0.1em;
}

.neo-input,
.neo-textarea,
.neo-select {
    border: 1px solid var(--line) !important;
    border-radius: 0.375rem;
    background: var(--field-bg) !important;
    color: var(--text-main) !important;
    box-shadow: none !important;
}

.neo-input:focus,
.neo-textarea:focus,
.neo-select:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 4px var(--focus-ring) !important;
}

.premium-stat-grid,
.premium-card-grid,
.premium-process-grid,
.premium-location-grid {
    display: grid;
    gap: 1rem;
}

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

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

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

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

.premium-stat,
.premium-card,
.premium-process-step {
    padding: 1.5rem;
}

.premium-stat-value {
    display: block;
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.1rem;
    line-height: 1;
    letter-spacing: 0.02em;
}

.premium-stat-label,
.premium-card-copy,
.premium-process-copy {
    color: var(--text-dim);
    line-height: 1.65;
}

.premium-card-title,
.premium-process-title {
    color: var(--text-main);
    font-size: 1.12rem;
    font-weight: 800;
    line-height: 1.35;
}

.premium-card-link {
    color: var(--ink);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
}

.premium-card-link:hover {
    color: var(--gold);
}

.premium-dark .premium-card-link {
    color: #fffdf8;
}

.premium-dark .premium-card-link:hover {
    color: var(--gold);
}

html[data-theme="dark"] .premium-card-link {
    color: #fffdf8;
}

.premium-split {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 3rem;
    align-items: center;
}

.premium-proof-panel {
    overflow: hidden;
}

.premium-proof-panel img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.premium-proof-caption {
    padding: 1.25rem;
    border-top: 1px solid var(--line);
    color: var(--text-dim);
    line-height: 1.65;
}

.premium-location-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.65rem;
    border: 1px solid var(--line);
    border-radius: 0.375rem;
    background: var(--bg-card);
    color: var(--text-main);
    font-weight: 800;
    text-decoration: none;
}

.premium-location-pill:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.premium-topline {
    background: var(--ink);
    color: #fffdf8;
    border-bottom: 1px solid rgba(255, 253, 248, 0.16);
}

.premium-topline a {
    color: #fffdf8;
}

.premium-topline a:hover {
    color: var(--gold);
}

html[data-theme="dark"] .premium-topline {
    background: #050721;
    color: rgba(255, 253, 248, 0.86);
    border-bottom-color: rgba(255, 253, 248, 0.12);
}

html[data-theme="dark"] .premium-topline a {
    color: #fffdf8;
}

header {
    background: rgba(255, 253, 248, 0.94) !important;
    border-bottom-color: var(--line) !important;
    box-shadow: 0 12px 40px rgba(8, 10, 50, 0.06) !important;
}

html[data-theme="dark"] header {
    background: rgba(8, 10, 50, 0.94) !important;
}

.site-logo {
    width: 13rem;
}

.nav-dropdown-panel {
    background: var(--bg-card);
    border-color: var(--line);
    border-radius: 0.5rem;
    box-shadow: 0 24px 70px rgba(8, 10, 50, 0.12);
}

.nav-dropdown-link:hover,
.nav-dropdown-link.is-active {
    background: var(--wash);
    color: var(--ink);
}

#mobile-menu {
    background: var(--paper);
}

html[data-theme="dark"] #mobile-menu {
    background: var(--bg-secondary);
}

footer {
    background: var(--ink);
    border-top: 1px solid rgba(255, 253, 248, 0.12);
    color: rgba(255, 253, 248, 0.78);
}

footer h4 {
    color: var(--gold);
}

footer a {
    color: rgba(255, 253, 248, 0.78);
}

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

html[data-theme="light"] footer {
    background: var(--ink);
    border-top: 1px solid rgba(255, 253, 248, 0.12);
}

html[data-theme="light"] footer h4 {
    color: var(--gold);
}

html[data-theme="light"] footer a:hover,
html[data-theme="light"] a:hover {
    color: var(--gold);
}

@media (max-width: 980px) {
    .premium-hero-grid,
    .premium-split {
        grid-template-columns: 1fr;
    }

    .premium-stat-grid,
    .premium-card-grid,
    .premium-process-grid,
    .premium-location-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .premium-section,
    .premium-band,
    .premium-hero {
        padding-inline: 1rem;
    }

    .premium-section,
    .premium-band {
        padding-block: 4rem;
    }

    .premium-stat-grid,
    .premium-card-grid,
    .premium-process-grid,
    .premium-location-grid {
        grid-template-columns: 1fr;
    }

    .premium-form-card {
        padding: 1.25rem;
    }
}

/* Public page premium normalization */
.premium-page-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(3.25rem, 5vw, 4.75rem) 1.5rem clamp(3.5rem, 5vw, 4.75rem);
    background:
        linear-gradient(125deg, rgba(255, 253, 248, 0.96), rgba(244, 240, 232, 0.92)),
        var(--paper);
    border-bottom: 1px solid var(--line);
}

.premium-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(8, 10, 50, 0.05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(8, 10, 50, 0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.premium-page-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.78fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: start;
}

.premium-page-hero-copy {
    max-width: 48rem;
}

.premium-page-hero-intro {
    max-width: 44rem;
    font-size: 1.12rem;
}

.premium-page-hero-side {
    min-width: 0;
}

.premium-page-hero .premium-form-card {
    border-color: rgba(184, 148, 78, 0.26) !important;
    box-shadow:
        0 28px 76px rgba(8, 10, 50, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.76) !important;
}

.premium-hero-outcomes,
.premium-lead-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.25rem;
}

.premium-hero-outcomes span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid rgba(8, 10, 50, 0.1);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.88);
    color: var(--ink);
    padding: 0.62rem 0.85rem;
    font-size: 0.86rem;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(8, 10, 50, 0.06);
}

.premium-hero-outcomes span::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 0.25rem rgba(184, 148, 78, 0.12);
}

.premium-lead-flow {
    align-items: center;
    width: min(100%, 42rem);
    border: 1px solid rgba(184, 148, 78, 0.26);
    border-radius: 0.65rem;
    background: rgba(8, 10, 50, 0.04);
    padding: 0.75rem;
}

.premium-lead-flow span {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 2.15rem;
    border-radius: 0.45rem;
    background: #fffdf8;
    color: var(--ink);
    padding: 0.52rem 0.7rem;
    font-size: 0.82rem;
    font-weight: 900;
}

.premium-lead-flow span + span::before {
    content: ">";
    position: absolute;
    left: -0.7rem;
    color: var(--gold);
    font-weight: 900;
}

.contact-page-section {
    padding-top: 6rem;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.82fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.premium-visual-card {
    overflow: hidden;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 0.5rem;
    background: var(--bg-card);
    box-shadow: 0 26px 80px rgba(8, 10, 50, 0.14);
}

.premium-visual-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.premium-visual-card figcaption {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
}

.premium-visual-card figcaption span {
    padding: 1rem;
    color: var(--text-main);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.35;
}

.premium-visual-card figcaption span + span {
    border-left: 1px solid var(--line);
}

.premium-contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.3rem;
    margin-top: 1.1rem;
    color: var(--text-dim);
    font-size: 0.95rem;
    font-weight: 800;
}

.premium-contact-row a {
    color: var(--ink);
    text-decoration: none;
}

.premium-contact-row a:hover {
    color: var(--gold);
}

.premium-dot {
    margin-top: 0.1rem;
    color: var(--gold);
    font-weight: 900;
}

.premium-card-link.muted {
    color: var(--text-dim);
}

.heading {
    color: var(--text-main);
    font-family: Georgia, "Times New Roman", serif !important;
    letter-spacing: 0;
    background: none !important;
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    -webkit-text-fill-color: currentColor !important;
    text-shadow: none !important;
}

html[data-theme="light"] .heading,
html[data-theme="light"] .neo-heading,
html[data-theme="light"] .premium-title,
html[data-theme="light"] .premium-section-title,
html[data-theme="light"] .google-reviews-heading {
    color: var(--text-main) !important;
    background: none !important;
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    -webkit-text-fill-color: currentColor !important;
    text-shadow: none !important;
}

.panel,
.neo-card,
.calculator-panel,
.calculator-summary-panel,
.faq-card,
.google-review-card,
.google-reviews-summary {
    border: 1px solid var(--line) !important;
    border-radius: 0.5rem !important;
    background: var(--bg-card) !important;
    box-shadow: 0 18px 50px rgba(8, 10, 50, 0.08) !important;
}

.calculator-panel,
.calculator-summary-panel {
    background: #fffdf8 !important;
    box-shadow: 0 18px 44px rgba(8, 10, 50, 0.06) !important;
}

.panel::before,
.panel.hero-form::before {
    display: none !important;
}

.neo-inner {
    position: relative;
}

.neo-heading {
    font-family: Georgia, "Times New Roman", serif !important;
    color: var(--text-main) !important;
    background: none !important;
    -webkit-text-fill-color: currentColor !important;
    text-shadow: none !important;
    letter-spacing: 0 !important;
}

.neo-subheading,
.prose,
.prose p,
.prose li,
.faq-answer,
.google-reviews-copy,
.google-review-body {
    color: var(--text-dim) !important;
}

.neo-button,
.calc-group-btn.bg-\[var\(--neon-cyan\)\],
.premium-button {
    border: 1px solid var(--ink) !important;
    border-radius: 0.375rem !important;
    background: var(--ink) !important;
    color: #fffdf8 !important;
    box-shadow: none !important;
    font-weight: 900;
    letter-spacing: 0.01em;
    text-decoration: none;
}

.neo-button:hover,
.premium-button:hover {
    border-color: var(--gold) !important;
    background: var(--gold) !important;
    color: #080a32 !important;
    transform: translateY(-1px);
}

html[data-theme="light"] .neo-button,
html[data-theme="light"] button[type="submit"].neo-button,
html[data-theme="light"] .calculator-summary-panel .neo-button,
html[data-theme="light"] .premium-button {
    border: 1px solid var(--ink) !important;
    background: var(--ink) !important;
    color: #fffdf8 !important;
    box-shadow: none !important;
}

html[data-theme="light"] .neo-button:hover,
html[data-theme="light"] button[type="submit"].neo-button:hover,
html[data-theme="light"] .calculator-summary-panel .neo-button:hover,
html[data-theme="light"] .premium-button:hover {
    border-color: var(--gold) !important;
    background: var(--gold) !important;
    color: #080a32 !important;
}

.premium-button.secondary,
a[class*="border-"][class*="neon"],
.calc-group-btn:not(.bg-\[var\(--neon-cyan\)\]) {
    border: 1px solid var(--line) !important;
    background: rgba(255, 253, 248, 0.72) !important;
    color: var(--ink) !important;
    box-shadow: none !important;
}

.premium-button.secondary:hover,
a[class*="border-"][class*="neon"]:hover,
.calc-group-btn:not(.bg-\[var\(--neon-cyan\)\]):hover {
    border-color: var(--gold) !important;
    background: var(--wash) !important;
    color: var(--ink) !important;
}

.calculator-shell {
    align-items: start;
}

.calculator-switcher .calc-group-btn {
    min-height: 3rem;
    border-radius: 0.375rem !important;
}

.calc-group-btn[class*="bg-[var(--neon-cyan)]"] {
    border-color: var(--ink) !important;
    background: var(--ink) !important;
    color: #fffdf8 !important;
}

html[data-theme="light"] .calc-group-btn.bg-\[var\(--neon-cyan\)\],
html[data-theme="light"] .calc-group-btn[class*="bg-[var(--neon-cyan)]"] {
    border-color: var(--ink) !important;
    background: var(--ink) !important;
    color: #fffdf8 !important;
}

.calculator-option-card {
    display: grid;
    gap: 0.45rem;
    width: 100%;
    margin-bottom: 0.75rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 0.5rem;
    background: rgba(255, 253, 248, 0.78);
    color: var(--text-main);
    text-align: left;
}

.calculator-option-card.is-active {
    border-color: var(--gold);
    background: var(--wash);
}

.calculator-option-card__label,
.calculator-option-card__price {
    color: var(--text-main);
    font-weight: 900;
}

.calculator-option-card__summary,
.calculator-group-summary,
#calculator-summary {
    color: var(--text-dim);
}

.calculator-summary-eyebrow,
.google-reviews-summary-label,
.google-review-source {
    color: var(--gold);
}

#calc-bacs-total,
.calculator-discount-total {
    color: var(--green) !important;
}

html[data-theme="dark"] .calculator-panel,
html[data-theme="dark"] .calculator-summary-panel {
    border-color: rgba(255, 253, 248, 0.18) !important;
    background:
        linear-gradient(145deg, rgba(18, 22, 67, 0.98), rgba(12, 15, 50, 0.98)) !important;
    color: #fffdf8 !important;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26) !important;
}

html[data-theme="dark"] .calculator-switcher .calc-group-btn {
    border-color: rgba(255, 253, 248, 0.18) !important;
    background: rgba(255, 253, 248, 0.08) !important;
    color: rgba(255, 253, 248, 0.9) !important;
}

html[data-theme="dark"] .calculator-switcher .calc-group-btn:hover {
    border-color: rgba(213, 189, 122, 0.62) !important;
    background: rgba(255, 253, 248, 0.13) !important;
    color: #fffdf8 !important;
}

html[data-theme="dark"] .calculator-switcher .calc-group-btn.bg-\[var\(--neon-cyan\)\],
html[data-theme="dark"] .calculator-switcher .calc-group-btn[class*="bg-[var(--neon-cyan)]"] {
    border-color: var(--gold) !important;
    background: var(--gold) !important;
    color: #080a32 !important;
}

html[data-theme="dark"] .calculator-option-card {
    border-color: rgba(255, 253, 248, 0.16) !important;
    background: rgba(255, 253, 248, 0.075) !important;
    color: #fffdf8 !important;
    box-shadow: none !important;
}

html[data-theme="dark"] .calculator-option-card:hover {
    border-color: rgba(213, 189, 122, 0.7) !important;
    background: rgba(255, 253, 248, 0.11) !important;
}

html[data-theme="dark"] .calculator-option-card.is-active {
    border-color: var(--gold) !important;
    background: rgba(213, 189, 122, 0.16) !important;
    box-shadow: inset 0 0 0 1px rgba(213, 189, 122, 0.2) !important;
}

html[data-theme="dark"] .calculator-option-card__label,
html[data-theme="dark"] .calculator-option-card__price,
html[data-theme="dark"] .calculator-summary-panel strong,
html[data-theme="dark"] #calculator-items .font-semibold {
    color: #fffdf8 !important;
}

html[data-theme="dark"] .calculator-option-card.is-active .calculator-option-card__price,
html[data-theme="dark"] .calculator-summary-eyebrow,
html[data-theme="dark"] .calculator-group-summary {
    color: var(--gold) !important;
}

html[data-theme="dark"] .calculator-option-card__summary,
html[data-theme="dark"] #calculator-summary,
html[data-theme="dark"] .calculator-summary-panel span,
html[data-theme="dark"] #calculator-items .text-\[var\(--text-dim\)\] {
    color: rgba(255, 253, 248, 0.78) !important;
}

html[data-theme="dark"] #calculator-items > div {
    border-color: rgba(255, 253, 248, 0.16) !important;
    background: rgba(255, 253, 248, 0.055) !important;
}

html[data-theme="dark"] .calculator-summary-panel .neo-button {
    border-color: var(--gold) !important;
    background: var(--gold) !important;
    color: #080a32 !important;
}

.faq-card {
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    color: var(--text-main);
    cursor: pointer;
    font-weight: 900;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    line-height: 1.7;
}

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.google-review-stars {
    color: var(--gold);
    letter-spacing: 0;
}

.google-reviews-footnote,
.google-reviews-sort,
.google-reviews-score-meta {
    color: var(--text-dim);
}

.premium-legal-page {
    margin-top: 2rem;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.premium-legal-page h1,
.premium-legal-page h2,
.premium-legal-page h3 {
    color: var(--text-main);
    font-family: Georgia, "Times New Roman", serif;
}

.premium-legal-page a {
    color: var(--ink);
    font-weight: 800;
}

.weekly-offer-strip {
    background: var(--ink) !important;
    color: #fffdf8 !important;
}

html[data-theme="dark"] .weekly-offer-strip {
    background: #050721 !important;
    color: #fffdf8 !important;
    border-top: 1px solid rgba(255, 253, 248, 0.1);
    border-bottom: 1px solid rgba(255, 253, 248, 0.1);
}

.weekly-offer-badge,
.weekly-offer-link {
    border-radius: 0.375rem !important;
    background: rgba(255, 253, 248, 0.08) !important;
    color: #fffdf8 !important;
}

.weekly-offer-inline-phone,
.weekly-offer-phone {
    color: var(--gold) !important;
}

.instant-pricing-panel {
    border: 1px solid var(--line) !important;
    border-radius: 0.5rem !important;
    background: var(--paper) !important;
    color: var(--text-main) !important;
    box-shadow: 0 30px 90px rgba(8, 10, 50, 0.18) !important;
}

.instant-pricing-panel > .absolute.inset-x-0.top-0 {
    background: var(--gold) !important;
}

.instant-pricing-heading,
.instant-pricing-highlight-title,
.instant-pricing-price-value {
    color: var(--text-main) !important;
}

.instant-pricing-copy,
.instant-pricing-highlight-copy,
.instant-pricing-price-label,
.instant-pricing-price-saving {
    color: var(--text-dim) !important;
}

.instant-pricing-eyebrow {
    border-color: var(--line) !important;
    border-radius: 0.375rem !important;
    background: var(--wash) !important;
    color: var(--gold) !important;
}

.instant-pricing-highlights,
.instant-pricing-price-card {
    border: 1px solid var(--line) !important;
    border-radius: 0.5rem !important;
    background: var(--bg-card) !important;
}

.instant-pricing-action {
    border-radius: 0.375rem !important;
}

.instant-pricing-secondary {
    border-color: var(--line) !important;
    background: var(--bg-card) !important;
    color: var(--ink) !important;
}

.instant-pricing-secondary:hover {
    border-color: var(--gold) !important;
    background: var(--wash) !important;
}

.instant-pricing-trigger {
    border: 1px solid var(--line) !important;
    border-radius: 0.5rem !important;
    background: var(--bg-card) !important;
    color: var(--ink) !important;
    box-shadow: none !important;
}

.instant-pricing-trigger:hover {
    border-color: var(--gold) !important;
    color: var(--gold) !important;
}

shader-art,
.hero-tubes-layer,
.hero-dark-overlay,
.hero-shader-overlay {
    display: none !important;
}

@media (max-width: 980px) {
    .premium-page-hero-grid {
        grid-template-columns: 1fr;
    }

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

    .premium-page-hero {
        padding-top: 5rem;
    }
}

@media (max-width: 640px) {
    .premium-page-hero {
        padding: 4rem 1rem;
    }

    .premium-cta-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .premium-cta-row .premium-button {
        width: min(100%, calc(100% - 4.75rem));
        white-space: normal;
        text-align: center;
    }

    .premium-contact-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .premium-visual-card figcaption {
        grid-template-columns: 1fr;
    }

    .premium-visual-card figcaption span + span {
        border-top: 1px solid var(--line);
        border-left: 0;
    }
}

/* Boost Your Site postcode subscription page */
.boost-page {
    background: var(--paper);
}

#boost-form,
#boost-map {
    scroll-margin-top: 7rem;
}

.boost-hero {
    background:
        linear-gradient(125deg, rgba(255, 253, 248, 0.95), rgba(244, 240, 232, 0.9)),
        url("/images/stock/coding-screens.jpg") center / cover no-repeat;
}

html[data-theme="dark"] .boost-hero {
    background:
        linear-gradient(125deg, rgba(8, 10, 50, 0.96), rgba(16, 19, 60, 0.92)),
        url("/images/stock/coding-screens.jpg") center / cover no-repeat;
}

.boost-hero--selector {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: clamp(0.9rem, 1.8vw, 1.35rem);
    padding-bottom: clamp(1.1rem, 2.4vw, 1.75rem);
}

.boost-hero--selector .boost-pricing-strip {
    order: 0;
}

.boost-hero--selector .boost-page-grid {
    order: 1;
}

.boost-hero--selector .boost-hero-strip {
    order: 2;
}

.boost-pricing-strip {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(184, 148, 78, 0.28);
    border-radius: 0.55rem;
    background: rgba(255, 253, 248, 0.9);
    padding: 0.75rem 1rem;
    box-shadow: 0 14px 38px rgba(8, 10, 50, 0.08);
}

.boost-pricing-strip span,
.boost-pricing-strip em {
    color: var(--text-dim);
    font-size: 0.84rem;
    font-style: normal;
    font-weight: 900;
}

.boost-pricing-strip span {
    color: var(--gold);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.boost-pricing-strip strong {
    color: var(--ink);
    font-size: 1.2rem;
    font-weight: 950;
}

html[data-theme="dark"] .boost-pricing-strip {
    border-color: rgba(213, 189, 122, 0.32);
    background: rgba(255, 253, 248, 0.06);
}

.boost-hero-strip {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.5fr);
    gap: clamp(1rem, 2.4vw, 2rem);
    align-items: center;
    border: 1px solid rgba(184, 148, 78, 0.24);
    border-radius: 0.65rem;
    background: rgba(255, 253, 248, 0.84);
    padding: clamp(1rem, 2.6vw, 1.65rem);
    box-shadow: 0 18px 54px rgba(8, 10, 50, 0.08);
}

html[data-theme="dark"] .boost-hero-strip {
    border-color: rgba(255, 253, 248, 0.14);
    background: rgba(255, 253, 248, 0.06);
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
}

.boost-hero-copy .premium-title {
    max-width: 32ch;
    margin-bottom: 1rem !important;
    font-size: clamp(1.8rem, 2.7vw, 2.9rem);
    line-height: 1.04;
}

.boost-hero-copy .premium-page-hero-intro {
    max-width: 52rem;
    margin-bottom: 1rem !important;
}

.boost-hero-summary {
    border: 1px solid var(--line);
    border-radius: 0.5rem;
    background: rgba(255, 253, 248, 0.88);
    padding: clamp(1.1rem, 2.4vw, 1.6rem);
    box-shadow: 0 20px 60px rgba(8, 10, 50, 0.1);
}

html[data-theme="dark"] .boost-hero-summary {
    border-color: rgba(255, 253, 248, 0.14);
    background: rgba(255, 253, 248, 0.08);
}

.boost-hero-summary .premium-card-title {
    font-size: 1rem;
    line-height: 1.25;
}

.boost-summary-card,
.boost-map-card,
.boost-form-card {
    border: 1px solid var(--line);
    border-radius: 0.5rem;
    background: var(--bg-card);
    box-shadow: 0 24px 70px rgba(8, 10, 50, 0.08);
}

.boost-summary-card,
.boost-map-card,
.boost-form-card {
    padding: clamp(1.25rem, 3vw, 2rem);
}

.boost-check-list {
    display: grid;
    gap: 0.8rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.boost-check-list li {
    position: relative;
    padding-left: 1.35rem;
    color: var(--text-dim);
    line-height: 1.6;
}

.boost-check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.64rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: var(--gold);
}

.boost-price-anchor {
    display: inline-grid;
    grid-template-columns: auto auto;
    gap: 0.1rem 0.65rem;
    align-items: end;
    margin: 0 0 1.35rem;
    border: 1px solid rgba(184, 148, 78, 0.36);
    border-radius: 0.65rem;
    background: rgba(255, 253, 248, 0.9);
    color: var(--ink);
    padding: 0.85rem 1.05rem;
    box-shadow: 0 16px 44px rgba(8, 10, 50, 0.08);
}

.boost-price-anchor span,
.boost-price-anchor em {
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.boost-price-anchor strong {
    grid-row: span 2;
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.5rem, 6vw, 4.1rem);
    font-weight: 600;
    line-height: 0.88;
}

.boost-summary-price {
    display: grid;
    gap: 0.2rem;
    border: 1px solid rgba(184, 148, 78, 0.3);
    border-radius: 0.5rem;
    background: var(--wash);
    padding: 0.85rem 1rem;
}

.boost-summary-price span {
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.boost-summary-price strong {
    color: var(--ink);
    font-size: 1.25rem;
    line-height: 1;
}

.boost-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.78fr);
    gap: clamp(1.1rem, 3vw, 2.2rem);
    align-items: start;
}

.boost-left-column {
    min-width: 0;
    position: sticky;
    top: 6.5rem;
}

.boost-map-heading {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.boost-map-heading .premium-section-title {
    font-size: clamp(1.8rem, 4vw, 2.45rem);
}

.boost-selected-count {
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: 0.375rem;
    padding: 0.65rem 0.8rem;
    background: var(--wash);
    color: var(--ink);
    font-size: 0.86rem;
    font-weight: 900;
}

html[data-theme="dark"] .boost-selected-count,
html[data-theme="dark"] .boost-chip,
html[data-theme="dark"] .boost-empty-chip,
html[data-theme="dark"] .boost-summary-price {
    border-color: rgba(255, 253, 248, 0.16);
    background: rgba(255, 253, 248, 0.08);
    color: #fffdf8;
}

.boost-map-wrap {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 0.5rem;
    background: var(--wash);
}

.boost-map {
    min-height: 32rem;
    width: 100%;
}

.boost-map .leaflet-control-container {
    font-family: Arial, Helvetica, sans-serif;
}

.boost-map .leaflet-overlay-pane svg path {
    vector-effect: non-scaling-stroke;
}

.boost-map-loading {
    min-height: 32rem;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    color: var(--text-dim);
    text-align: center;
    font-weight: 800;
}

.boost-map-tooltip {
    border: 1px solid var(--ink) !important;
    border-radius: 0.25rem !important;
    background: var(--ink) !important;
    color: #fffdf8 !important;
    box-shadow: none !important;
    font-weight: 900;
}

.boost-area-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 0.75rem;
    margin-top: 1rem;
}

.boost-page .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    padding: 0;
}

.boost-small-button {
    min-height: 3rem;
    padding-inline: 1rem !important;
}

html[data-theme="dark"] .boost-page .premium-button,
html[data-theme="dark"] .boost-page .boost-submit-button,
html[data-theme="dark"] .boost-page .boost-subscribe-button {
    border-color: var(--gold) !important;
    background: var(--gold) !important;
    color: #080a32 !important;
}

html[data-theme="dark"] .boost-page .premium-button.secondary,
html[data-theme="dark"] .boost-page .boost-small-button {
    border-color: rgba(255, 253, 248, 0.22) !important;
    background: rgba(255, 253, 248, 0.08) !important;
    color: #fffdf8 !important;
}

html[data-theme="dark"] .boost-page .premium-button.secondary:hover,
html[data-theme="dark"] .boost-page .boost-small-button:hover {
    border-color: var(--gold) !important;
    background: rgba(213, 189, 122, 0.16) !important;
    color: #fffdf8 !important;
}

.boost-input {
    width: 100%;
    min-height: 3rem;
    border: 1px solid var(--line);
    border-radius: 0.375rem;
    background: #fffdf8;
    color: #080a32;
    padding: 0.75rem 0.9rem;
    font: inherit;
    box-shadow: none;
}

.boost-input::placeholder {
    color: #697282;
}

.boost-input:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 4px var(--focus-ring);
}

.boost-location-status {
    margin: 0.65rem 0 0;
    color: var(--text-dim);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.45;
}

.boost-selected-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    min-height: 2.3rem;
    margin-top: 1rem;
}

.boost-chip,
.boost-empty-chip {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    border: 1px solid var(--line);
    border-radius: 0.375rem;
    padding: 0.3rem 0.65rem;
    background: var(--wash);
    color: var(--ink);
    font-size: 0.85rem;
    font-weight: 900;
}

.boost-empty-chip {
    color: var(--text-dim);
    font-weight: 700;
}

.boost-area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(4.4rem, 1fr));
    gap: 0.55rem;
    max-height: 19rem;
    margin-top: 1rem;
    overflow: auto;
    padding-right: 0.2rem;
}

.boost-area-option {
    display: block;
}

.boost-area-option input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.boost-area-option span {
    display: grid;
    min-height: 2.75rem;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 0.375rem;
    background: rgba(255, 253, 248, 0.78);
    color: var(--text-main);
    cursor: pointer;
    font-weight: 900;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

html[data-theme="dark"] .boost-area-option span {
    border-color: rgba(255, 253, 248, 0.14);
    background: rgba(255, 253, 248, 0.07);
    color: #fffdf8;
}

.boost-area-option span:hover,
.boost-area-option input:focus-visible + span {
    border-color: var(--gold);
    transform: translateY(-1px);
}

.boost-area-option.is-selected span,
.boost-area-option input:checked + span {
    border-color: var(--ink);
    background: var(--ink);
    color: #fffdf8;
}

html[data-theme="dark"] .boost-area-option.is-selected span,
html[data-theme="dark"] .boost-area-option input:checked + span {
    border-color: var(--gold);
    background: var(--gold);
    color: #080a32;
}

.boost-limit-note,
.boost-security-note {
    margin: 1rem 0 0;
    color: var(--text-dim);
    font-size: 0.92rem;
    line-height: 1.65;
}

.boost-security-note {
    border-left: 3px solid var(--gold);
    padding: 0.85rem 1rem;
    background: var(--wash);
}

.boost-form-card {
    position: static;
}

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

.boost-field {
    display: grid;
    gap: 0.45rem;
    margin-bottom: 1rem;
}

.boost-field > span {
    color: var(--gold);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.boost-field-full {
    grid-column: 1 / -1;
}

.boost-plan-grid,
.boost-check-grid {
    display: grid;
    gap: 0.8rem;
}

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

.boost-plan-card,
.boost-check-option {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 0.5rem;
    background: rgba(255, 253, 248, 0.76);
    padding: 0.95rem;
}

html[data-theme="dark"] .boost-plan-card,
html[data-theme="dark"] .boost-check-option {
    border-color: rgba(255, 253, 248, 0.14);
    background: rgba(255, 253, 248, 0.08);
}

.boost-plan-card input,
.boost-check-option input {
    flex: 0 0 auto;
    margin-top: 0.2rem;
    accent-color: var(--ink);
}

.boost-plan-card strong {
    display: block;
    color: var(--text-main);
    line-height: 1.35;
}

.boost-plan-card small {
    display: block;
    margin-top: 0.25rem;
    color: var(--text-dim);
    font-size: 0.86rem;
    line-height: 1.45;
}

.boost-plan-card em {
    display: inline-flex;
    margin-top: 0.7rem;
    border: 1px solid rgba(184, 148, 78, 0.26);
    border-radius: 0.35rem;
    background: rgba(184, 148, 78, 0.1);
    color: var(--gold);
    padding: 0.35rem 0.5rem;
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 900;
}

.boost-check-option span {
    color: var(--text-main);
    font-weight: 800;
    line-height: 1.4;
}

html[data-theme="dark"] .boost-plan-card strong,
html[data-theme="dark"] .boost-plan-card small,
html[data-theme="dark"] .boost-check-option span {
    color: #fffdf8;
}

html[data-theme="dark"] .boost-plan-card em {
    border-color: rgba(213, 189, 122, 0.34);
    background: rgba(213, 189, 122, 0.12);
    color: var(--gold);
}

.boost-submit-button {
    width: 100%;
    margin-top: 1rem;
}

.boost-payment-panel {
    display: grid;
    gap: 0.9rem;
    margin-top: 1rem;
    border: 1px solid rgba(184, 148, 78, 0.32);
    border-radius: 0.55rem;
    background: rgba(170, 146, 92, 0.1);
    padding: 1rem;
}

.boost-payment-panel span {
    display: block;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.boost-payment-panel strong {
    display: block;
    margin-top: 0.25rem;
    color: var(--text-main);
    font-size: 1.1rem;
    line-height: 1.25;
}

.boost-payment-panel small {
    display: block;
    margin-top: 0.3rem;
    color: var(--text-dim);
    line-height: 1.45;
}

.boost-payment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.boost-payment-badges span {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.78);
    color: var(--ink);
    padding: 0.38rem 0.55rem;
    font-size: 0.72rem;
    letter-spacing: 0;
    text-transform: none;
}

.boost-payment-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
    gap: 0.75rem;
    margin-top: 1rem;
}

.boost-payment-actions .premium-button {
    width: 100%;
}

.boost-payment-actions .boost-submit-button {
    margin-top: 0;
}

.boost-page button[type="submit"].premium-button,
html[data-theme="light"] .boost-page button[type="submit"].premium-button {
    border: 1px solid var(--ink) !important;
    background: var(--ink) !important;
    color: #fffdf8 !important;
    box-shadow: none !important;
}

.boost-page button[type="submit"].premium-button:hover,
html[data-theme="light"] .boost-page button[type="submit"].premium-button:hover {
    border-color: var(--gold) !important;
    background: var(--gold) !important;
    color: #080a32 !important;
}

.boost-page button[type="submit"].premium-button.secondary,
html[data-theme="light"] .boost-page button[type="submit"].premium-button.secondary {
    border-color: var(--line) !important;
    background: rgba(255, 253, 248, 0.72) !important;
    color: var(--ink) !important;
}

.boost-page button[type="submit"].premium-button.secondary:hover,
html[data-theme="light"] .boost-page button[type="submit"].premium-button.secondary:hover {
    border-color: var(--gold) !important;
    background: var(--wash) !important;
    color: var(--ink) !important;
}

html[data-theme="dark"] .boost-payment-panel {
    border-color: rgba(213, 189, 122, 0.34);
    background: rgba(213, 189, 122, 0.09);
}

html[data-theme="dark"] .boost-payment-badges span {
    border-color: rgba(255, 253, 248, 0.16);
    background: rgba(255, 253, 248, 0.08);
    color: #fffdf8;
}

html[data-theme="dark"] .boost-page button[type="submit"].premium-button {
    border-color: var(--gold) !important;
    background: var(--gold) !important;
    color: #080a32 !important;
}

html[data-theme="dark"] .boost-page button[type="submit"].premium-button.secondary {
    border-color: rgba(255, 253, 248, 0.22) !important;
    background: rgba(255, 253, 248, 0.08) !important;
    color: #fffdf8 !important;
}

html[data-theme="dark"] .boost-page button[type="submit"].premium-button.secondary:hover {
    border-color: var(--gold) !important;
    background: rgba(213, 189, 122, 0.16) !important;
    color: #fffdf8 !important;
}

.boost-result-page {
    min-height: 60vh;
    display: grid;
    align-items: center;
}

.boost-result-card {
    border: 1px solid var(--line);
    border-radius: 0.65rem;
    background: var(--bg-card);
    padding: clamp(1.4rem, 4vw, 3rem);
    box-shadow: 0 24px 70px rgba(8, 10, 50, 0.1);
}

.boost-result-summary {
    display: grid;
    grid-template-columns: minmax(8rem, 0.34fr) minmax(0, 1fr);
    gap: 0.65rem 1rem;
    border: 1px solid var(--line);
    border-radius: 0.5rem;
    background: var(--wash);
    padding: 1rem;
}

.boost-result-summary span {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.boost-result-summary strong {
    color: var(--text-main);
    overflow-wrap: anywhere;
}

.boost-mini-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
}

.boost-mini-list span {
    border: 1px solid var(--line);
    border-radius: 0.375rem;
    padding: 0.75rem;
    background: rgba(255, 253, 248, 0.72);
    color: var(--text-main);
    font-weight: 800;
    line-height: 1.35;
}

@media (max-width: 1080px) {
    .boost-hero-strip {
        grid-template-columns: 1fr;
    }

    .boost-page-grid {
        grid-template-columns: 1fr;
    }

    .boost-form-card {
        position: static;
    }

    .boost-left-column {
        position: static;
    }
}

@media (max-width: 720px) {
    #boost-form,
    #boost-map {
        scroll-margin-top: 6.5rem;
    }

    .boost-map-heading,
    .boost-area-toolbar {
        grid-template-columns: 1fr;
        display: grid;
    }

    .boost-map {
        min-height: 24rem;
    }

    .boost-map-loading {
        min-height: 24rem;
    }

    .boost-form-grid,
    .boost-plan-grid,
    .boost-mini-list,
    .boost-payment-actions,
    .boost-result-summary {
        grid-template-columns: 1fr;
    }

    .boost-price-anchor {
        width: 100%;
    }
}

/* Conversion architecture: CTA, proof, pricing, process, objections */
.premium-hero-proof-row,
.premium-hero-urgency-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;
}

.premium-page-hero .premium-hero-proof-row {
    margin: 1.35rem 0 1.45rem;
}

.premium-hero-proof-row span,
.premium-hero-urgency-row span,
.conversion-mini-note,
.footer-trust-strip span {
    display: inline-flex;
    align-items: center;
    min-height: 2.1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.72);
    color: var(--text-main);
    padding: 0.45rem 0.75rem;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.2;
}

.premium-hero-urgency-row span,
.conversion-mini-note {
    border-color: rgba(170, 146, 92, 0.34);
    background: rgba(170, 146, 92, 0.12);
    color: var(--ink);
}

.conversion-section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: end;
}

.conversion-proof-meter {
    display: grid;
    gap: 0.65rem;
    min-width: min(100%, 24rem);
}

.conversion-proof-meter span {
    border-left: 4px solid var(--gold);
    border-radius: 0.5rem;
    background: var(--bg-card);
    color: var(--text-main);
    padding: 0.85rem 1rem;
    font-weight: 900;
    box-shadow: 0 14px 36px rgba(8, 10, 50, 0.06);
}

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

.conversion-showcase-card {
    overflow: hidden;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 0.5rem;
    background: var(--bg-card);
    box-shadow: 0 20px 54px rgba(8, 10, 50, 0.08);
}

.conversion-showcase-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.conversion-showcase-card figcaption {
    border-top: 1px solid var(--line);
    color: var(--text-main);
    padding: 0.9rem 1rem;
    font-size: 0.86rem;
    font-weight: 900;
}

.conversion-proof-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: center;
}

.conversion-price-stack {
    display: grid;
    gap: 1rem;
}

.conversion-price-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
}

.conversion-process-grid,
.conversion-objection-grid,
.conversion-cluster-grid {
    display: grid;
    gap: 1rem;
}

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

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

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

.conversion-cluster-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.conversion-cluster-list span {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--wash);
    color: var(--text-main);
    padding: 0.45rem 0.7rem;
    font-size: 0.84rem;
    font-weight: 800;
}

.sticky-lead-cta {
    position: fixed;
    right: 12rem;
    bottom: max(1rem, env(safe-area-inset-bottom));
    z-index: 80;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    width: min(calc(100% - 13rem), 44rem);
    border: 1px solid rgba(255, 253, 248, 0.14);
    border-radius: 0.5rem;
    background: rgba(8, 10, 50, 0.96);
    color: #fffdf8;
    padding: 0.8rem;
    box-shadow: 0 24px 70px rgba(8, 10, 50, 0.28);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.sticky-lead-cta.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(1rem);
    visibility: hidden;
}

.sticky-lead-cta__copy {
    display: grid;
    gap: 0.15rem;
    min-width: 0;
}

.sticky-lead-cta__copy strong {
    color: #fffdf8;
    font-size: 0.95rem;
}

.sticky-lead-cta__copy span {
    color: rgba(255, 253, 248, 0.72);
    font-size: 0.82rem;
}

.sticky-lead-cta__actions {
    display: flex;
    gap: 0.5rem;
}

.sticky-lead-cta__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.65rem;
    border: 1px solid var(--gold);
    border-radius: 0.375rem;
    background: var(--gold);
    color: var(--ink);
    padding: 0.55rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}

.sticky-lead-cta__actions a + a {
    border-color: rgba(255, 253, 248, 0.22);
    background: transparent;
    color: #fffdf8;
}

#instant-pricing-popup.hidden {
    display: none !important;
}

#instant-pricing-popup.flex {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 4vw, 2.5rem);
}

.instant-pricing-panel {
    width: min(100%, 42rem);
    border: 1px solid rgba(255, 253, 248, 0.14);
    border-radius: 1.5rem;
    overflow: hidden;
}

.instant-pricing-body {
    padding: clamp(1.25rem, 4vw, 2.5rem);
}

#instant-pricing-close {
    position: absolute;
    right: 0.75rem;
    top: 0.75rem;
    display: inline-flex;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 253, 248, 0.18);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.08);
    color: #fffdf8;
    font-size: 1.25rem;
}

.footer-cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 253, 248, 0.14);
    border-radius: 0.5rem;
    background: rgba(255, 253, 248, 0.06);
    padding: clamp(1.25rem, 3vw, 2rem);
}

.footer-cta-panel h3 {
    margin: 0;
    color: #fffdf8;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.05;
    text-transform: uppercase;
}

.footer-cta-panel p {
    max-width: 44rem;
    color: rgba(255, 253, 248, 0.72);
    line-height: 1.7;
}

.footer-trust-strip,
.footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.footer-trust-strip span {
    border-color: rgba(255, 253, 248, 0.16);
    background: rgba(255, 253, 248, 0.08);
    color: rgba(255, 253, 248, 0.86);
}

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

html[data-theme="dark"] .premium-hero-proof-row span,
html[data-theme="dark"] .premium-hero-urgency-row span,
html[data-theme="dark"] .conversion-mini-note,
html[data-theme="dark"] .conversion-cluster-list span {
    border-color: rgba(255, 253, 248, 0.16);
    background: rgba(255, 253, 248, 0.08);
    color: #fffdf8;
}

@media (max-width: 980px) {
    .conversion-section-head,
    .conversion-proof-cta,
    .conversion-price-card,
    .footer-cta-panel,
    .sticky-lead-cta {
        grid-template-columns: 1fr;
    }

    .conversion-showcase-grid,
    .conversion-process-grid,
    .conversion-objection-grid,
    .conversion-cluster-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .sticky-lead-cta {
        left: 1rem;
        right: 12rem;
        width: auto;
    }
}

@media (max-width: 640px) {
    body {
        padding-bottom: calc(7.25rem + env(safe-area-inset-bottom));
    }

    .conversion-showcase-grid,
    .conversion-process-grid,
    .conversion-objection-grid,
    .conversion-cluster-grid {
        grid-template-columns: 1fr;
    }

    .sticky-lead-cta {
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 99950;
        gap: 0.5rem;
        width: 100%;
        border-right: 0;
        border-bottom: 0;
        border-left: 0;
        border-radius: 1.05rem 1.05rem 0 0;
        padding: 0.68rem max(0.9rem, env(safe-area-inset-right)) calc(0.72rem + env(safe-area-inset-bottom)) max(0.9rem, env(safe-area-inset-left));
        box-shadow: 0 -18px 46px rgba(8, 10, 50, 0.28);
        transform: translateY(0);
    }

    .sticky-lead-cta.is-hidden {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        visibility: visible;
    }

    .sticky-lead-cta__actions {
        width: 100%;
    }

    .sticky-lead-cta__copy {
        gap: 0;
    }

    .sticky-lead-cta__copy strong {
        font-size: 0.83rem;
        line-height: 1.15;
    }

    .sticky-lead-cta__copy span {
        display: none;
    }

    .sticky-lead-cta__actions a {
        min-height: 2.55rem;
        border-radius: 0.75rem;
        font-size: 0.78rem;
    }

    .sticky-lead-cta__actions a,
    .footer-cta-actions .premium-button {
        flex: 1 1 0;
    }
}

/* Minimal utility compatibility for Blade templates that use Tailwind-style classes. */
.hidden {
    display: none !important;
}

.block {
    display: block;
}

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

.flex {
    display: flex;
}

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

.grid {
    display: grid;
}

.flex-col {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-grow {
    flex-grow: 1;
}

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

.items-start {
    align-items: flex-start;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: flex-end;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.sticky {
    position: sticky;
}

.inset-0 {
    inset: 0;
}

.top-0 {
    top: 0;
}

.right-0 {
    right: 0;
}

.z-50 {
    z-index: 50;
}

.w-full {
    width: 100%;
}

.w-5 {
    width: 1.25rem;
}

.w-7 {
    width: 1.75rem;
}

.h-full {
    height: 100%;
}

.h-5 {
    height: 1.25rem;
}

.h-0\.5 {
    height: 0.125rem;
}

.bg-current {
    background-color: currentColor;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-7xl {
    max-width: 80rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-y-auto {
    overflow-y: auto;
}

.text-center {
    text-align: center;
}

.text-sm {
    font-size: 0.875rem;
}

.text-base {
    font-size: 1rem;
}

.text-lg {
    font-size: 1.125rem;
}

.font-semibold {
    font-weight: 700;
}

.font-bold {
    font-weight: 800;
}

.transition,
.transition-all,
.transition-colors,
.transition-transform,
.transition-opacity {
    transition-duration: 0.25s;
    transition-property: all;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-5 {
    gap: 1.25rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-10 {
    gap: 2.5rem;
}

.p-2 {
    padding: 0.5rem;
}

.p-4 {
    padding: 1rem;
}

.p-5 {
    padding: 1.25rem;
}

.p-8 {
    padding: 2rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-2\.5 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.pt-4 {
    padding-top: 1rem;
}

.pt-6 {
    padding-top: 1.5rem;
}

.pt-8 {
    padding-top: 2rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.pl-4 {
    padding-left: 1rem;
}

.rounded-md {
    border-radius: 0.375rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.space-y-1\.5 > * + * {
    margin-top: 0.375rem;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.space-y-3 > * + * {
    margin-top: 0.75rem;
}

.border-t {
    border-top: 1px solid var(--border);
}

.border-l {
    border-left: 1px solid var(--border);
}

header nav ul,
#mobile-menu ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

header a,
header button,
#mobile-menu a,
#mobile-menu button {
    color: var(--text-main);
}

header button,
#mobile-menu button {
    background: transparent;
    border: 0;
    cursor: pointer;
}

.nav-dropdown-shell {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 1rem;
    z-index: 60;
}

.nav-dropdown-panel {
    min-width: min(44rem, 82vw);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    padding: 1.25rem;
}

.nav-dropdown-summary {
    grid-column: 1 / -1;
}

#mobile-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

#mobile-menu {
    max-width: 88vw;
    overflow-y: auto;
    border-left: 1px solid var(--border);
}

#mobile-menu > div {
    min-height: 100%;
    padding: 2rem;
}

#mobile-menu nav {
    padding: 0;
}

#mobile-menu.menu-open {
    transform: translateX(0) !important;
}

#burger-button {
    min-width: 2.75rem;
    min-height: 2.75rem;
    align-items: center;
    justify-content: center;
}

#burger-button .burger-line {
    display: block;
    width: 1.75rem;
    height: 0.125rem;
    border-radius: 999px;
    background: currentColor;
}

#mobile-menu .nav-dropdown-shell {
    display: none !important;
}

#mobile-menu .md\:hidden {
    display: block;
}

.menu-lock {
    overflow: hidden;
}

@media (min-width: 768px) {
    .md\:flex {
        display: flex !important;
    }

    .md\:hidden {
        display: none !important;
    }

    .md\:block {
        display: block !important;
    }

    .md\:flex-row {
        flex-direction: row;
    }

    .md\:items-center {
        align-items: center;
    }

    .group:hover > .nav-dropdown-shell,
    .group:focus-within > .nav-dropdown-shell {
        display: block !important;
    }
}

@media (max-width: 767px) {
    header nav {
        gap: 1rem;
        padding: 0.85rem 1rem;
    }

    .premium-topline {
        padding: 0.7rem 1rem !important;
    }

    .premium-topline > div {
        gap: 0.65rem;
    }

    .premium-topline .flex.flex-wrap {
        justify-content: center;
        gap: 0.85rem;
    }

    .premium-topline a[href^="mailto:"],
    .premium-topline .text-sm.opacity-80,
    .premium-topline #theme-toggle {
        display: none;
    }

    header .site-logo {
        width: clamp(8rem, 38vw, 10rem);
    }

    header .site-logo-link {
        flex: 1 1 auto;
        min-width: 0;
    }

    header nav > .md\:hidden {
        flex: 0 0 auto;
        margin-left: auto;
        gap: 0.5rem;
    }

    header nav > .md\:hidden .instant-pricing-trigger {
        display: none;
    }

    header nav > .md\:hidden .neo-button {
        padding: 0.65rem 0.9rem;
        font-size: 0.82rem;
    }

    header .hidden.md\:flex {
        display: none !important;
    }

    header .md\:hidden {
        display: flex;
    }

    .premium-topline > div {
        justify-content: center;
        text-align: center;
    }

    #mobile-menu {
        width: min(22rem, 88vw);
    }

    #mobile-menu nav > ul {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }

    #mobile-menu nav a {
        line-height: 1.25;
    }

    #mobile-menu .md\:hidden {
        margin-top: 0.9rem;
        padding-left: 1rem;
        border-left: 1px solid var(--border);
    }
}

/* Premium dropdown navigation */
header .nav-dropdown-shell {
    padding-top: 0.95rem !important;
    z-index: 80 !important;
}

header .nav-dropdown-shell--mega {
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: min(52rem, calc(100vw - 2rem)) !important;
}

header .nav-dropdown-shell--simple {
    left: 0 !important;
    transform: none !important;
    width: min(18rem, calc(100vw - 2rem)) !important;
}

header .nav-dropdown-panel {
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0.9rem !important;
    border: 1px solid rgba(184, 148, 78, 0.34) !important;
    border-radius: 0.75rem !important;
    background:
        linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(244, 238, 227, 0.96)) !important;
    box-shadow:
        0 28px 70px rgba(8, 10, 50, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
}

header .nav-dropdown-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(184, 148, 78, 0.16), transparent 32%, rgba(255, 112, 158, 0.09));
}

header .nav-dropdown-panel--mega {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.55rem !important;
}

header .nav-dropdown-panel--simple {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.5rem !important;
}

header .nav-dropdown-panel > li {
    position: relative !important;
    z-index: 1 !important;
}

header .nav-dropdown-summary {
    grid-column: 1 / -1 !important;
    margin: 0 0 0.35rem !important;
    padding: 1rem !important;
    border: 1px solid rgba(8, 10, 50, 0.1) !important;
    border-radius: 0.65rem !important;
    background: linear-gradient(135deg, rgba(8, 10, 50, 0.96), rgba(18, 24, 70, 0.94)) !important;
}

header .nav-dropdown-title {
    color: #fffdf8 !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 1.15rem !important;
    letter-spacing: 0 !important;
    text-decoration: none !important;
}

header .nav-dropdown-copy {
    max-width: 38rem !important;
    color: rgba(255, 253, 248, 0.72) !important;
    line-height: 1.5 !important;
}

header .nav-dropdown-link {
    display: flex !important;
    align-items: center !important;
    min-height: 3.15rem !important;
    padding: 0.85rem 0.95rem 0.85rem 2.1rem !important;
    border: 1px solid rgba(8, 10, 50, 0.08) !important;
    border-radius: 0.55rem !important;
    background: rgba(255, 253, 248, 0.72) !important;
    color: var(--ink) !important;
    font-weight: 850 !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
    box-shadow: 0 10px 24px rgba(8, 10, 50, 0.045) !important;
}

header .nav-dropdown-link::before {
    content: "";
    position: absolute;
    left: 0.95rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 0.25rem rgba(184, 148, 78, 0.12);
}

header .nav-dropdown-link:hover,
header .nav-dropdown-link.is-active {
    transform: translateY(-1px) !important;
    border-color: rgba(184, 148, 78, 0.52) !important;
    background: rgba(255, 255, 255, 0.96) !important;
    color: var(--ink) !important;
    box-shadow: 0 16px 30px rgba(8, 10, 50, 0.1) !important;
}

html[data-theme="dark"] header .nav-dropdown-panel {
    border-color: rgba(184, 148, 78, 0.32) !important;
    background:
        linear-gradient(145deg, rgba(8, 10, 50, 0.98), rgba(16, 22, 53, 0.96)) !important;
    box-shadow: 0 28px 76px rgba(0, 0, 0, 0.42) !important;
}

html[data-theme="dark"] header .nav-dropdown-link {
    border-color: rgba(255, 253, 248, 0.1) !important;
    background: rgba(255, 253, 248, 0.055) !important;
    color: #fffdf8 !important;
}

html[data-theme="dark"] header .nav-dropdown-link:hover,
html[data-theme="dark"] header .nav-dropdown-link.is-active {
    border-color: rgba(184, 148, 78, 0.5) !important;
    background: rgba(255, 253, 248, 0.1) !important;
    color: var(--gold) !important;
}

@media (min-width: 1100px) {
    .conversion-showcase-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    header .nav-dropdown-shell {
        display: none !important;
    }

    #mobile-menu .md\:hidden {
        display: grid !important;
        gap: 0.7rem !important;
    }

    .weekly-offer-strip .weekly-offer-service,
    .weekly-offer-strip .weekly-offer-copy,
    .weekly-offer-strip .weekly-offer-divider,
    .weekly-offer-strip .weekly-offer-link {
        display: none !important;
    }

    .weekly-offer-strip .weekly-offer-track {
        animation: none !important;
        width: 100% !important;
        padding-left: 0 !important;
    }

    .weekly-offer-strip .weekly-offer-segment {
        width: 100% !important;
        justify-content: center !important;
        padding: 0.72rem 1rem !important;
        white-space: normal !important;
    }
}

/* Dark bands must win over the global light-theme heading reset. */
html[data-theme="light"] .premium-dark .heading,
html[data-theme="light"] .premium-dark .neo-heading,
html[data-theme="light"] .premium-dark .premium-title,
html[data-theme="light"] .premium-dark .premium-section-title,
html[data-theme="light"] .premium-dark .premium-card-title,
.premium-dark .heading,
.premium-dark .neo-heading,
.premium-dark .premium-title,
.premium-dark .premium-section-title,
.premium-dark .premium-card-title {
    color: #fffdf8 !important;
    background: none !important;
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    -webkit-text-fill-color: #fffdf8 !important;
    text-shadow: none !important;
}

html[data-theme="light"] .premium-dark .premium-copy,
html[data-theme="light"] .premium-dark .premium-card-copy,
.premium-dark .premium-copy,
.premium-dark .premium-card-copy {
    color: rgba(255, 253, 248, 0.78) !important;
    -webkit-text-fill-color: rgba(255, 253, 248, 0.78) !important;
}

/* Service hero and CTA polish */
.nav-boost-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.9rem;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff6f91 0%, #ffb86b 48%, #65e4d4 100%);
    color: #080a32 !important;
    padding: 0.78rem 1.05rem;
    font-size: 0.86rem;
    font-weight: 950;
    letter-spacing: 0.02em;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 14px 34px rgba(255, 111, 145, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.32) inset;
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.nav-boost-link:hover {
    color: #080a32 !important;
    filter: saturate(1.1);
    transform: translateY(-1px);
    box-shadow: 0 18px 42px rgba(255, 111, 145, 0.34), 0 0 0 1px rgba(255, 255, 255, 0.42) inset;
}

.nav-boost-link--mobile {
    width: 100%;
    min-height: 3.35rem;
    border-radius: 0.75rem;
    font-size: 1rem;
}

.premium-page-hero {
    isolation: isolate;
    min-height: min(48rem, calc(100vh - 4rem));
    display: flex;
    align-items: center;
    background:
        linear-gradient(105deg, rgba(255, 253, 248, 0.94) 0%, rgba(255, 253, 248, 0.86) 48%, rgba(244, 240, 232, 0.78) 100%),
        url("/images/stock/code-screen.jpg") center / cover no-repeat,
        var(--paper);
}

html[data-theme="dark"] .premium-page-hero {
    background:
        linear-gradient(105deg, rgba(8, 10, 50, 0.98) 0%, rgba(12, 16, 58, 0.92) 48%, rgba(6, 34, 48, 0.86) 100%),
        url("/images/stock/code-screen.jpg") center / cover no-repeat,
        #080a32;
    border-bottom-color: rgba(255, 253, 248, 0.14);
}

html[data-theme="dark"] .premium-page-hero::before {
    background:
        linear-gradient(90deg, rgba(101, 228, 212, 0.12) 1px, transparent 1px),
        linear-gradient(180deg, rgba(213, 189, 122, 0.10) 1px, transparent 1px);
    opacity: 0.58;
}

.premium-page-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 0.35rem;
    pointer-events: none;
    background: linear-gradient(90deg, #ff6f91, #ffb86b, #65e4d4);
    z-index: 0;
}

.premium-page-hero-grid {
    align-items: center;
}

.premium-page-hero .premium-title {
    max-width: 52rem;
    font-size: clamp(3rem, 5.1vw, 5.8rem);
    line-height: 0.94;
}

html[data-theme="dark"] .premium-page-hero .premium-title,
html[data-theme="dark"] .premium-page-hero .premium-section-title,
html[data-theme="dark"] .premium-page-hero .neo-heading {
    color: #fffdf8 !important;
    -webkit-text-fill-color: #fffdf8 !important;
}

html[data-theme="dark"] .premium-page-hero .premium-copy,
html[data-theme="dark"] .premium-page-hero .neo-subheading,
html[data-theme="dark"] .premium-page-hero .premium-contact-row,
html[data-theme="dark"] .premium-page-hero .premium-contact-row a,
html[data-theme="dark"] .premium-page-hero .text-\[var\(--text-dim\)\] {
    color: rgba(255, 253, 248, 0.84) !important;
    -webkit-text-fill-color: rgba(255, 253, 248, 0.84) !important;
}

.premium-page-hero .premium-button,
.premium-page-hero .neo-button,
.sticky-lead-cta__actions a:first-child,
.footer-cta-actions .premium-button:first-child {
    border: 0 !important;
    border-radius: 0.75rem !important;
    background: linear-gradient(135deg, #ff6f91 0%, #ffb86b 52%, #ffd36e 100%) !important;
    color: #080a32 !important;
    box-shadow: 0 18px 38px rgba(255, 111, 145, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.34) inset !important;
}

.premium-page-hero .premium-button:hover,
.premium-page-hero .neo-button:hover,
.sticky-lead-cta__actions a:first-child:hover,
.footer-cta-actions .premium-button:first-child:hover {
    transform: translateY(-2px);
    filter: saturate(1.12);
    box-shadow: 0 22px 52px rgba(255, 111, 145, 0.34), 0 0 0 1px rgba(255, 255, 255, 0.46) inset !important;
}

.premium-page-hero .premium-button.secondary {
    background: linear-gradient(135deg, #65e4d4 0%, #8fb9ff 100%) !important;
    color: #080a32 !important;
}

.premium-page-hero .premium-hero-proof-row span,
.premium-page-hero .premium-hero-urgency-row span,
.premium-page-hero .premium-hero-outcomes span {
    border-color: rgba(8, 10, 50, 0.12);
    background: rgba(255, 253, 248, 0.88);
    color: #080a32;
}

html[data-theme="dark"] .premium-page-hero .premium-hero-proof-row span,
html[data-theme="dark"] .premium-page-hero .premium-hero-urgency-row span,
html[data-theme="dark"] .premium-page-hero .premium-hero-outcomes span {
    border-color: rgba(255, 253, 248, 0.18) !important;
    background: rgba(255, 253, 248, 0.10) !important;
    color: #fffdf8 !important;
}

.premium-hero .premium-inline-actions,
.premium-page-hero .premium-contact-row {
    gap: 0.65rem;
    align-items: center;
    margin-top: 1rem;
}

.premium-hero .premium-inline-actions a,
.premium-page-hero .premium-contact-row a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.45rem;
    border: 0 !important;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 111, 145, 0.18), rgba(101, 228, 212, 0.24)) !important;
    color: #080a32 !important;
    padding: 0.58rem 0.9rem;
    font-size: 0.86rem;
    font-weight: 950;
    letter-spacing: 0.01em;
    text-decoration: none !important;
    box-shadow: 0 14px 30px rgba(8, 10, 50, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.44) inset;
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.premium-hero .premium-inline-actions a:hover,
.premium-page-hero .premium-contact-row a:hover {
    color: #080a32 !important;
    filter: saturate(1.12);
    transform: translateY(-1px);
    box-shadow: 0 18px 42px rgba(255, 111, 145, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.56) inset;
}

html[data-theme="dark"] .premium-hero .premium-inline-actions a,
html[data-theme="dark"] .premium-page-hero .premium-contact-row a {
    background: linear-gradient(135deg, rgba(255, 111, 145, 0.88), rgba(255, 184, 107, 0.92) 48%, rgba(101, 228, 212, 0.86)) !important;
    color: #080a32 !important;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.22) inset;
    -webkit-text-fill-color: #080a32 !important;
}

.premium-hero .premium-hero-urgency-row,
.premium-page-hero .premium-hero-urgency-row {
    gap: 0.7rem;
    margin-top: 1rem;
}

.premium-hero .premium-hero-urgency-row span,
.premium-page-hero .premium-hero-urgency-row span {
    min-height: 2.35rem;
    border: 0 !important;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 211, 110, 0.38), rgba(255, 253, 248, 0.92)) !important;
    color: #080a32 !important;
    padding: 0.58rem 0.95rem;
    font-size: 0.84rem;
    font-weight: 950;
    box-shadow: 0 14px 30px rgba(170, 146, 92, 0.14), 0 0 0 1px rgba(255, 255, 255, 0.44) inset;
}

html[data-theme="dark"] .premium-hero .premium-hero-urgency-row span,
html[data-theme="dark"] .premium-page-hero .premium-hero-urgency-row span {
    background: linear-gradient(135deg, rgba(255, 211, 110, 0.95), rgba(101, 228, 212, 0.88)) !important;
    color: #080a32 !important;
    -webkit-text-fill-color: #080a32 !important;
}

.premium-page-hero .premium-form-card {
    border-radius: 1.25rem !important;
    background: rgba(255, 253, 248, 0.88) !important;
    box-shadow: 0 34px 96px rgba(8, 10, 50, 0.18) !important;
}

html[data-theme="dark"] .premium-page-hero .premium-form-card {
    border-color: rgba(255, 253, 248, 0.18) !important;
    background: rgba(8, 10, 50, 0.78) !important;
    box-shadow: 0 34px 96px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(101, 228, 212, 0.10) inset !important;
    backdrop-filter: blur(10px) saturate(1.08) !important;
    -webkit-backdrop-filter: blur(10px) saturate(1.08) !important;
}

html[data-theme="dark"] .premium-page-hero .neo-input,
html[data-theme="dark"] .premium-page-hero .neo-select,
html[data-theme="dark"] .premium-page-hero .neo-textarea,
html[data-theme="dark"] .premium-page-hero .neo-checkbox-row {
    border-color: rgba(255, 253, 248, 0.18) !important;
    background: rgba(255, 253, 248, 0.10) !important;
    color: #fffdf8 !important;
}

html[data-theme="dark"] .premium-page-hero .neo-input::placeholder,
html[data-theme="dark"] .premium-page-hero .neo-textarea::placeholder {
    color: rgba(255, 253, 248, 0.52);
}

html[data-theme="dark"] .premium-page-hero .neo-select option {
    color: #080a32;
}

html[data-theme="dark"] .premium-page-hero .neo-label {
    color: var(--gold) !important;
}

@media (max-width: 767px) {
    .premium-page-hero {
        min-height: 0;
    }

    .premium-page-hero .premium-title {
        font-size: clamp(2.25rem, 11vw, 3.6rem);
    }
}
