/* ══════════════════════════════════════════════════════════════════════════════
   CitaPropia (citapropia.com) — Landing Page Stylesheet
   Design System: 7shifts / Folk inspired + Ultra-Realistic Elongated iPhone 16 Pro
   ══════════════════════════════════════════════════════════════════════════════ */

:root {
    /* Colors */
    --color-indigo-bolt:       #4570ff;
    --color-ember-orange:      #ff6808;
    --color-lime-highlighter:  #c6ff94;
    --color-lavender-mist:     #ebdcff;
    --color-ice-blue:          #d6e0ff;
    --color-lilac-bloom:       #c293f1;
    --color-deep-navy:         #193f78;
    --color-forest-sage:       #244f47;
    --color-warm-bone:         #f1f0ec;
    --color-paper-white:       #ffffff;
    --color-ink-black:         #000000;
    --color-hairline:          #e5e7eb;
    --color-stone:             #d1d5db;
    --color-smoke:             #6e6d6c;
    --color-graphite:          #555555;

    /* Typography */
    --font-sans: 'Inter', 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-script: 'Caveat', cursive;

    /* Radii */
    --radius-cards:   20px;
    --radius-hero:    40px;
    --radius-pill:    9999px;
    --radius-input:   12px;
    --radius-sm:      8px;

    /* Layout */
    --container-max:  1180px;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-sans);
    color: var(--color-ink-black);
    background-color: var(--color-paper-white);
    -webkit-font-smoothing: antialiased;
}

body {
    line-height: 1.5;
    font-size: 16px;
    color: var(--color-ink-black);
}

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

.text-center { text-align: center; }
.text-white  { color: var(--color-paper-white) !important; }
.text-smoke  { color: var(--color-smoke) !important; }
.text-orange { color: var(--color-ember-orange) !important; }
/* ── SMOOTH SCROLL OFFSET FOR STICKY HEADER ───────────────────────────────── */
html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 84px;
}

/* ── SVG ICONS ────────────────────────────────────────────────────────────── */
.svg-icon-xs {
    width: 13px;
    height: 13px;
    display: inline-block;
    vertical-align: middle;
}

.svg-inline-xs {
    width: 14px;
    height: 14px;
    display: inline-block;
    vertical-align: -2px;
    flex-shrink: 0;
}

/* ── TOP ANNOUNCEMENT BAR ─────────────────────────────────────────────────── */
.top-banner {
    background-color: var(--color-ink-black);
    color: var(--color-paper-white);
    padding: 10px 0;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    text-align: center;
}

.banner-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: var(--color-ember-orange);
    color: var(--color-paper-white);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.04em;
}

/* ── NAVBAR ───────────────────────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-hairline);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 16px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    color: var(--color-ink-black);
    flex-shrink: 0;
    white-space: nowrap;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.15s ease;
}

.brand-logo:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

.brand-symbol {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(145deg, #0F172A 0%, #020617 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
    transition: box-shadow 0.2s ease;
}

.brand-logo:hover .brand-symbol {
    box-shadow: 0 6px 18px rgba(69, 112, 255, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.brand-symbol svg {
    width: 22px;
    height: 22px;
    display: block;
}

.brand-name {
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.035em;
    color: var(--color-ink-black);
    display: flex;
    align-items: center;
}

.brand-name .brand-propia {
    color: var(--color-indigo-bolt);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.4vw, 20px);
    white-space: nowrap;
}

.nav-link {
    text-decoration: none;
    color: var(--color-smoke);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.15s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--color-ink-black);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    white-space: nowrap;
}

/* Animated Mobile Hamburger Button */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-ink-black);
    width: 40px;
    height: 40px;
    position: relative;
    padding: 8px 6px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.mobile-toggle:hover {
    background-color: var(--color-warm-bone);
}

.hamburger-bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    border-radius: 2px;
    transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
    margin: 5px auto;
}

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

.mobile-toggle.open .hamburger-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

/* Animated Mobile Navigation Drawer (FAQ-style Smooth Accordion Transition) */
.mobile-nav-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
}

.mobile-nav-wrapper.open {
    grid-template-rows: 1fr;
    border-bottom-color: var(--color-hairline);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.09);
}

.mobile-nav-content {
    min-height: 0;
    overflow: hidden;
}

.mobile-nav-inner {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px 24px 28px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease 0.05s, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) 0.05s;
}

.mobile-nav-wrapper.open .mobile-nav-inner {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-inner a {
    text-decoration: none;
    color: var(--color-ink-black);
    font-weight: 600;
    font-size: 16px;
    padding: 6px 0;
    transition: color 0.15s ease, transform 0.15s ease;
}

.mobile-nav-inner a:hover {
    color: var(--color-indigo-bolt);
    transform: translateX(4px);
}

.mobile-nav-inner .mobile-demo-link {
    color: var(--color-ember-orange);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.mobile-nav-inner .btn-block {
    margin-top: 8px;
}

/* ── BUTTONS ──────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border-radius: var(--radius-pill);
    transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
    border: 1px solid transparent;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background-color: var(--color-indigo-bolt);
    color: var(--color-paper-white);
    padding: 12px 24px;
    font-size: 15px;
}

.btn-primary:hover {
    background-color: #315df0;
}

.btn-secondary-orange {
    background-color: transparent;
    border: 2px solid var(--color-ember-orange);
    color: var(--color-ember-orange);
    padding: 11px 22px;
    font-size: 15px;
}

.btn-secondary-orange:hover {
    background-color: rgba(255, 104, 8, 0.06);
}

.btn-login {
    background-color: var(--color-warm-bone);
    color: var(--color-ink-black);
    padding: 10px 18px;
    font-size: 14px;
}

.btn-login:hover {
    background-color: #e5e3dc;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #ffffff;
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 700;
}

.btn-whatsapp:hover {
    background-color: #1ebc59;
}

.btn-lg {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
}

.btn-block {
    width: 100%;
}

.icon-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.btn-primary:hover .icon-arrow {
    transform: translateX(4px);
}

/* ── HERO SECTION ─────────────────────────────────────────────────────────── */
.hero-section {
    padding: 60px 0 80px;
    background-color: var(--color-paper-white);
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    background-color: var(--color-warm-bone);
    color: var(--color-graphite);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid var(--color-hairline);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-ember-orange);
    display: inline-block;
}

.hero-title {
    font-size: clamp(34px, 5.5vw, 60px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: var(--color-ink-black);
    max-width: 960px;
    margin: 0 auto 20px;
}

.script-highlight {
    font-family: var(--font-script);
    color: var(--color-ember-orange);
    font-size: 1.25em;
    font-weight: 700;
    position: relative;
    display: inline-block;
    letter-spacing: normal;
}

.script-highlight-lime {
    font-family: var(--font-script);
    color: var(--color-lime-highlighter);
    font-size: 1.25em;
    font-weight: 700;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--color-smoke);
    max-width: 760px;
    margin: 0 auto 32px;
    line-height: 1.55;
    letter-spacing: -0.01em;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.hero-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding-top: 8px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-graphite);
}

.check-icon {
    width: 18px;
    height: 18px;
    color: var(--color-indigo-bolt);
    flex-shrink: 0;
}

/* Sectors Ribbon */
.hero-sectors-ribbon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.sector-ribbon-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--color-smoke);
}

.sector-pills-list {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.sector-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--color-warm-bone);
    color: var(--color-ink-black);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--color-hairline);
    transition: all 0.2s ease;
}

.sector-pill:hover {
    border-color: var(--color-indigo-bolt);
    color: var(--color-indigo-bolt);
    transform: translateY(-1px);
    background-color: #ffffff;
}

.sector-pill svg {
    color: var(--color-indigo-bolt);
}

/* ── ULTRA-REALISTIC ELONGATED IPHONE 16 PRO MOCKUP ───────────────────────── */
.hero-mockup-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 16px;
}

.theme-switcher-pills {
    display: inline-flex;
    background-color: var(--color-warm-bone);
    padding: 4px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--color-hairline);
    gap: 4px;
}

.theme-pill {
    background: transparent;
    border: none;
    padding: 8px 18px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-smoke);
    border-radius: var(--radius-pill);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.theme-pill:hover {
    color: var(--color-ink-black);
}

.theme-pill.active {
    background-color: var(--color-paper-white);
    color: var(--color-ink-black);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Physical Phone Chassis (Elongated 19.5:9 flagship silhouette) */
.iphone-pro-device {
    position: relative;
    width: 340px;
    max-width: 90vw;
    background: linear-gradient(145deg, #4c4c56 0%, #2c2c34 20%, #161619 45%, #2a2a30 75%, #44444d 100%);
    border-radius: 54px;
    padding: 10px;
    border: 1.5px solid #5a5a68;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.2) inset,
        0 0 0 2px #0d0d10,
        0 25px 70px -10px rgba(0, 0, 0, 0.45),
        0 60px 120px -20px rgba(0, 0, 0, 0.3);
}

/* Physical Hardware Buttons */
.device-btn {
    position: absolute;
    background: linear-gradient(to right, #383842, #555562);
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.btn-action {
    left: -5.5px;
    top: 106px;
    width: 4.5px;
    height: 26px;
}

.btn-vol-up {
    left: -5.5px;
    top: 148px;
    width: 4.5px;
    height: 52px;
}

.btn-vol-down {
    left: -5.5px;
    top: 212px;
    width: 4.5px;
    height: 52px;
}

.btn-power {
    right: -5.5px;
    top: 160px;
    width: 4.5px;
    height: 78px;
}

/* Antenna Bands */
.device-antenna {
    position: absolute;
    background-color: #1a1a1f;
    opacity: 0.6;
}

.antenna-top-left { left: 44px; top: -1.5px; width: 4px; height: 1.5px; }
.antenna-top-right { right: 44px; top: -1.5px; width: 4px; height: 1.5px; }
.antenna-bottom-left { left: 44px; bottom: -1.5px; width: 4px; height: 1.5px; }
.antenna-bottom-right { right: 44px; bottom: -1.5px; width: 4px; height: 1.5px; }

/* Inner Screen Frame */
.device-screen-frame {
    position: relative;
    background-color: #000000;
    border-radius: 45px;
    overflow: hidden;
    box-shadow: 0 0 0 2px #040406 inset;
}

/* Status Bar & Safari Top Chrome Header */
.ios-safari-top-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 30;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
}

.iphone-pro-device.mode-light .ios-safari-top-header {
    background-color: rgba(248, 248, 250, 0.94);
    border-bottom-color: rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.iphone-pro-device.mode-dark .ios-safari-top-header {
    background-color: rgba(28, 28, 30, 0.94);
    border-bottom-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.ios-status-overlay {
    position: relative;
    width: 100%;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px 0;
    pointer-events: none;
    transition: color 0.2s ease;
}

.ios-time-text {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.dynamic-island-pill {
    position: absolute;
    left: 50%;
    top: 7px;
    transform: translateX(-50%);
    width: 96px;
    height: 25px;
    background-color: #000000;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 9px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
}

.island-camera-optic {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #1e293b, #020617 75%);
    border: 1px solid #334155;
    box-shadow: 0 0 3px rgba(56, 189, 248, 0.4) inset;
}

.island-sensor-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #0f172a;
}

.ios-status-icons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ios-battery-pill {
    width: 20px;
    height: 10px;
    border: 1.5px solid currentColor;
    border-radius: 3px;
    padding: 1px;
    display: flex;
    position: relative;
}

.ios-battery-pill::after {
    content: '';
    position: absolute;
    right: -3px;
    top: 2px;
    width: 1.5px;
    height: 4px;
    background: currentColor;
    border-radius: 0 1px 1px 0;
}

.battery-bar-fill {
    width: 75%;
    height: 100%;
    background-color: currentColor;
    border-radius: 1px;
}

/* Status Bar Colors based on Light / Dark Mode for razor-sharp legibility */
.iphone-pro-device.mode-light .ios-status-overlay {
    color: #0f172a;
}

.iphone-pro-device.mode-light .ios-time-text {
    color: #0f172a;
}

.iphone-pro-device.mode-light .ios-status-icons {
    color: #0f172a;
}

.iphone-pro-device.mode-light .ios-home-indicator {
    background-color: rgba(15, 23, 42, 0.75);
}

.iphone-pro-device.mode-dark .ios-status-overlay {
    color: #ffffff;
}

.iphone-pro-device.mode-dark .ios-time-text {
    color: #ffffff;
}

.iphone-pro-device.mode-dark .ios-status-icons {
    color: #ffffff;
}

.iphone-pro-device.mode-dark .ios-home-indicator {
    background-color: rgba(255, 255, 255, 0.75);
}

/* Safari Search / URL Bar at the Top */
.ios-safari-bar {
    margin: 2px 14px 10px;
    height: 35px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    transition: all 0.25s ease;
    user-select: none;
}

.iphone-pro-device.mode-light .ios-safari-bar {
    background-color: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    color: #1c1c1e;
}

.iphone-pro-device.mode-dark .ios-safari-bar {
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f2f2f7;
}

.safari-aa-icon {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: -0.04em;
    opacity: 0.75;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
}

.safari-url-center {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: -0.01em;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
}

.safari-lock-icon {
    opacity: 0.65;
    flex-shrink: 0;
}

.safari-url-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.safari-reload-icon {
    opacity: 0.75;
    flex-shrink: 0;
}

/* Glass Glare Reflection */
.device-glass-glare {
    position: absolute;
    top: 0;
    left: -35%;
    width: 170%;
    height: 55%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 60%);
    transform: rotate(-12deg);
    z-index: 35;
    pointer-events: none;
}

/* Screen Viewport (Elongated authentic height) */
.device-viewport {
    background-color: #0d0d0d;
    min-height: 640px;
    max-height: 680px;
    padding-top: 94px;
    overflow-y: auto;
    scrollbar-width: none;
}

.device-viewport::-webkit-scrollbar {
    display: none;
}

.device-app-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: top center;
    transition: opacity 0.2s ease;
}

/* Home Indicator */
.ios-home-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4.5px;
    border-radius: 3px;
    z-index: 30;
    pointer-events: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    transition: background-color 0.2s ease;
}

/* ── CASE STUDY SECTION ───────────────────────────────────────────────────── */
.section-case-study {
    padding: 80px 0;
    background-color: var(--color-paper-white);
}

.case-card {
    background-color: var(--color-warm-bone);
    border-radius: var(--radius-hero);
    padding: 56px 48px;
    border: 1px solid var(--color-hairline);
}

.case-badge-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.case-tag {
    background-color: var(--color-ink-black);
    color: var(--color-paper-white);
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.06em;
}

.case-location {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-smoke);
}

.case-live-pill-link {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-paper-white);
    color: var(--color-ink-black);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--color-hairline);
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.case-live-pill-link:hover {
    border-color: var(--color-indigo-bolt);
    color: var(--color-indigo-bolt);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(69, 112, 255, 0.12);
}

.pill-dot-green {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #10b981;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
    display: inline-block;
}

.case-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.case-logo {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
}

.case-title {
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.case-quote {
    font-size: 16px;
    color: var(--color-smoke);
    line-height: 1.65;
    margin-bottom: 28px;
}

.case-author-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.case-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-paper-white);
    color: var(--color-indigo-bolt);
    border: 1.5px solid var(--color-indigo-bolt);
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.case-action-btn:hover {
    background-color: var(--color-indigo-bolt);
    color: var(--color-paper-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(69, 112, 255, 0.2);
}

.case-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-indigo-bolt);
    color: var(--color-paper-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
}

.case-author strong {
    display: block;
    font-size: 16px;
    color: var(--color-ink-black);
}

.case-author span {
    font-size: 13px;
    color: var(--color-smoke);
}

/* Framed Real Stats Preview */
.case-real-stats-img {
    margin-top: 24px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--color-hairline);
    background: #0d0d0d;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.stats-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background-color: #1a1a1a;
    border-bottom: 1px solid #2a2a2a;
}

.stats-badge-text {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #aaaaaa;
}

.stats-badge-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 700;
    color: var(--color-lime-highlighter);
    background: rgba(198, 255, 148, 0.12);
    padding: 2px 8px;
    border-radius: var(--radius-pill);
}

.stats-preview-img {
    width: 100%;
    display: block;
}

.case-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-box {
    background: var(--color-paper-white);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--color-hairline);
}

.stat-highlight {
    background-color: var(--color-ink-black);
    color: var(--color-paper-white);
}

.stat-highlight .stat-title,
.stat-highlight .stat-sub {
    color: var(--color-stone);
}

.stat-num {
    font-size: 38px;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    display: block;
    margin-bottom: 6px;
    color: var(--color-indigo-bolt);
}

.stat-highlight .stat-num {
    color: var(--color-lime-highlighter);
}

.stat-title {
    font-size: 15px;
    font-weight: 700;
    display: block;
}

.stat-sub {
    font-size: 12px;
    color: var(--color-smoke);
    margin-top: 4px;
}

/* ── ADMIN INTERACTIVE SHOWCASE ───────────────────────────────────────────── */
.section-admin {
    padding: 96px 0;
    background-color: var(--color-paper-white);
}

.admin-interactive-showcase {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 36px;
    align-items: center;
    margin-top: 48px;
}

.admin-nav-tabs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.admin-tab-btn {
    background-color: var(--color-warm-bone);
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-sans);
    transition: all 0.2s ease;
}

.admin-tab-btn:hover {
    background-color: #e8e7e1;
}

.admin-tab-btn.active {
    background-color: var(--color-paper-white);
    border-color: var(--color-indigo-bolt);
    box-shadow: 0 4px 16px rgba(69, 112, 255, 0.08);
}

.tab-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: var(--color-paper-white);
    color: var(--color-indigo-bolt);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--color-hairline);
}

.admin-tab-btn.active .tab-icon {
    background-color: var(--color-indigo-bolt);
    color: var(--color-paper-white);
    border-color: var(--color-indigo-bolt);
}

.tab-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-ink-black);
    margin-bottom: 2px;
}

.tab-info p {
    font-size: 13px;
    color: var(--color-smoke);
    line-height: 1.4;
}

/* Right Side: Browser Chrome Viewport */
.admin-viewport-frame {
    background-color: #ffffff;
    border-radius: var(--radius-cards);
    border: 1px solid var(--color-hairline);
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}

.window-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    background-color: #fafaf8;
    border-bottom: 1px solid var(--color-hairline);
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #d1d5db;
}

.window-dots span:nth-child(1) { background-color: #f87171; }
.window-dots span:nth-child(2) { background-color: #fbbf24; }
.window-dots span:nth-child(3) { background-color: #34d399; }

.window-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-smoke);
    font-family: monospace;
}

.window-badge {
    font-size: 10px;
    font-weight: 800;
    background-color: #d1fae5;
    color: #065f46;
    padding: 2px 8px;
    border-radius: var(--radius-pill);
}

.window-screen {
    background-color: #f8fafc;
    min-height: 380px;
    max-height: 480px;
    overflow-y: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.admin-display-img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

/* ── SECTION COMMON ───────────────────────────────────────────────────────── */
.section-bone {
    background-color: var(--color-warm-bone);
    padding: 96px 0;
}

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

.eyebrow-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-graphite);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--color-smoke);
    line-height: 1.5;
}

/* ── BENTO GRID ───────────────────────────────────────────────────────────── */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.bento-card {
    border-radius: var(--radius-cards);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-tag {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    color: var(--color-graphite);
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.card-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-smoke);
    margin-bottom: 28px;
}

.card-ice-blue {
    background-color: var(--color-ice-blue);
}

.card-lavender {
    background-color: var(--color-lavender-mist);
}

.card-sage {
    background-color: var(--color-forest-sage);
    color: var(--color-paper-white);
}

.card-sage .card-tag,
.card-sage .card-desc {
    color: rgba(255,255,255,0.75);
}

.card-white {
    background-color: var(--color-paper-white);
    border: 1px solid var(--color-hairline);
}

/* Bento Visuals */
.card-visual {
    margin-top: auto;
}

.cal-event {
    background: var(--color-paper-white);
    padding: 14px 18px;
    border-radius: 12px;
    border-left: 4px solid var(--color-indigo-bolt);
    font-size: 13px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cal-time {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-indigo-bolt);
}

.cal-event small {
    color: var(--color-smoke);
}

.shield-badge {
    background: var(--color-paper-white);
    padding: 14px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 14px;
    color: #065f46;
}

.shield-badge svg {
    color: #10b981;
}

.domain-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--color-paper-white);
    padding: 12px 18px;
    border-radius: var(--radius-pill);
    font-family: monospace;
    font-size: 14px;
    width: 100%;
}

.speed-stat {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 12px 0;
}

.stat-number {
    font-size: 44px;
    font-weight: 900;
    color: var(--color-indigo-bolt);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-graphite);
}

/* ── CALCULATOR SECTION ───────────────────────────────────────────────────── */
.section-calculator {
    padding: 96px 0;
    background-color: var(--color-paper-white);
}

.calculator-card {
    background-color: var(--color-warm-bone);
    border-radius: var(--radius-hero);
    padding: 56px 48px;
    border: 1px solid var(--color-hairline);
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 40px;
    align-items: center;
}

.control-group {
    margin-bottom: 28px;
}

.control-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
}

.control-label strong {
    font-size: 18px;
    color: var(--color-indigo-bolt);
}

.calc-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #d8d8d4;
    outline: none;
    -webkit-appearance: none;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-indigo-bolt);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(69, 112, 255, 0.4);
}

.calc-note {
    font-size: 12px;
    color: var(--color-smoke);
    line-height: 1.5;
}

.calc-results {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.result-box {
    background: var(--color-paper-white);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--color-hairline);
}

.result-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-smoke);
    display: block;
    margin-bottom: 6px;
}

.result-amount-loss {
    font-size: 32px;
    font-weight: 800;
    color: #ef4444;
    letter-spacing: -0.02em;
}

.calc-breakdown-pills {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.calc-breakdown-pills span {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-smoke);
    background: var(--color-warm-bone);
    padding: 3px 8px;
    border-radius: var(--radius-pill);
}

.result-box-highlight {
    background: var(--color-ink-black);
    color: var(--color-paper-white);
    padding: 28px 24px;
    border-radius: 16px;
}

.result-label-highlight {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-stone);
    display: block;
    margin-bottom: 6px;
}

.result-amount-saved {
    font-size: 38px;
    font-weight: 900;
    color: var(--color-lime-highlighter);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.badge-saved {
    display: inline-block;
    background: rgba(198, 255, 148, 0.15);
    color: var(--color-lime-highlighter);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}

/* ── DARK BAND / BEFORE-AFTER ─────────────────────────────────────────────── */
.section-dark {
    background-color: var(--color-ink-black);
    padding: 108px 0;
    color: var(--color-paper-white);
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 56px;
}

.compare-card {
    border-radius: var(--radius-cards);
    padding: 40px 36px;
}

.card-before {
    background-color: #121212;
    border: 1px solid #262626;
}

.card-after {
    background-color: var(--color-deep-navy);
    border: 2px solid var(--color-indigo-bolt);
    position: relative;
}

.header-badge {
    position: absolute;
    top: -12px;
    right: 28px;
    background-color: var(--color-lime-highlighter);
    color: var(--color-ink-black);
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.05em;
}

.compare-header h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 4px;
}

.compare-header p {
    font-size: 13px;
    color: var(--color-stone);
    margin-bottom: 28px;
}

.compare-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.compare-list li {
    display: flex;
    gap: 14px;
    font-size: 14px;
    line-height: 1.4;
}

.compare-list strong {
    display: block;
    color: var(--color-paper-white);
    margin-bottom: 2px;
}

.compare-list p {
    color: var(--color-stone);
    font-size: 13px;
}

.icon-cross {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #ef4444;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--color-lime-highlighter);
    color: var(--color-ink-black);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ── STEPS SECTION ────────────────────────────────────────────────────────── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    background-color: var(--color-paper-white);
    border-radius: var(--radius-cards);
    padding: 36px 28px;
    border: 1px solid var(--color-hairline);
}

.step-num {
    font-size: 32px;
    font-weight: 900;
    color: var(--color-indigo-bolt);
    font-family: var(--font-sans);
    margin-bottom: 16px;
    letter-spacing: -0.04em;
}

.step-title {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.25;
}

.step-desc {
    font-size: 14px;
    color: var(--color-smoke);
    line-height: 1.6;
}

/* ── PRICING SECTION ──────────────────────────────────────────────────────── */
.section-pricing {
    padding: 96px 0;
    background-color: var(--color-paper-white);
}

.pricing-wrap {
    max-width: 640px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--color-paper-white);
    border-radius: var(--radius-hero);
    padding: 48px 44px;
    border: 2px solid var(--color-indigo-bolt);
    position: relative;
    box-shadow: 0 8px 32px rgba(69, 112, 255, 0.08);
}

.pricing-badge {
    display: inline-block;
    background-color: var(--color-indigo-bolt);
    color: var(--color-paper-white);
    font-size: 11px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.05em;
    margin-bottom: 18px;
}

.plan-name {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.plan-desc {
    font-size: 15px;
    color: var(--color-smoke);
    margin-bottom: 32px;
}

.pricing-cost {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 24px;
    background-color: var(--color-warm-bone);
    border-radius: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.cost-number {
    font-size: 40px;
    font-weight: 900;
    color: var(--color-ink-black);
    line-height: 1;
    display: block;
}

.cost-type {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-smoke);
}

.plus-sign {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-graphite);
}

.cost-number-sm {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-indigo-bolt);
}

.cost-type-sm {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-smoke);
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--color-graphite);
}

.pricing-features strong {
    color: var(--color-ink-black);
}

.feat-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #d1fae5;
    color: #065f46;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 28px;
    font-size: 13px;
    color: var(--color-smoke);
}

.guarantee-box strong {
    display: block;
    color: var(--color-ink-black);
    font-size: 14px;
    margin-bottom: 2px;
}

.guarantee-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: #eef2ff;
    color: var(--color-indigo-bolt);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ── ANIMATED FAQ ACCORDION ───────────────────────────────────────────────── */
.faq-container {
    max-width: 800px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background-color: var(--color-paper-white);
    border-radius: 16px;
    border: 1px solid var(--color-hairline);
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item.open {
    border-color: var(--color-indigo-bolt);
    box-shadow: 0 4px 20px rgba(69, 112, 255, 0.08);
}

.faq-question {
    width: 100%;
    padding: 22px 24px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 700;
    color: var(--color-ink-black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.2s ease;
}

.faq-item.open .faq-question {
    color: var(--color-indigo-bolt);
}

.faq-toggle {
    font-size: 24px;
    font-weight: 400;
    color: var(--color-smoke);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
    color: var(--color-indigo-bolt);
}

/* Smooth Accordion Grid Transition */
.faq-answer-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-answer-wrapper {
    grid-template-rows: 1fr;
}

.faq-answer-content {
    overflow: hidden;
}

.faq-answer-inner {
    padding: 0 24px 22px;
    font-size: 15px;
    color: var(--color-smoke);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.faq-item.open .faq-answer-inner {
    opacity: 1;
    transform: translateY(0);
}

/* ── FINAL CTA & LEAD FORM ────────────────────────────────────────────────── */
.section-contact {
    padding: 96px 0;
    background-color: var(--color-paper-white);
}

.contact-box {
    background-color: var(--color-ink-black);
    border-radius: var(--radius-hero);
    padding: 64px 48px;
    color: var(--color-paper-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.contact-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}

.contact-subtitle {
    font-size: 16px;
    color: var(--color-stone);
    line-height: 1.6;
    margin-bottom: 32px;
}

.contact-direct-btn {
    display: flex;
}

.lead-form-wrap {
    background: var(--color-paper-white);
    padding: 32px 28px;
    border-radius: 24px;
    color: var(--color-ink-black);
}

.form-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-smoke);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--color-hairline);
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 15px;
    outline: none;
    transition: border-color 0.15s ease;
}

.form-input:focus {
    border-color: var(--color-indigo-bolt);
}

.form-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11px;
    color: var(--color-smoke);
    text-align: center;
    margin-top: 12px;
}

/* ── LEAD SUCCESS CARD ─────────────────────────────────────────────────────── */
.lead-success-card {
    text-align: center;
    padding: 24px 8px;
    animation: successFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes successFadeIn {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lead-success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #DCFCE7;
    color: #16A34A;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.18);
}

.lead-success-icon svg {
    width: 32px;
    height: 32px;
}

.lead-success-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-ink-black);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.lead-success-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-graphite);
    margin-bottom: 24px;
}

.lead-success-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #F1F5F9;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 20px;
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0.85;
    pointer-events: none;
}

.btn-spinner {
    width: 18px;
    height: 18px;
    border: 2.5px solid rgba(255, 255, 255, 0.3);
    border-top-color: #FFFFFF;
    border-radius: 50%;
    animation: btnSpin 0.6s linear infinite;
}

@keyframes btnSpin {
    to { transform: rotate(360deg); }
}

/* ── FLOATING WHATSAPP BUTTON ─────────────────────────────────────────────── */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp svg {
    flex-shrink: 0;
}

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
.site-footer {
    padding: 72px 0 36px;
    background-color: var(--color-warm-bone);
    border-top: 1px solid var(--color-hairline);
    font-size: 14px;
    color: var(--color-smoke);
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-col-title {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--color-ink-black);
    margin-bottom: 18px;
    text-transform: uppercase;
}

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

.footer-links-list a {
    color: var(--color-smoke);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.15s ease;
}

.footer-links-list a:hover {
    color: var(--color-indigo-bolt);
}

.footer-brand-col .brand-logo {
    margin-bottom: 14px;
}

.footer-brand-col p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-smoke);
    margin-bottom: 18px;
}

.footer-contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-paper-white);
    border: 1px solid var(--color-hairline);
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    color: var(--color-ink-black);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-contact-badge:hover {
    border-color: #25D366;
    color: #25D366;
}

.footer-bottom-bar {
    padding-top: 28px;
    border-top: 1px solid var(--color-hairline);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: var(--color-smoke);
}

/* ── COOKIE CONSENT BANNER ────────────────────────────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 440px;
    background-color: var(--color-ink-black);
    color: var(--color-paper-white);
    padding: 18px 22px;
    border-radius: 16px;
    z-index: 1000;
    box-shadow: 0 10px 32px rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.12);
    display: block;
    animation: slideUpCookie 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUpCookie {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-banner.hidden {
    display: none !important;
}

.cookie-inner {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cookie-text {
    font-size: 13px;
    line-height: 1.55;
    color: #cbd5e1;
}

.cookie-text a {
    color: var(--color-lime-highlighter);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    justify-content: flex-end;
}

.btn-cookie-accept {
    background-color: var(--color-indigo-bolt);
    color: #ffffff;
    border: none;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-cookie-accept:hover {
    background-color: #315df0;
}

/* ── SCROLL REVEAL ANIMATIONS (INTERSECTION OBSERVER) ──────────────────────── */
html {
    scroll-behavior: smooth;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-scale {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-scale.is-revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Staggered delay for list items & cards */
.stagger-1 { transition-delay: 60ms; }
.stagger-2 { transition-delay: 130ms; }
.stagger-3 { transition-delay: 200ms; }
.stagger-4 { transition-delay: 270ms; }

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll,
    .reveal-scale {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ── RESPONSIVE MEDIA QUERIES ─────────────────────────────────────────────── */
@media (max-width: 1040px) {
    .bento-grid,
    .compare-grid,
    .calc-grid,
    .steps-grid,
    .case-grid,
    .admin-interactive-showcase,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .nav-links, .nav-actions {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .footer-main-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .pricing-card {
        padding: 44px 32px;
    }

    .calculator-card {
        padding: 44px 32px;
    }

    .contact-box {
        padding: 48px 32px;
    }

    .case-card {
        padding: 48px 32px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 18px;
    }

    .header-container {
        height: 64px;
    }

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

    .section-title {
        font-size: clamp(24px, 6vw, 34px);
    }

    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .case-author-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .case-action-btn {
        width: 100%;
        justify-content: center;
    }

    .case-badge-row {
        gap: 10px;
    }

    .case-live-pill-link {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .top-banner {
        padding: 8px 12px;
        font-size: 11.5px;
    }

    .banner-inner {
        gap: 6px;
    }

    .hero-section {
        padding: 44px 0 60px;
    }

    .hero-badge {
        font-size: 11.5px;
        padding: 5px 12px;
        max-width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 29px;
        line-height: 1.18;
        letter-spacing: -0.03em;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 14.5px;
        line-height: 1.5;
        margin-bottom: 24px;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .hero-cta-group .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }

    .hero-trust-bar {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        text-align: center;
        margin-bottom: 20px;
    }

    .hero-sectors-ribbon {
        margin-bottom: 28px;
        gap: 8px;
    }

    .sector-pill {
        font-size: 11px;
        padding: 4px 10px;
    }

    /* iPhone chassis scaling for small screens */
    .iphone-pro-device {
        width: min(305px, calc(100vw - 32px));
        border-radius: 40px;
        padding: 7px;
    }

    .device-screen-frame {
        border-radius: 33px;
    }

    .device-viewport {
        min-height: 480px;
        max-height: 520px;
        padding-top: 90px;
    }

    .ios-status-overlay {
        padding: 6px 16px 0;
    }

    .dynamic-island-pill {
        width: 86px;
        height: 23px;
        top: 6px;
    }

    .ios-safari-bar {
        margin: 2px 10px 8px;
        height: 33px;
    }

    .safari-url-center {
        font-size: 10.5px;
    }

    /* Case Study Mobile Card */
    .case-card {
        padding: 28px 18px;
        border-radius: 20px;
    }

    .case-logo {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .case-title {
        font-size: 19px;
        margin-bottom: 14px;
    }

    .case-quote {
        font-size: 14px;
        line-height: 1.55;
        margin-bottom: 20px;
    }

    .case-real-stats-img {
        margin-top: 18px;
    }

    /* Bento Grid Mobile */
    .bento-card {
        padding: 28px 18px;
        border-radius: 20px;
    }

    .bento-card .card-title {
        font-size: 19px;
    }

    .bento-card .card-desc {
        font-size: 14px;
    }

    /* Admin Showcase Mobile */
    .admin-tab-btn {
        padding: 10px 12px;
        border-radius: 12px;
        gap: 10px;
    }

    .admin-tab-btn .tab-info h4 {
        font-size: 13px;
    }

    .admin-tab-btn .tab-info p {
        font-size: 11px;
    }

    /* Calculator Mobile */
    .calculator-card {
        padding: 28px 18px;
        border-radius: 20px;
    }

    .result-amount-loss {
        font-size: 26px;
    }

    .result-amount-saved {
        font-size: 30px;
    }

    .calc-breakdown-pills span {
        font-size: 11px;
        padding: 3px 8px;
    }

    /* Before / After Mobile */
    .compare-card {
        padding: 28px 18px;
        border-radius: 20px;
    }

    /* Pricing Card Mobile */
    .pricing-card {
        padding: 32px 18px;
        border-radius: 20px;
    }

    .pricing-cost {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
    }

    .cost-number {
        font-size: 40px;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 10px;
        padding: 16px;
    }

    /* FAQ Mobile */
    .faq-question {
        padding: 16px 18px;
        font-size: 14.5px;
    }

    .faq-answer-inner {
        padding: 0 18px 18px;
        font-size: 13.5px;
    }

    /* Contact Lead Form Mobile */
    .contact-box {
        padding: 32px 16px;
        border-radius: 20px;
    }

    .lead-form {
        padding: 22px 16px;
        border-radius: 16px;
    }

    .form-input {
        font-size: 16px; /* Prevents auto-zoom in iOS Safari */
        padding: 12px 14px;
        border-radius: 10px;
    }

    /* Floating WhatsApp Button Mobile */
    .floating-text {
        display: none;
    }

    .floating-whatsapp {
        bottom: 16px;
        right: 16px;
        padding: 12px;
        border-radius: 50%;
    }

    /* Cookie Banner Mobile */
    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
        border-radius: 14px;
        padding: 14px 16px;
    }

    .cookie-text {
        font-size: 12px;
    }
}
