/* ============================================
   LOOMREACH OFFER V2 — Inbound Revenue System
   Premium dark theme with colour depth
   ============================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after {
    box-sizing: border-box;
}

:root {
    --lr-bg: #0a0b0f;
    --lr-bg-alt: #0f1117;
    --lr-bg-card: #13151d;
    --lr-border: rgba(148, 163, 184, 0.1);
    --lr-border-hover: rgba(148, 163, 184, 0.2);
    --lr-text: #c8d0da;
    --lr-text-muted: #8a95a5;
    --lr-text-heading: #f1f3f7;
    --lr-accent: #6366f1;
    --lr-accent-light: #818cf8;
    --lr-accent-soft: rgba(99, 102, 241, 0.12);
    --lr-purple: #a855f7;
    --lr-green: #22c55e;
    --lr-green-soft: rgba(34, 197, 94, 0.12);
    --lr-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --lr-gradient-subtle: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(168,85,247,0.08));
    --lr-glow: 0 0 40px rgba(99, 102, 241, 0.15);
    --lr-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --lr-font-display: 'Space Grotesk', var(--lr-font);
    --lr-radius: 10px;
    --lr-radius-lg: 16px;
    --lr-max-width: 1120px;
    --lr-narrow: 720px;
    --lr-transition: 0.25s ease;
}

body {
    font-family: var(--lr-font);
    background: var(--lr-bg);
    color: var(--lr-text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ---- Container ---- */
.lr-container {
    max-width: var(--lr-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.lr-container-narrow {
    max-width: var(--lr-narrow);
}

/* ---- Header Overrides ---- */
.site-header {
    background: rgba(10, 11, 15, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--lr-border);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 72px;
}

.header-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--lr-text-heading);
    font-family: var(--lr-font-display);
    font-weight: 600;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.site-logo svg {
    color: var(--lr-accent-light);
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    color: var(--lr-text-secondary, #b0b8c5);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color var(--lr-transition), background var(--lr-transition);
    white-space: nowrap;
    padding: 6px 14px;
    border-radius: 6px;
    background: transparent;
}

.main-nav a:hover {
    color: var(--lr-text-heading);
    background: rgba(255, 255, 255, 0.06);
}

.main-nav a.active {
    color: var(--lr-text-heading);
    background: rgba(99, 102, 241, 0.1);
}

.main-nav .mobile-cta {
    display: none;
}

/* Nav WP menu items — remove dots */
.main-nav li {
    list-style: none !important;
}

.main-nav > li + li::before,
.main-nav .menu-item + .menu-item::before {
    display: none !important;
    content: none !important;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

/* Green CTA — specificity must beat header.css .header-cta .btn */
.header-cta .btn.btn-book-call,
.header-cta .btn-book-call {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff !important;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all var(--lr-transition);
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(34, 197, 94, 0.3), 0 0 32px rgba(34, 197, 94, 0.12);
}

.header-cta .btn.btn-book-call:hover,
.header-cta .btn-book-call:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.45), 0 0 48px rgba(34, 197, 94, 0.18);
}

/* Hide language dropdown */
.lang-dropdown {
    display: none !important;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--lr-text-heading);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO — radial glow + gradient headline
   ============================================ */
.lr-hero {
    position: relative;
    padding: 160px 0 100px;
    background: var(--lr-bg);
    text-align: center;
    overflow: hidden;
}

/* Radial glow behind hero */
.lr-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(99, 102, 241, 0.12) 0%, rgba(168, 85, 247, 0.06) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Subtle grid pattern */
.lr-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.lr-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.lr-hero-headline {
    font-family: var(--lr-font-display);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--lr-text-heading);
    margin: 0 0 24px;
    letter-spacing: -0.02em;
}

/* Gradient highlight on the key phrase */
.lr-hero-headline .lr-gradient-text {
    background: var(--lr-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lr-hero-sub {
    font-size: 1.125rem;
    color: var(--lr-text-muted);
    line-height: 1.7;
    margin: 0 0 40px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.lr-hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- Buttons ---- */
.lr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all var(--lr-transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.lr-btn-primary {
    background: var(--lr-gradient);
    color: #fff;
    box-shadow: 0 2px 16px rgba(99, 102, 241, 0.3);
}

.lr-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.4);
}

.lr-btn-secondary {
    background: transparent;
    color: var(--lr-text-heading);
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.lr-btn-secondary:hover {
    border-color: rgba(99, 102, 241, 0.5);
    background: rgba(99, 102, 241, 0.06);
}

.lr-btn-full {
    width: 100%;
}

/* Green WhatsApp-style CTA */
.lr-btn-green {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    box-shadow: 0 2px 16px rgba(34, 197, 94, 0.35), 0 0 40px rgba(34, 197, 94, 0.15);
}

.lr-btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.45), 0 0 60px rgba(34, 197, 94, 0.2);
}

.lr-btn-lg {
    padding: 18px 40px;
    font-size: 1.0625rem;
    border-radius: 12px;
}

/* ---- Sections ---- */
.lr-section {
    position: relative;
    padding: 72px 0;
}

.lr-section-alt {
    background: var(--lr-bg-alt);
}

/* Section transition — removed decorative dividers, using clean bg transitions */
.lr-section-alt::before {
    display: none;
}

.lr-section-title {
    font-family: var(--lr-font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--lr-text-heading);
    margin: 0 0 40px;
    text-align: center;
    letter-spacing: -0.015em;
    line-height: 1.2;
}

/* ---- Prose (Problem section) ---- */
.lr-prose p {
    font-size: 1.0625rem;
    color: var(--lr-text);
    line-height: 1.8;
    margin: 0 0 20px;
    text-align: center;
}

.lr-prose p:last-child {
    margin-bottom: 0;
    color: #ef4444;
    font-weight: 600;
}

/* ---- Steps Grid (Solution Overview) ---- */
.lr-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lr-step-card {
    background: var(--lr-bg-card);
    border: 1px solid var(--lr-border);
    border-radius: var(--lr-radius-lg);
    padding: 36px 28px;
    transition: all var(--lr-transition);
    position: relative;
    overflow: hidden;
}

/* Top gradient accent on cards */
.lr-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--lr-gradient);
    opacity: 0;
    transition: opacity var(--lr-transition);
}

.lr-step-card:hover {
    border-color: rgba(99, 102, 241, 0.25);
    box-shadow: 0 4px 24px rgba(99, 102, 241, 0.08);
}

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

.lr-step-number {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--lr-gradient-subtle);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: var(--lr-accent-light);
    font-weight: 700;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.lr-step-title {
    font-family: var(--lr-font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--lr-text-heading);
    margin: 0 0 12px;
}

.lr-step-desc {
    font-size: 0.9375rem;
    color: var(--lr-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ---- Process (How It Works) ---- */
.lr-process {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

/* Vertical accent line */
.lr-process::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 36px;
    bottom: 36px;
    width: 2px;
    background: linear-gradient(to bottom, var(--lr-accent), var(--lr-purple), transparent);
    opacity: 0.2;
}

.lr-process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--lr-border);
    position: relative;
    z-index: 1;
}

.lr-process-step:last-child {
    border-bottom: none;
}

.lr-process-marker {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--lr-accent-soft);
    border: 1px solid rgba(99, 102, 241, 0.35);
    color: var(--lr-accent-light);
    font-weight: 600;
    font-size: 0.8125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.lr-process-step p {
    font-size: 1rem;
    color: var(--lr-text);
    margin: 0;
    line-height: 1.7;
}

/* ---- Audience Grid (Who It's For) ---- */
.lr-audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto 32px;
}

.lr-audience-card {
    background: var(--lr-bg-card);
    border: 1px solid var(--lr-border);
    border-radius: var(--lr-radius-lg);
    padding: 36px 28px;
    transition: all var(--lr-transition);
    position: relative;
    overflow: hidden;
}

/* Subtle left accent border */
.lr-audience-card::before {
    content: '';
    position: absolute;
    top: 16px;
    bottom: 16px;
    left: 0;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: var(--lr-gradient);
    opacity: 0.4;
    transition: opacity var(--lr-transition);
}

.lr-audience-card:hover {
    border-color: rgba(99, 102, 241, 0.2);
}

.lr-audience-card:hover::before {
    opacity: 0.8;
}

.lr-audience-card h3 {
    font-family: var(--lr-font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--lr-text-heading);
    margin: 0 0 10px;
}

.lr-audience-card p {
    font-size: 0.9375rem;
    color: var(--lr-text-muted);
    margin: 0;
    line-height: 1.65;
}

.lr-audience-note {
    text-align: center;
    font-size: 1rem;
    color: var(--lr-accent-light);
    font-weight: 500;
    margin: 0;
    padding: 16px 24px;
    background: var(--lr-accent-soft);
    border-radius: var(--lr-radius);
    border: 1px solid rgba(99, 102, 241, 0.15);
}

/* ---- Pricing ---- */
.lr-pricing-card {
    background: var(--lr-bg-card);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--lr-radius-lg);
    padding: 48px 40px;
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(99, 102, 241, 0.08);
}

/* Gradient glow behind pricing card */
.lr-pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center top, rgba(99, 102, 241, 0.06), transparent 60%);
    pointer-events: none;
}

.lr-pricing-name {
    position: relative;
    font-family: var(--lr-font-display);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--lr-accent-light);
    margin-bottom: 16px;
}

.lr-pricing-amount {
    position: relative;
    font-family: var(--lr-font-display);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--lr-text-heading);
    margin-bottom: 32px;
    line-height: 1;
}

.lr-pricing-period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--lr-text-muted);
}

.lr-pricing-features {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
}

.lr-pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--lr-border);
    font-size: 0.9375rem;
    color: var(--lr-text);
    position: relative;
    padding-left: 28px;
}

.lr-pricing-features li:last-child {
    border-bottom: none;
}

.lr-pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lr-green);
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

.lr-pricing-note {
    position: relative;
    font-size: 0.8125rem;
    color: var(--lr-text-muted);
    margin: 0 0 28px;
}

/* ---- Trust ---- */
.lr-trust-card {
    background: var(--lr-bg-card);
    border: 1px solid var(--lr-border);
    border-radius: var(--lr-radius-lg);
    padding: 36px 32px;
    max-width: 520px;
    margin: 0 auto;
}

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

.lr-trust-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--lr-border);
    font-size: 1rem;
    color: var(--lr-text);
    text-align: left;
    display: flex;
    align-items: center;
    gap: 14px;
}

.lr-trust-list li svg {
    flex-shrink: 0;
}

.lr-trust-list li:last-child {
    border-bottom: none;
}

/* ---- Problem Section Box ---- */
.lr-problem-box {
    background: var(--lr-bg-card);
    border: 1px solid var(--lr-border);
    border-left: 3px solid #ef4444;
    border-radius: var(--lr-radius-lg);
    padding: 36px 32px;
}

.lr-problem-box .lr-prose p {
    text-align: left;
}

/* ---- Final CTA ---- */
.lr-final-cta {
    position: relative;
    padding: 80px 0;
    text-align: center;
    background: var(--lr-bg);
    overflow: hidden;
}

/* Subtle bottom glow */
.lr-final-cta::before {
    content: '';
    position: absolute;
    bottom: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(99, 102, 241, 0.08), transparent 70%);
    pointer-events: none;
}

.lr-final-statement {
    position: relative;
    font-family: var(--lr-font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
    color: var(--lr-text-heading);
    margin: 0 0 36px;
    line-height: 1.4;
}

/* ---- Footer Overrides ---- */
.site-footer {
    background: var(--lr-bg) !important;
    border-top: 1px solid var(--lr-border);
}

.footer-nav h4 {
    color: var(--lr-text-heading) !important;
    font-size: 0.75rem !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    opacity: 0.7;
}

/* ---- Scroll to Top ---- */
.scroll-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 40px;
    height: 40px;
    background: var(--lr-bg-card);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--lr-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lr-accent-light);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s ease;
    z-index: 900;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    border-color: var(--lr-accent);
    box-shadow: 0 2px 12px rgba(99, 102, 241, 0.2);
}

/* ---- reCAPTCHA badge hide ---- */
.grecaptcha-badge {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: fixed !important;
    bottom: -100px !important;
}

/* ============================================
   OTHER SOLUTIONS PAGE
   ============================================ */
.lr-other-hero {
    position: relative;
    padding: 140px 0 60px;
    text-align: center;
    overflow: hidden;
}

.lr-other-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(99, 102, 241, 0.08), transparent 70%);
    pointer-events: none;
}

.lr-other-hero h1 {
    position: relative;
    font-family: var(--lr-font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin: 0 0 16px;
}

/* Purple gradient glow on Other Solutions hero */
.lr-other-hero h1.lr-gradient-text {
    background: var(--lr-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.3));
}

.lr-other-hero p {
    position: relative;
    font-size: 1.0625rem;
    color: var(--lr-text-muted);
    margin: 0;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.lr-services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.lr-service-item {
    background: var(--lr-bg-card);
    border: 1px solid var(--lr-border);
    border-radius: var(--lr-radius-lg);
    padding: 32px 28px;
    transition: all var(--lr-transition);
    position: relative;
    overflow: hidden;
}

.lr-service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--lr-gradient);
    opacity: 0;
    transition: opacity var(--lr-transition);
}

.lr-service-item:hover {
    border-color: rgba(99, 102, 241, 0.2);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.06);
}

.lr-service-item:hover::before {
    opacity: 1;
}

.lr-service-item h3 {
    font-family: var(--lr-font-display);
    font-size: 1.0625rem;
    font-weight: 600;
    margin: 0 0 8px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 40%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.25));
}

.lr-service-item p {
    font-size: 0.9375rem;
    color: var(--lr-text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   HOW IT WORKS PAGE
   ============================================ */

/* Hero */
.hiw-hero {
    position: relative;
    padding: 160px 0 100px;
    text-align: center;
    overflow: hidden;
}

.hiw-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 700px;
    background: radial-gradient(ellipse, rgba(239, 68, 68, 0.06) 0%, rgba(99, 102, 241, 0.08) 40%, transparent 70%);
    pointer-events: none;
}

.hiw-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hiw-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.hiw-hero-headline {
    font-family: var(--lr-font-display);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--lr-text-heading);
    margin: 0 0 24px;
    letter-spacing: -0.02em;
}

.hiw-hero-sub {
    font-size: 1.125rem;
    color: var(--lr-text);
    line-height: 1.7;
    margin: 0 0 16px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.hiw-hero-supporting {
    font-size: 0.9375rem;
    color: var(--lr-text-muted);
    line-height: 1.7;
    margin: 0 0 40px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.hiw-hero-cta {
    margin: 0 auto;
}

/* Prose blocks */
.hiw-prose p {
    font-size: 1.0625rem;
    color: var(--lr-text);
    line-height: 1.8;
    margin: 0 0 16px;
    text-align: center;
}

.hiw-prose p:last-child {
    margin-bottom: 0;
}

/* Section intro */
.hiw-section-intro {
    text-align: center;
    font-size: 1.0625rem;
    color: var(--lr-text-muted);
    margin: -20px 0 40px;
}

/* Leak list (The Uncomfortable Truth) */
.hiw-leak-list {
    list-style: none;
    padding: 0;
    margin: 32px auto 32px;
    max-width: 420px;
}

.hiw-leak-list li {
    padding: 12px 0 12px 28px;
    font-size: 1rem;
    color: var(--lr-text);
    position: relative;
    border-bottom: 1px solid var(--lr-border);
}

.hiw-leak-list li:last-child {
    border-bottom: none;
}

.hiw-leak-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 17px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
}

/* Emphasis line */
.hiw-emphasis {
    text-align: center;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--lr-text-heading);
    margin: 0;
}

/* Highlight block (urgency section) */
.hiw-highlight {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--lr-accent-light);
    margin: 32px 0 0;
    padding: 24px 32px;
    background: var(--lr-accent-soft);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--lr-radius-lg);
}

/* ---- Calculator ---- */
.hiw-calc-instruction {
    text-align: center;
    font-size: 0.9375rem;
    color: var(--lr-text-muted);
    margin: -20px 0 32px;
}

.hiw-calculator {
    background: var(--lr-bg-card);
    border: 1px solid var(--lr-border);
    border-radius: var(--lr-radius-lg);
    padding: 40px 36px;
    max-width: 520px;
    margin: 0 auto;
}

.hiw-calc-inputs {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.hiw-calc-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hiw-calc-field label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--lr-text);
}

.hiw-calc-field input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(148, 163, 184, 0.06);
    border: 1px solid var(--lr-border);
    border-radius: 8px;
    color: var(--lr-text-heading);
    font-size: 1rem;
    font-family: var(--lr-font);
    transition: border-color var(--lr-transition);
    -moz-appearance: textfield;
}

.hiw-calc-field input::-webkit-outer-spin-button,
.hiw-calc-field input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.hiw-calc-field input:focus {
    outline: none;
    border-color: var(--lr-accent);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.hiw-input-with-suffix {
    position: relative;
    display: flex;
    align-items: center;
}

.hiw-input-with-suffix input {
    flex: 1;
}

.hiw-input-suffix {
    position: absolute;
    right: 16px;
    font-size: 0.875rem;
    color: var(--lr-text-muted);
    pointer-events: none;
}

.hiw-input-prefix {
    position: absolute;
    left: 16px;
    font-size: 0.875rem;
    color: var(--lr-text-muted);
    pointer-events: none;
    z-index: 1;
}

.hiw-input-prefix + input {
    padding-left: 32px;
}

/* Calculator result */
.hiw-calc-result {
    text-align: center;
    padding: 28px 24px;
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: var(--lr-radius);
}

.hiw-calc-result-label {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--lr-text-muted);
    margin-bottom: 8px;
}

.hiw-calc-result-amount {
    font-family: var(--lr-font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: #ef4444;
    line-height: 1;
    margin-bottom: 12px;
}

.hiw-calc-result-note {
    font-size: 0.8125rem;
    color: var(--lr-text-muted);
    margin: 0;
}

.hiw-calc-micro {
    text-align: center;
    font-size: 0.875rem;
    color: var(--lr-accent-light);
    font-weight: 500;
    margin-top: 24px;
    padding: 12px 20px;
    background: var(--lr-accent-soft);
    border-radius: var(--lr-radius);
    border: 1px solid rgba(99, 102, 241, 0.12);
}

/* ---- Reason Grid (Why This Keeps Happening) ---- */
.hiw-reason-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.hiw-reason-card {
    background: var(--lr-bg-card);
    border: 1px solid var(--lr-border);
    border-radius: var(--lr-radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: border-color var(--lr-transition);
}

.hiw-reason-card:hover {
    border-color: rgba(99, 102, 241, 0.2);
}

.hiw-reason-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--lr-accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--lr-accent-light);
}

.hiw-reason-card p {
    font-size: 0.9375rem;
    color: var(--lr-text);
    margin: 0;
    line-height: 1.5;
}

/* ---- System Flow (The LoomReach System) ---- */
.hiw-system-flow {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.hiw-system-flow::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: linear-gradient(to bottom, var(--lr-accent), var(--lr-green), transparent);
    opacity: 0.2;
}

.hiw-system-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--lr-border);
    position: relative;
    z-index: 1;
}

.hiw-system-step:last-child {
    border-bottom: none;
}

.hiw-system-number {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--lr-gradient-subtle);
    border: 1px solid rgba(99, 102, 241, 0.25);
    color: var(--lr-accent-light);
    font-weight: 700;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hiw-system-content h3 {
    font-family: var(--lr-font-display);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--lr-text-heading);
    margin: 0 0 6px;
}

.hiw-system-content p {
    font-size: 0.9375rem;
    color: var(--lr-text-muted);
    margin: 0;
    line-height: 1.65;
}

/* ---- Comparison (Why This Is Different) ---- */
.hiw-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.hiw-compare-col {
    background: var(--lr-bg-card);
    border-radius: var(--lr-radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--lr-border);
}

.hiw-compare-col h3 {
    font-family: var(--lr-font-display);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--lr-border);
}

.hiw-compare-old h3 {
    color: var(--lr-text-muted);
}

.hiw-compare-new {
    border-color: rgba(99, 102, 241, 0.2);
}

.hiw-compare-new h3 {
    color: var(--lr-accent-light);
}

.hiw-compare-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hiw-compare-col li {
    padding: 8px 0 8px 24px;
    font-size: 0.9375rem;
    position: relative;
    color: var(--lr-text);
}

.hiw-compare-old li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
    font-size: 1rem;
}

.hiw-compare-new li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lr-green);
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.4);
}

/* ---- Fit Grid (Who This Is For) ---- */
.hiw-fit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.hiw-fit-card {
    background: var(--lr-bg-card);
    border-radius: var(--lr-radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--lr-border);
}

.hiw-fit-card h3 {
    font-family: var(--lr-font-display);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--lr-border);
}

.hiw-fit-yes {
    border-color: rgba(34, 197, 94, 0.2);
}

.hiw-fit-yes h3 {
    color: var(--lr-green);
}

.hiw-fit-no h3 {
    color: var(--lr-text-muted);
}

.hiw-fit-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hiw-fit-card li {
    padding: 8px 0 8px 24px;
    font-size: 0.9375rem;
    color: var(--lr-text);
    position: relative;
}

.hiw-fit-yes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lr-green);
}

.hiw-fit-no li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--lr-text-muted);
    font-size: 0.875rem;
}

/* ---- HIW Final CTA ---- */
.hiw-final {
    background: var(--lr-bg-alt);
}

.hiw-final-headline {
    font-family: var(--lr-font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--lr-text-heading);
    margin: 0 0 16px;
    line-height: 1.2;
}

.hiw-final-sub {
    font-size: 1.0625rem;
    color: var(--lr-text-muted);
    margin: 0 0 36px;
    line-height: 1.7;
}

/* ============================================
   RESPONSIVE — V2 OVERRIDES
   All properties use !important to override
   mobile-ui-overhaul.css (266 !important rules)
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .lr-steps-grid {
        grid-template-columns: 1fr !important;
        max-width: 560px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hiw-reason-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Mobile */
@media (max-width: 968px) {
    /* ---- Navigation overlay (use #main-nav to beat ID selectors) ---- */
    #main-nav {
        position: fixed !important;
        top: 64px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: auto !important;
        background: rgba(10, 11, 15, 0.98) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 0 !important;
        padding: 32px 24px !important;
        z-index: 999 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transition: opacity 0.3s ease, visibility 0.3s ease !important;
        overflow-y: auto !important;
    }

    #main-nav.active {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    /* Reset any list styles forced by old CSS */
    #main-nav ul,
    #main-nav li {
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    #main-nav a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1rem !important;
        font-weight: 500 !important;
        padding: 14px 0 !important;
        min-height: auto !important;
        width: 100% !important;
        max-width: none !important;
        text-align: center !important;
        border-bottom: 1px solid rgba(148, 163, 184, 0.08) !important;
        border-radius: 0 !important;
        color: var(--lr-text) !important;
        text-decoration: none !important;
        background: transparent !important;
    }

    #main-nav a:hover,
    #main-nav a:active {
        color: #fff !important;
        background: rgba(99, 102, 241, 0.06) !important;
    }

    #main-nav a.active {
        color: var(--lr-accent-light) !important;
    }

    /* Green CTA button in mobile nav */
    #main-nav .mobile-cta,
    #main-nav a.mobile-cta {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin-top: 20px !important;
        padding: 14px 32px !important;
        width: 100% !important;
        max-width: 260px !important;
        min-height: 50px !important;
        background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
        color: #fff !important;
        font-weight: 600 !important;
        font-size: 1rem !important;
        border-radius: 10px !important;
        border-bottom: none !important;
        box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3) !important;
    }

    .mobile-toggle {
        display: flex !important;
    }

    .btn-book-call,
    .header-cta > .btn:not(.mobile-toggle) {
        display: none !important;
    }
}

@media (max-width: 768px) {
    /* ---- Global V2 typography ---- */
    /* Use ID selectors to beat front-page.css (#hero h1, section h2, etc.) */
    .lr-section-title,
    section .lr-section-title {
        font-size: 1.375rem !important;
        margin-bottom: 24px !important;
        line-height: 1.3 !important;
        /* Reset gradient text forced by front-page.css on section h2 */
        background: none !important;
        -webkit-background-clip: border-box !important;
        -webkit-text-fill-color: var(--lr-text-heading) !important;
        background-clip: border-box !important;
    }

    .lr-section {
        padding: 48px 0 !important;
    }

    .lr-container {
        padding: 0 20px !important;
    }

    .lr-problem-box {
        padding: 24px 20px !important;
    }

    .lr-trust-card {
        padding: 24px 20px !important;
    }

    /* ---- Hero mobile (use #hero to beat front-page.css) ---- */
    #hero.lr-hero,
    .lr-hero {
        padding: 100px 0 56px !important;
        background: var(--lr-bg) !important;
        min-height: auto !important;
        overflow: visible !important;
    }

    /* Kill decorative pseudo-elements from front-page.css */
    #hero.lr-hero::before,
    #hero.lr-hero::after {
        display: none !important;
        content: none !important;
    }

    #hero .lr-hero-headline,
    .lr-hero-headline {
        font-size: 1.625rem !important;
        line-height: 1.25 !important;
        color: var(--lr-text-heading) !important;
        /* Reset gradient forced by front-page.css #hero h1 */
        background: none !important;
        -webkit-background-clip: border-box !important;
        -webkit-text-fill-color: var(--lr-text-heading) !important;
        background-clip: border-box !important;
    }

    #hero .lr-hero-headline .lr-gradient-text,
    .lr-hero-headline .lr-gradient-text {
        font-size: inherit !important;
        line-height: inherit !important;
        /* Restore gradient for the span */
        background: var(--lr-gradient) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
    }

    #hero .lr-hero-sub,
    .lr-hero-sub {
        font-size: 0.9375rem !important;
        line-height: 1.6 !important;
        color: var(--lr-text-muted) !important;
    }

    #hero .lr-hero-ctas,
    .lr-hero-ctas {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
    }

    #hero .lr-hero-ctas .lr-btn,
    .lr-hero-ctas .lr-btn {
        width: 100% !important;
        max-width: none !important;
        text-align: center !important;
        justify-content: center !important;
        display: flex !important;
    }

    /* ---- Buttons mobile ---- */
    .lr-btn {
        font-size: 0.9375rem !important;
        padding: 14px 28px !important;
        max-width: none !important;
        width: auto !important;
    }

    .lr-btn-lg {
        padding: 16px 32px !important;
        font-size: 1rem !important;
    }

    .lr-btn-full {
        width: 100% !important;
    }

    .lr-btn-green {
        background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
    }

    /* ---- Prose mobile ---- */
    .lr-prose p,
    .hiw-prose p {
        font-size: 0.9375rem !important;
        line-height: 1.65 !important;
    }

    /* ---- Audience grid mobile ---- */
    .lr-audience-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .lr-audience-card {
        padding: 24px 20px !important;
    }

    .lr-audience-card h3 {
        font-size: 1.0625rem !important;
        color: var(--lr-text-heading) !important;
    }

    .lr-audience-card p {
        font-size: 0.875rem !important;
    }

    .lr-audience-note {
        font-size: 0.875rem !important;
        padding: 16px 20px !important;
    }

    /* ---- Step cards mobile ---- */
    .lr-steps-grid {
        gap: 16px !important;
    }

    .lr-step-card {
        padding: 24px 20px !important;
    }

    .lr-step-number {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.875rem !important;
    }

    .lr-step-title {
        font-size: 1.0625rem !important;
        color: var(--lr-text-heading) !important;
    }

    .lr-step-desc {
        font-size: 0.875rem !important;
    }

    /* ---- Process steps mobile ---- */
    .lr-process-step {
        padding: 16px 0 !important;
    }

    .lr-process-step p {
        font-size: 0.9375rem !important;
    }

    .lr-process::before {
        display: none !important;
    }

    .lr-process-marker {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        font-size: 0.8125rem !important;
    }

    /* ---- Pricing mobile ---- */
    .lr-pricing-card {
        padding: 32px 20px !important;
    }

    .lr-pricing-name {
        font-size: 1rem !important;
    }

    .lr-pricing-amount {
        font-size: 2rem !important;
    }

    .lr-pricing-period {
        font-size: 0.875rem !important;
    }

    .lr-pricing-features li {
        font-size: 0.875rem !important;
    }

    .lr-pricing-note {
        font-size: 0.8125rem !important;
    }

    /* ---- Trust card mobile ---- */
    .lr-trust-list li {
        font-size: 0.9375rem !important;
        gap: 10px !important;
    }

    .lr-trust-list li svg {
        width: 16px !important;
        height: 16px !important;
        min-width: 16px !important;
    }

    /* ---- Other Solutions page mobile ---- */
    .lr-other-hero {
        padding: 100px 0 48px !important;
    }

    .lr-other-hero h1 {
        font-size: 1.625rem !important;
        line-height: 1.3 !important;
    }

    .lr-services-list {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .lr-service-item {
        padding: 24px 20px !important;
    }

    .lr-service-item h3 {
        font-size: 1.125rem !important;
    }

    .lr-service-item p {
        font-size: 0.875rem !important;
    }

    /* ---- Scroll to top mobile ---- */
    .scroll-to-top {
        bottom: 20px !important;
        right: 20px !important;
        width: 40px !important;
        height: 40px !important;
    }

    /* ---- Final CTA mobile ---- */
    .lr-final-cta {
        padding: 56px 0 !important;
    }

    .lr-final-cta .lr-hero-ctas {
        align-items: center !important;
    }

    .lr-final-cta .lr-btn {
        max-width: 280px !important;
        width: 100% !important;
    }

    .lr-final-statement {
        font-size: 1.125rem !important;
        line-height: 1.5 !important;
    }

    /* ============================================
       HOW IT WORKS page mobile
       ============================================ */
    .hiw-hero {
        padding: 100px 0 56px !important;
    }

    .hiw-hero-headline {
        font-size: 1.625rem !important;
        line-height: 1.25 !important;
        color: var(--lr-text-heading) !important;
    }

    .hiw-hero-sub {
        font-size: 0.9375rem !important;
        line-height: 1.6 !important;
    }

    .hiw-hero-supporting {
        font-size: 0.8125rem !important;
        line-height: 1.6 !important;
    }

    .hiw-hero-cta {
        max-width: none !important;
        width: 100% !important;
    }

    .hiw-section-intro {
        font-size: 0.9375rem !important;
        margin-bottom: 24px !important;
    }

    /* Calculator mobile */
    .hiw-calculator {
        padding: 28px 20px !important;
    }

    .hiw-calc-inputs {
        gap: 20px !important;
    }

    .hiw-calc-field label {
        font-size: 0.8125rem !important;
    }

    .hiw-calc-field input {
        font-size: 0.9375rem !important;
        padding: 10px 14px !important;
    }

    .hiw-calc-instruction {
        font-size: 0.875rem !important;
    }

    .hiw-calc-result {
        padding-top: 24px !important;
        margin-top: 24px !important;
    }

    .hiw-calc-result-label {
        font-size: 0.8125rem !important;
    }

    .hiw-calc-result-amount {
        font-size: 2rem !important;
    }

    .hiw-calc-result-note {
        font-size: 0.75rem !important;
    }

    .hiw-calc-micro {
        font-size: 0.8125rem !important;
        padding: 12px 16px !important;
    }

    /* Leak list mobile */
    .hiw-leak-list {
        padding-left: 0 !important;
    }

    .hiw-leak-list li {
        font-size: 0.9375rem !important;
        padding: 8px 0 !important;
    }

    /* Reason grid mobile */
    .hiw-reason-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }

    .hiw-reason-card {
        padding: 20px 14px !important;
    }

    .hiw-reason-card p {
        font-size: 0.8125rem !important;
    }

    .hiw-reason-icon {
        margin-bottom: 8px !important;
    }

    /* System flow mobile */
    .hiw-system-flow::before {
        display: none !important;
    }

    .hiw-system-step {
        gap: 16px !important;
        padding: 16px 0 !important;
    }

    .hiw-system-number {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        font-size: 0.875rem !important;
    }

    .hiw-system-content h3 {
        font-size: 1.0625rem !important;
        color: var(--lr-text-heading) !important;
    }

    .hiw-system-content p {
        font-size: 0.875rem !important;
    }

    /* Comparison mobile */
    .hiw-comparison {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .hiw-compare-col {
        padding: 24px 20px !important;
    }

    .hiw-compare-col h3 {
        font-size: 1rem !important;
    }

    .hiw-compare-col li {
        font-size: 0.875rem !important;
    }

    /* Fit grid mobile */
    .hiw-fit-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .hiw-fit-card {
        padding: 24px 20px !important;
    }

    .hiw-fit-card h3 {
        font-size: 1rem !important;
    }

    .hiw-fit-card li {
        font-size: 0.875rem !important;
    }

    /* Emphasis & highlight mobile */
    .hiw-emphasis {
        font-size: 0.9375rem !important;
    }

    .hiw-highlight {
        font-size: 1rem !important;
        padding: 20px !important;
    }

    /* HIW Final CTA mobile */
    .hiw-final {
        padding: 56px 0 !important;
    }

    .hiw-final-headline {
        font-size: 1.375rem !important;
        line-height: 1.3 !important;
    }

    .hiw-final-sub {
        font-size: 0.9375rem !important;
    }

    /* ============================================
       Footer V2 overrides
       ============================================ */
    .site-footer {
        padding: 40px 0 24px !important;
    }

    .footer-nav h4 {
        font-size: 0.75rem !important;
        opacity: 0.7 !important;
        color: #94a3b8 !important;
    }

    .footer-nav a {
        font-size: 0.875rem !important;
        color: #e2e8f0 !important;
    }

    .footer-copyright {
        font-size: 0.6875rem !important;
    }
}

/* Small phone */
@media (max-width: 480px) {
    #hero .lr-hero-headline,
    .lr-hero-headline,
    .hiw-hero-headline {
        font-size: 1.375rem !important;
    }

    #hero.lr-hero,
    .lr-hero {
        padding: 90px 0 48px !important;
    }

    .hiw-hero {
        padding: 90px 0 48px !important;
    }

    .lr-other-hero {
        padding: 90px 0 40px !important;
    }

    .lr-container {
        padding: 0 16px !important;
    }

    .lr-section-title,
    section .lr-section-title {
        font-size: 1.25rem !important;
    }

    .hiw-reason-grid {
        grid-template-columns: 1fr !important;
    }

    .hiw-calculator {
        padding: 24px 16px !important;
    }

    .hiw-calc-result-amount {
        font-size: 1.75rem !important;
    }

    /* Fix footer headings at small screens — override 0.5625rem to readable */
    .footer-nav h4 {
        font-size: 0.6875rem !important;
        opacity: 0.7 !important;
        color: #94a3b8 !important;
    }

    .footer-copyright {
        font-size: 0.625rem !important;
    }

    /* Small phone buttons */
    .lr-btn {
        padding: 12px 24px !important;
        font-size: 0.875rem !important;
    }

    .lr-btn-lg {
        padding: 14px 28px !important;
        font-size: 0.9375rem !important;
    }

    /* Pricing tighter */
    .lr-pricing-card {
        padding: 28px 16px !important;
    }

    .lr-pricing-amount {
        font-size: 1.75rem !important;
    }

    /* Step cards tighter */
    .lr-step-card {
        padding: 20px 16px !important;
    }

    /* Comparison tighter */
    .hiw-compare-col {
        padding: 20px 16px !important;
    }

    /* Fit cards tighter */
    .hiw-fit-card {
        padding: 20px 16px !important;
    }
}
