/* ==========================================================================
   QRflex Website Styles — Redesign 2026
   Brand: Orange (#F25F22) + Navy (#1B3A5C)
   ========================================================================== */

/* Font Face — Self-hosted Outfit (latin-ext for Czech diacritics) */
@font-face {
    font-family: 'Outfit';
    src: url('/fonts/outfit-v11-latin-ext-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Outfit';
    src: url('/fonts/outfit-v11-latin-ext-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Outfit';
    src: url('/fonts/outfit-v11-latin-ext-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Font Face — Plus Jakarta Sans for display headings */
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('/fonts/plus-jakarta-sans-latin-ext.woff2') format('woff2');
    font-weight: 600 800;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('/fonts/plus-jakarta-sans-latin.woff2') format('woff2');
    font-weight: 600 800;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --------------------------------------------------------------------------
   CSS Custom Properties (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
    /* Brand */
    --color-orange: #F25F22;
    --color-orange-hover: #D94F1A;
    --color-navy: #1B3A5C;
    --color-navy-light: #224A72;

    /* Surfaces */
    --color-bg: #FAFAF8;
    --color-bg-white: #FFFFFF;
    --color-bg-subtle: #F4F3F0;
    --color-bg-navy: #1B3A5C;
    --color-bg-navy-deep: #122A43;

    /* Text */
    --color-text: #1B3A5C;
    --color-text-body: #3D4F63;
    --color-text-muted: #6B7B8D;
    --color-text-on-navy: #E8ECF0;
    --color-text-on-navy-muted: rgba(232,236,240,0.6);

    /* Borders */
    --color-border: #E2DFD9;
    --color-border-light: #EDEAE5;

    /* Typography */
    --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: Seravek, 'Gill Sans Nova', Ubuntu, Calibri, 'DejaVu Sans', source-sans-pro, sans-serif;

    /* Easing */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-emphasize: cubic-bezier(0.2, 0, 0, 1);

    /* Spacing */
    --page-padding: clamp(1.25rem, 4vw, 3rem);
    --container-max: 1200px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
    --shadow-glow-orange: 0 4px 16px rgba(242, 95, 34, 0.3);
}

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

body {
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--color-bg);
    color: var(--color-text-body);
    line-height: 1.6;
    overflow-x: hidden;
}

main {
    flex: 1;
}

/* Screen reader only - visually hidden but accessible */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(242, 95, 34, 0.2); }
    50% { box-shadow: 0 0 40px rgba(242, 95, 34, 0.4); }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* --------------------------------------------------------------------------
   Accent Text Utility
   -------------------------------------------------------------------------- */
.accent {
    color: var(--color-orange);
}

/* --------------------------------------------------------------------------
   Button System
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9375rem;
    padding: 0.85rem 1.75rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.15s var(--ease-spring),
                background-color 0.15s var(--ease-smooth),
                box-shadow 0.15s var(--ease-smooth);
}

.btn:hover { transform: translateY(-2px); }

.btn:focus-visible {
    outline: 2px solid var(--color-orange);
    outline-offset: 3px;
}

.btn-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.15s var(--ease-smooth);
}

.btn:hover .btn-icon { transform: translateX(3px); }

.btn--primary {
    background: var(--color-orange);
    color: #fff;
}

.btn--primary:hover {
    background: var(--color-orange-hover);
    box-shadow: 0 4px 16px rgba(242, 95, 34, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--color-navy);
    border: 2px solid var(--color-navy);
}

.btn--outline:hover {
    background: var(--color-navy);
    color: #fff;
}

.btn--outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--outline-light:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.btn--large {
    font-size: 1.0625rem;
    padding: 1rem 2.25rem;
}

/* Decorative elements removed in redesign */

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   HEADER — NAVY
   -------------------------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 10000;
    background: var(--color-bg-navy);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-full {
    height: 35px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.15s var(--ease-smooth);
    position: relative;
    padding: 0.25rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-orange);
    transition: width 0.2s var(--ease-smooth);
}

.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Lang switch */
.lang-switch {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    display: flex;
    gap: 0.25rem;
}

.lang-switch a {
    text-decoration: none;
    padding: 0.25rem 0.4rem;
    color: rgba(255,255,255,0.4);
    transition: color 0.15s;
}

.lang-switch a.lang-link--active { color: #fff; }
.lang-switch a:hover { color: var(--color-orange); }

/* Login button */
.btn-login {
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1.25rem;
    background: var(--color-orange);
    transition: all 0.15s var(--ease-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-login:hover {
    background: var(--color-orange-hover);
    transform: translateY(-1px);
}

.btn-login:focus-visible {
    outline: 2px solid var(--color-orange);
    outline-offset: 3px;
}

.btn-login-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Hamburger Menu (Mobile)
   -------------------------------------------------------------------------- */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
    z-index: 10000;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    transition: all 0.2s var(--ease-smooth);
    transform-origin: center;
}

.hamburger.is-active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.is-active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.is-active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive: hide nav/actions on mobile, show hamburger */
@media (max-width: 768px) {
    .header-nav,
    .header-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

/* --------------------------------------------------------------------------
   Mobile Menu Overlay
   -------------------------------------------------------------------------- */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    pointer-events: none;
    visibility: hidden;
}

.mobile-menu::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu.is-open {
    pointer-events: auto;
    visibility: visible;
}

.mobile-menu.is-open::before {
    opacity: 1;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(75vw, 320px);
    background: var(--color-bg-navy);
    display: flex;
    flex-direction: column;
    padding: 5rem 1.5rem 1.5rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

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

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 1.25rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.2s var(--ease-smooth);
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
    color: #fff;
}

.mobile-menu-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: auto;
}

.lang-switch--mobile {
    justify-content: center;
}

.btn-login--mobile {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    justify-content: center;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Hide mobile menu on desktop */
@media (min-width: 769px) {
    .mobile-menu {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
    border-top: 1px solid var(--color-border);
    padding: 2rem 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.footer-left a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.15s var(--ease-smooth);
}

.footer-left a:hover {
    color: var(--color-orange);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-link {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.15s var(--ease-smooth);
}

.footer-link:hover {
    color: var(--color-orange);
}

@media (max-width: 640px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

/* --------------------------------------------------------------------------
   Sections (Common)
   -------------------------------------------------------------------------- */
.section {
    padding: clamp(4rem, 10vw, 7rem) 0;
    position: relative;
}

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

.section--hero {
    padding: 4rem 0 3rem;
    background: transparent;
    position: relative;
    overflow: hidden;
    min-height: 40vh;
    display: flex;
    align-items: center;
}

/* Legacy — kept for subpages; homepage uses .widget-section now */
.section--widget {
    padding: 0 0 5rem;
    position: relative;
}

.section--features {
    background: white;
    position: relative;
    overflow: hidden;
}

.section--stats {
    background: var(--color-orange);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.section--stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.section--cta {
    background: transparent;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

/* .section-badge removed — use .section-eyebrow instead */

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-navy);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-desc {
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    max-width: 50ch;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Hero Section — Asymmetric grid layout
   -------------------------------------------------------------------------- */
.hero {
    padding: clamp(4rem, 12vw, 8rem) 0 clamp(3rem, 8vw, 6rem);
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 95, 34, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fade-in-up 0.8s ease-out;
    will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
    .hero-content {
        animation: none;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-orange);
    margin-bottom: 1.5rem;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-orange);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.03em;
    color: var(--color-navy);
    margin-bottom: 1.25rem;
}

.hero-title .accent {
    color: var(--color-orange);
}

.hero-subtitle {
    font-size: clamp(1.0625rem, 2.5vw, 1.1875rem);
    line-height: 1.6;
    color: var(--color-text-muted);
    max-width: 42ch;
    margin-bottom: 2rem;
}

.text-center .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
}

.hero-stat-value {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero-stat-label {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

/* Hero visual — QR mockup */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-qr-mockup {
    width: 280px;
    height: 280px;
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(27, 58, 92, 0.08);
}

.hero-qr-mockup svg {
    width: 180px;
    height: 180px;
    color: var(--color-navy);
}

.hero-qr-label {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: var(--color-orange);
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.5rem 0.75rem;
}

.hero-float-stat {
    position: absolute;
    top: -1rem;
    left: -2rem;
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    padding: 0.6rem 0.9rem;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-navy);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.hero-float-stat span {
    color: var(--color-orange);
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-cta { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { order: -1; margin-bottom: 2rem; }
    .hero-qr-mockup { width: 200px; height: 200px; }
    .hero-qr-mockup svg { width: 120px; height: 120px; }
    .hero-float-stat { left: -1rem; top: -1rem; }
}

/* --------------------------------------------------------------------------
   Widget Container
   -------------------------------------------------------------------------- */
.widget-container {
    max-width: 900px;
    margin: 0 auto;
    min-height: 680px;
    position: relative;
    z-index: 1;
    contain: layout style;
}

.widget-wrapper {
    background: white;
    border-radius: 0;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--color-border-light);
}

.widget-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 680px;
    background: var(--color-bg-subtle);
    border-radius: 0;
    border: 1px solid rgba(242, 95, 34, 0.2);
}

.widget-loading-inner {
    text-align: center;
    color: var(--color-text-muted);
}

/* Widget section — homepage editor embed */
.widget-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
    scroll-margin-top: 80px;
    background: var(--color-bg-white);
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
}

.widget-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-orange);
    margin-bottom: 0.75rem;
}

.section-eyebrow svg {
    width: 1em;
    height: 1em;
    flex-shrink: 0;
}

.widget-spinner {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    animation: spin 1s linear infinite;
    stroke: var(--color-orange);
    will-change: transform;
}

/* --------------------------------------------------------------------------
   Features Section — Asymmetric Layout
   -------------------------------------------------------------------------- */
.features-header {
    margin-bottom: 3.5rem;
    text-align: center;
}

.features-header .section-desc {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
}

.feature-card {
    padding: clamp(1.5rem, 3vw, 2.25rem);
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    position: relative;
    transition: border-color 0.2s var(--ease-smooth),
                box-shadow 0.2s var(--ease-smooth);
}

.feature-card:hover {
    border-color: var(--color-orange);
    box-shadow: 0 8px 30px rgba(242, 95, 34, 0.06);
}

.feature-num {
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--color-orange);
    margin-bottom: 1rem;
    display: block;
}

.feature-icon {
    width: 40px;
    height: 40px;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
}

.feature-desc {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* First card spans full height of left column */
.feature-card--hero {
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-card--hero .feature-title {
    font-size: 1.375rem;
}

.features-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-orange);
    text-decoration: none;
    margin-top: 2.5rem;
    transition: gap 0.15s var(--ease-smooth);
}

.features-link:hover { gap: 0.7rem; }

.features-link svg { width: 16px; height: 16px; }

@media (max-width: 768px) {
    .features-grid { grid-template-columns: 1fr; }
    .feature-card--hero { grid-row: auto; }
}

/* Steps variant — equal 3-column with arrows */
.features-grid--steps {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
}

.features-grid--steps .feature-card--hero {
    grid-row: auto;
}

.features-grid--steps .feature-card--hero .feature-title {
    font-size: 1.125rem;
}

.feature-step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-orange);
    opacity: 0.4;
}

.feature-step-arrow svg {
    width: 28px;
    height: 28px;
}

@media (max-width: 768px) {
    .features-grid--steps {
        grid-template-columns: 1fr;
    }

    .feature-step-arrow {
        transform: rotate(90deg);
        padding: 0.25rem 0;
    }
}

/* Legacy: features-more-link kept for subpages */
.features-more {
    text-align: center;
    margin-top: 3rem;
}

.features-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    transition: all 0.2s var(--ease-smooth);
    border: 2px solid transparent;
}

.features-more-link:hover {
    background: var(--color-bg-subtle);
    border-color: rgba(242, 95, 34, 0.2);
}

.features-more-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.2s var(--ease-smooth);
}

.features-more-link:hover svg {
    transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   Stats Section — Navy Background
   -------------------------------------------------------------------------- */
.stats {
    background: var(--color-bg-navy);
    padding: clamp(3rem, 8vw, 5rem) 0;
}

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

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

.stat-value {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-on-navy-muted);
}

@media (max-width: 640px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

/* --------------------------------------------------------------------------
   CTA Section — Navy Block
   -------------------------------------------------------------------------- */
.cta {
    padding: clamp(4rem, 10vw, 7rem) 0;
}

.cta-block {
    background: var(--color-bg-navy);
    padding: clamp(3rem, 8vw, 5rem) clamp(2rem, 5vw, 4rem);
    position: relative;
    overflow: hidden;
}

.cta-block::after {
    content: '';
    position: absolute;
    right: -5%;
    top: -30%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 95, 34, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-block > div {
    position: relative;
    z-index: 1;
    max-width: 60%;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.cta-desc {
    font-size: 1.0625rem;
    color: var(--color-text-on-navy-muted);
    margin-bottom: 2rem;
    max-width: 40ch;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-phone-img {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: right bottom;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    z-index: 0;
}

.cta-block--centered {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-block--centered .cta-desc {
    margin-left: auto;
    margin-right: auto;
}

.cta-block--centered .cta-actions {
    justify-content: center;
}

@media (max-width: 768px) {
    .cta-block { text-align: center; }
    .cta-block > div { max-width: 100%; }
    .cta-desc { margin-left: auto; margin-right: auto; }
    .cta-actions { justify-content: center; }
    .cta-block > .cta-phone-img { display: none !important; }
}

/* Legacy CTA button (kept for subpages) */
.btn-cta,
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--color-orange);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.2s var(--ease-smooth);
    box-shadow: var(--shadow-lg), var(--shadow-glow-orange);
}

.btn-cta:hover,
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(242, 95, 34, 0.3);
}

.cta-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.2s var(--ease-smooth);
}

.btn-cta:hover .cta-icon,
.cta-button:hover .cta-icon {
    transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   Registration CTA (after widget)
   -------------------------------------------------------------------------- */
.section--register-cta {
    padding: clamp(3rem, 8vw, 5rem) 0;
    background: var(--color-bg-navy);
    overflow: hidden;
    position: relative;
}

.register-cta {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.register-cta__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.register-cta__desc {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 2rem;
}

.register-cta__btn {
    font-size: 1.0625rem;
    padding: 1rem 2.5rem;
}

.register-cta__note {
    margin: 1.25rem 0 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.02em;
}

/* --------------------------------------------------------------------------
   FAQ Accordion
   -------------------------------------------------------------------------- */
.faq-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
    background: var(--color-bg);
}

.faq-header {
    margin-bottom: 2rem;
    text-align: center;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--color-navy);
    cursor: pointer;
    list-style: none;
}

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

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-orange);
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform 0.2s;
}

details[open] .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 0 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.faq-answer p {
    margin: 0;
}

/* FAQ Page — category grouping */
.faq-category-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-navy);
    margin: 2.5rem 0 0.5rem;
}

.faq-category-title:first-child {
    margin-top: 0;
}

/* --------------------------------------------------------------------------
   Trust Bar
   -------------------------------------------------------------------------- */
.trust {
    padding: 2rem 0;
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
    background: var(--color-bg-white);
}

.trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1.5rem, 4vw, 3rem);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.trust-icon {
    width: 20px;
    height: 20px;
    color: var(--color-orange);
    flex-shrink: 0;
}

.trust-icon-img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Pricing Page
   -------------------------------------------------------------------------- */
.pricing-page {
    min-height: 100vh;
    background: transparent;
    padding: 3rem 1rem;
    overflow-x: hidden;
}

.pricing-widget-container {
    max-width: 80rem;
    margin: 0 auto;
    overflow-x: hidden;
}

.pricing-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    color: var(--color-text-muted);
}

.loading-spinner {
    width: 2.5rem;
    height: 2.5rem;
    border: 3px solid var(--color-border);
    border-top-color: var(--color-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
    will-change: transform;
}

.pricing-sections-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .pricing-sections-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .pricing-sections-container {
        padding: 0 2rem;
    }
}

/* FAQ Section */
.faq-section {
    margin-top: 5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.faq-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-navy);
    text-align: center;
    margin-bottom: 2.5rem;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-card {
    background: white;
    border-radius: 0;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    padding: 1.5rem 2rem;
    transition: all 0.2s var(--ease-smooth);
}

.faq-card:hover {
    border-color: var(--color-orange);
    transform: translateX(4px);
}

.faq-question {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.faq-answer {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   About Page
   -------------------------------------------------------------------------- */
.about-container {
    max-width: 800px;
}

.about-section {
    margin-bottom: 4rem;
}

.about-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 1.25rem;
}

.about-text {
    color: var(--color-text-body);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* Offer List */
.offer-list {
    display: grid;
    gap: 1.5rem;
}

.offer-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.75rem;
    background: white;
    border-radius: 0;
    border: 1px solid var(--color-border);
    transition: all 0.2s var(--ease-smooth);
}

.offer-item:hover {
    border-color: var(--color-orange);
    transform: translateY(-4px);
}

.offer-icon {
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--color-orange);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.offer-icon svg {
    stroke: white;
    width: 24px;
    height: 24px;
}

.offer-title {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.offer-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Contact Box — legacy definition (overridden by About Page Enhanced section below) */

/* --------------------------------------------------------------------------
   Legal Pages
   -------------------------------------------------------------------------- */
/* Compact hero for legal pages */
[data-page-type="legal"] .section--hero {
    min-height: auto;
    padding: 2rem 0 1.5rem;
}

[data-page-type="legal"] .section-header {
    margin-bottom: 0;
}

[data-page-type="legal"] .hero-title {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    margin-bottom: 0.5rem;
}

.legal-container {
    max-width: 800px;
}

.legal-updated {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    margin-top: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--color-bg-subtle);
    border-radius: 0;
}

.legal-updated::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-orange);
    border-radius: 50%;
}

.legal-content {
    margin-top: 1.5rem;
}

.legal-section {
    margin-bottom: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 0;
    border: 1px solid var(--color-border);
    transition: all 0.2s var(--ease-smooth);
}

.legal-section:hover {
    border-color: rgba(242, 95, 34, 0.2);
    box-shadow: var(--shadow-lg);
}

.legal-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.legal-title::before {
    content: '';
    width: 4px;
    height: 1.25rem;
    background: var(--color-orange);
    border-radius: 2px;
    flex-shrink: 0;
}

.legal-text {
    color: var(--color-text-body);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-list li {
    position: relative;
    padding-left: 1.75rem;
    color: var(--color-text-body);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background: var(--color-orange);
    border-radius: 50%;
}

.legal-link {
    color: var(--color-orange);
    text-decoration: none;
    font-weight: 600;
    position: relative;
}

.legal-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-orange);
    transform: scaleX(0);
    transition: transform 0.2s var(--ease-smooth);
}

.legal-link:hover::after {
    transform: scaleX(1);
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.text-center {
    text-align: center;
}

.animate-fade-in {
    animation: fade-in-up 0.6s ease-out forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* --------------------------------------------------------------------------
   Selection & Scrollbar
   -------------------------------------------------------------------------- */
::selection {
    background: rgba(242, 95, 34, 0.2);
    color: var(--color-text);
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-subtle);
}

::-webkit-scrollbar-thumb {
    background: var(--color-orange);
    border-radius: 5px;
    border: 2px solid var(--color-bg-subtle);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-orange-hover);
}

/* --------------------------------------------------------------------------
   Legacy Hero CTA Group (kept for subpages that may reference these classes)
   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   Use Cases Section — Horizontal Scroll
   -------------------------------------------------------------------------- */
.usecases-header {
    margin-bottom: 2.5rem;
}

.usecases-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.25rem;
    padding-bottom: 1rem;
    scrollbar-width: none;
}

.usecases-scroll::-webkit-scrollbar { display: none; }

.usecase-card {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: clamp(260px, 32vw, 300px);
    padding: 1.75rem;
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    transition: border-color 0.2s var(--ease-smooth),
                transform 0.2s var(--ease-spring);
}

.usecase-card:hover {
    border-color: var(--color-orange);
    transform: translateY(-4px);
}

.usecase-card:focus-visible {
    outline: 2px solid var(--color-orange);
    outline-offset: 3px;
}

.usecase-icon {
    width: 36px;
    height: 36px;
    color: var(--color-orange);
    margin-bottom: 1rem;
}

.usecase-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.4rem;
}

.usecase-desc {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin: 0;
}

.usecase-arrow {
    position: absolute;
    bottom: 1.75rem;
    right: 1.75rem;
    width: 16px;
    height: 16px;
    color: var(--color-text-muted);
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.2s var(--ease-smooth);
}

.usecase-card:hover .usecase-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Use Cases More Link */
.usecases-more {
    text-align: center;
    margin-top: 2.5rem;
}

.usecases-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-orange);
    text-decoration: none;
    transition: all 0.2s var(--ease-smooth);
}

.usecases-more-link:hover {
    color: var(--color-orange-hover);
}

.usecases-more-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.2s var(--ease-smooth);
}

.usecases-more-link:hover svg {
    transform: translateX(4px);
}

/* Social Proof (Story 9.1) */
.social-proof {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.social-proof p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-muted);
    font-style: italic;
    margin: 0;
}

/* Large CTA Button Variant (Story 9.1) */
.btn-cta--large {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
}

/* Compare Section (Homepage) — Sticky Sidebar Layout */
.compare {
    padding: clamp(4rem, 10vw, 7rem) 0;
    background: var(--color-bg-white);
}

.compare-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.compare-sticky {
    position: sticky;
    top: 5rem;
}

.compare-sticky .section-title {
    text-align: left;
}

.compare-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.compare-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1.5rem;
    border: 1px solid var(--color-border);
    text-decoration: none;
    transition: border-color 0.2s var(--ease-smooth);
}

.compare-card:hover {
    border-color: var(--color-orange);
}

.compare-card:focus-visible {
    outline: 2px solid var(--color-orange);
    outline-offset: 3px;
}

.compare-vs {
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    width: 2.5rem;
    text-align: center;
}

.compare-info h3 {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.2rem;
}

.compare-info p {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    line-height: 1.4;
    margin: 0;
}

.compare-arrow {
    width: 18px;
    height: 18px;
    color: var(--color-text-muted);
    transition: color 0.15s, transform 0.15s var(--ease-smooth);
}

.compare-card:hover .compare-arrow {
    color: var(--color-orange);
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .compare-layout { grid-template-columns: 1fr; }
    .compare-sticky { position: static; }
}

/* Legacy Compare More Link (kept for subpages) */
.compare-more {
    text-align: center;
    margin-top: 2.5rem;
}

.compare-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-orange);
    text-decoration: none;
    transition: all 0.2s var(--ease-smooth);
}

.compare-more-link:hover {
    color: var(--color-orange-hover);
}

.compare-more-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.2s var(--ease-smooth);
}

.compare-more-link:hover svg {
    transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   Features Page (Story 9.2)
   -------------------------------------------------------------------------- */

/* Compact Hero for subpages */
.section--hero-compact {
    min-height: auto;
    padding: 3rem 0 2rem;
}

/* Feature Category Section */
.section--feature-category {
    padding: 5rem 0;
    background: white;
}

.section--feature-category.section--alt {
    background: var(--color-bg-subtle);
}

.feature-category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.feature-category-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--color-orange);
    color: white;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.feature-category-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}

.feature-category-desc {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* QR Types Grid */
.qr-types-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .qr-types-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.qr-type-group {
    background: white;
    padding: 2rem;
    border-radius: 0;
    border: 1px solid var(--color-border);
    transition: all 0.2s var(--ease-smooth);
    position: relative;
}

.qr-type-group:hover {
    border-color: var(--color-orange);
}

.qr-type-group--highlight {
    border-color: var(--color-orange);
    background: var(--color-bg-subtle);
}

.qr-type-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-orange);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.qr-type-badge--coming-soon {
    background: var(--color-text-muted);
}

.qr-type-group--coming-soon {
    opacity: 0.6;
    position: relative;
}

.qr-type-group--coming-soon .qr-type-list li {
    text-decoration: line-through;
    text-decoration-color: var(--color-border);
}

/* --------------------------------------------------------------------------
   Coming Soon — blur overlay for sections under development
   -------------------------------------------------------------------------- */
.coming-soon-wrapper {
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.coming-soon-wrapper > *:not(.coming-soon-overlay) {
    filter: blur(5px);
    pointer-events: none;
    user-select: none;
}

/* Blur-only wrapper (no overlay text) */
.comparison-blur-wrapper {
    position: relative;
    overflow: hidden;
}

.comparison-blur-wrapper > * {
    filter: blur(5px);
    pointer-events: none;
    user-select: none;
}

.coming-soon-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(250, 250, 248, 0.6);
}


.coming-soon-badge {
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    background: var(--color-navy);
    padding: 0.5rem 1.25rem;
}

.coming-soon-text {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-navy);
    text-align: center;
    max-width: 40ch;
    line-height: 1.5;
}

.qr-type-group-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}

.qr-type-group-title svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-orange);
}

.qr-type-group-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.qr-type-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.qr-type-list li {
    font-size: 0.9rem;
    color: var(--color-text-body);
    padding-left: 1.5rem;
    position: relative;
}

.qr-type-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background: var(--color-orange);
    border-radius: 50%;
}

/* Feature Showcase (2-column layout) */
.feature-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .feature-showcase {
        grid-template-columns: 1fr 1fr;
    }

    .feature-showcase--reverse {
        direction: rtl;
    }

    .feature-showcase--reverse > * {
        direction: ltr;
    }
}

.feature-showcase-content {
    order: 2;
}

@media (min-width: 768px) {
    .feature-showcase-content {
        order: 1;
    }

    .feature-showcase--reverse .feature-showcase-content {
        order: 2;
    }
}

.feature-showcase-visual {
    order: 1;
}

@media (min-width: 768px) {
    .feature-showcase-visual {
        order: 2;
    }

    .feature-showcase--reverse .feature-showcase-visual {
        order: 1;
    }
}

.feature-video {
    width: 100%;
    height: auto;
    border: 1px solid var(--color-border);
    display: block;
}

/* Analytics carousel */
.analytics-carousel-images {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: var(--color-bg-subtle);
}

.carousel-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
}

.carousel-image--active {
    opacity: 1;
}

.feature-benefits-list--carousel .carousel-trigger {
    cursor: pointer;
    transition: background-color 0.2s var(--ease-smooth), border-left-color 0.2s var(--ease-smooth);
    border-left: 3px solid transparent;
    padding-left: 1rem;
    margin-left: -1rem;
}

.feature-benefits-list--carousel .carousel-trigger:hover {
    background: rgba(242, 95, 34, 0.04);
}

.feature-benefits-list--carousel .carousel-trigger--active {
    border-left-color: var(--color-orange);
    background: rgba(242, 95, 34, 0.06);
}

.feature-benefits-list--carousel .carousel-trigger--active strong {
    color: var(--color-orange);
}

.feature-placeholder {
    background: var(--color-bg-subtle);
    border: 2px dashed rgba(242, 95, 34, 0.2);
    border-radius: 0;
    padding: 4rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.feature-placeholder svg {
    width: 64px;
    height: 64px;
    stroke: var(--color-orange);
    opacity: 0.5;
}

.feature-placeholder span {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Feature Benefits List */
.feature-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-benefits-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-benefits-list li > svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    stroke: var(--color-orange);
    margin-top: 0.25rem;
}

.feature-benefits-list li div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.feature-benefits-list li strong {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--color-navy);
}

.feature-benefits-list li span {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Export Formats Grid */
.export-formats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .export-formats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.export-format-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 0;
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all 0.2s var(--ease-smooth);
}

.export-format-card:hover {
    border-color: var(--color-orange);
    transform: translateY(-4px);
}

.export-format-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--color-bg-subtle);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 1px solid var(--color-border);
}

.export-format-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-orange);
}

.export-format-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
}

.export-format-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.export-format-detail {
    font-size: 0.8rem;
    color: var(--color-orange);
    font-weight: 600;
}

/* Comparison Section */
.section--comparison {
    padding: 5rem 0;
    background: white;
}

.comparison-table-wrapper {
    overflow-x: auto;
    overflow-y: visible;
    margin-bottom: 2rem;
    padding-top: 1rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.comparison-table th {
    background: var(--color-bg-navy);
    font-family: var(--font-display);
    font-weight: 600;
    color: #fff;
}

.comparison-feature-col {
    width: 40%;
}

.comparison-plan-col {
    width: 30%;
    text-align: center !important;
}

.comparison-plan-col--highlight {
    background: var(--color-bg-navy-deep) !important;
    position: relative;
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-orange);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.plan-name {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.plan-price {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-on-navy-muted);
}

.comparison-table tbody td {
    vertical-align: middle;
    text-align: center;
}

.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--color-text-body);
}

.check-icon {
    color: var(--color-orange);
    font-weight: 600;
}

.check-yes::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: var(--color-orange);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

.check-no::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: var(--color-text-muted);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
    background-size: 10px;
    background-position: center;
    background-repeat: no-repeat;
}

.check-partial {
    color: var(--color-orange);
    font-weight: 500;
}

.limit-text {
    color: var(--color-text-muted);
    font-weight: 500;
}

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

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--color-text);
    padding: 0.875rem 2rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s var(--ease-smooth);
    border: 2px solid var(--color-border);
}

.btn-secondary:hover {
    border-color: var(--color-orange);
    color: var(--color-orange);
    box-shadow: var(--shadow-md);
}

/* ========================================
   Use Cases Pages
   ======================================== */

/* Breadcrumb */
.use-case-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.use-case-breadcrumb a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.2s var(--ease-smooth);
}

.use-case-breadcrumb a:hover {
    color: var(--color-orange);
}

.use-case-breadcrumb svg {
    width: 14px;
    height: 14px;
    opacity: 0.5;
}

/* Use Cases Grid (Index Page) */
.section--use-cases-grid {
    padding: 4rem 0 5rem;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.use-case-card {
    background: white;
    border-radius: 0;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    border: 2px solid var(--color-border);
    transition: all 0.2s var(--ease-smooth);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.use-case-card:hover {
    border-color: var(--color-orange);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.use-case-card--large {
    grid-column: span 3;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background: var(--color-bg-subtle);
}

.use-case-card--large .use-case-icon {
    flex-shrink: 0;
}

.use-case-card--large .use-case-title {
    margin-bottom: 0.25rem;
}

.use-case-card--large .use-case-link {
    margin-top: 0;
    margin-left: auto;
}

.use-case-icon {
    width: 56px;
    height: 56px;
    background: var(--color-orange);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.use-case-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.use-case-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}

.use-case-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.5;
}

.use-case-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-orange);
    margin-top: auto;
}

.use-case-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s var(--ease-smooth);
}

.use-case-card:hover .use-case-link svg {
    transform: translateX(4px);
}

/* Problems Section */
.section--problems {
    padding: 5rem 0;
    background: var(--color-bg-subtle);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.problem-card {
    background: white;
    border-radius: 0;
    padding: 2rem;
    text-align: center;
    border: 2px solid rgba(239, 68, 68, 0.2);
}

.problem-icon {
    width: 48px;
    height: 48px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.problem-icon svg {
    width: 24px;
    height: 24px;
    color: #ef4444;
}

.problem-card p {
    font-size: 1rem;
    color: var(--color-text-body);
    margin: 0;
    line-height: 1.6;
}

/* Solutions Section */
.section--solutions {
    padding: 5rem 0;
    background: white;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.solution-card {
    background: var(--color-bg-subtle);
    border-radius: 0;
    padding: 2rem;
    border: 2px solid var(--color-border);
}

.solution-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-orange);
    margin-bottom: 1rem;
}

.solution-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 0.75rem;
}

.solution-desc {
    font-size: 1rem;
    color: var(--color-text-body);
    margin: 0;
    line-height: 1.6;
}

/* Examples Section */
.section--examples {
    padding: 5rem 0;
    background: var(--color-bg-subtle);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.example-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    border: 2px solid var(--color-border);
    transition: all 0.2s var(--ease-smooth);
}

.example-card:hover {
    border-color: var(--color-orange);
    box-shadow: var(--shadow-md);
}

.example-visual {
    height: 180px;
    background: var(--color-bg-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
}

.example-placeholder {
    text-align: center;
    color: var(--color-text-muted);
}

.example-placeholder svg {
    width: 48px;
    height: 48px;
    opacity: 0.3;
}

.example-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
    padding: 1.25rem 1.5rem 0.5rem;
}

.example-desc {
    font-size: 0.95rem;
    color: var(--color-text-body);
    margin: 0;
    padding: 0 1.5rem 1.5rem;
    line-height: 1.5;
}

/* Related Use Cases */
.section--related {
    padding: 5rem 0;
    background: white;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.related-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--color-bg-subtle);
    border-radius: 0;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s var(--ease-smooth);
    border: 2px solid transparent;
}

.related-card:hover {
    background: white;
    border-color: var(--color-orange);
    box-shadow: var(--shadow-md);
}

.related-icon {
    width: 40px;
    height: 40px;
    background: var(--color-orange);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.related-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.related-title {
    font-weight: 600;
    color: var(--color-text);
    flex-grow: 1;
}

.related-arrow {
    width: 20px;
    height: 20px;
    color: var(--color-text-muted);
    opacity: 0;
    transition: all 0.2s var(--ease-smooth);
}

.related-card:hover .related-arrow {
    opacity: 1;
    color: var(--color-orange);
}

/* Responsive Use Cases */
@media (max-width: 1024px) {
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .use-case-card--large {
        grid-column: span 2;
    }

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

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

@media (max-width: 768px) {
    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .use-case-card--large {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .use-case-card--large .use-case-link {
        margin-left: 0;
    }

    .problems-grid,
    .solutions-grid,
    .examples-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .section--problems,
    .section--solutions,
    .section--examples,
    .section--related {
        padding: 3rem 0;
    }
}

/* ========================================
   Comparison Pages (Story 9.4)
   ======================================== */

/* Breadcrumb */
.compare-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.compare-breadcrumb a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.2s var(--ease-smooth);
}

.compare-breadcrumb a:hover {
    color: var(--color-orange);
}

.compare-breadcrumb svg {
    width: 14px;
    height: 14px;
    opacity: 0.5;
}

/* Comparisons Grid (Index Page) */
.section--comparisons-grid {
    padding: 4rem 0 5rem;
}

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

.comparison-card {
    background: white;
    border-radius: 0;
    padding: 2.5rem;
    text-decoration: none;
    color: inherit;
    border: 2px solid var(--color-border);
    transition: all 0.2s var(--ease-smooth);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comparison-card:hover {
    border-color: var(--color-orange);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.comparison-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.comparison-logo {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    padding: 0.5rem 1rem;
    background: var(--color-bg-subtle);
    border-radius: 0;
}

.comparison-logo--qrflex {
    background: var(--color-orange);
    color: white;
}

.comparison-vs-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.comparison-summary {
    font-size: 1rem;
    color: var(--color-text-body);
    margin: 0;
    line-height: 1.6;
    text-align: center;
}

.comparison-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-orange);
    margin-top: auto;
}

.comparison-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s var(--ease-smooth);
}

.comparison-card:hover .comparison-link svg {
    transform: translateX(4px);
}

/* Why Compare Section */
.section--why-compare {
    padding: 5rem 0;
    background: var(--color-bg-subtle);
}

.why-compare-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.why-compare-item {
    text-align: center;
    padding: 2rem;
}

.why-compare-icon {
    width: 64px;
    height: 64px;
    background: var(--color-bg-subtle);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.why-compare-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-orange);
}

.why-compare-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 0.75rem;
}

.why-compare-item p {
    font-size: 0.95rem;
    color: var(--color-text-body);
    margin: 0;
    line-height: 1.6;
}

/* Quick Comparison Table */
.section--quick-compare {
    padding: 4rem 0;
    background: white;
}

.quick-compare-wrapper {
    overflow-x: auto;
    padding-top: 0.5rem;
}

.quick-compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.quick-compare-table th,
.quick-compare-table td {
    padding: 1rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.quick-compare-table th {
    background: var(--color-bg-subtle);
    font-weight: 600;
    color: var(--color-text);
}

.compare-feature-col {
    width: 40%;
    text-align: left !important;
}

.compare-qrflex-col {
    width: 30%;
    background: var(--color-bg-subtle) !important;
}

.compare-competitor-col {
    width: 30%;
}

.compare-logo {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 0;
}

.compare-logo--qrflex {
    background: var(--color-orange);
    color: white;
}

.compare-value {
    font-weight: 500;
}

.compare-value--good {
    color: var(--color-orange);
    font-weight: 600;
}

.compare-check {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: var(--color-orange);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
}

.compare-cross {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: #ef4444;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
}

.quick-compare-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--color-text-body);
}

/* Detailed Comparison Sections */
.section--compare-details {
    padding: 5rem 0;
    background: var(--color-bg-subtle);
}

.compare-detail-card {
    background: white;
    border-radius: 0;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 2px solid var(--color-border);
}

.compare-detail-card:last-child {
    margin-bottom: 0;
}

.compare-detail-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.compare-detail-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-orange);
}

.compare-detail-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}

.compare-detail-content p {
    font-size: 1rem;
    color: var(--color-text-body);
    line-height: 1.7;
    margin: 0 0 1.5rem;
}

.compare-verdict {
    padding: 1rem 1.5rem;
    border-radius: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.compare-verdict--qrflex {
    background: var(--color-bg-subtle);
    border-left: 4px solid var(--color-orange);
}

.compare-verdict strong {
    color: var(--color-orange);
}

/* Honest Assessment Section */
.section--honest-assessment {
    padding: 5rem 0;
    background: white;
}

.assessment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.assessment-card {
    padding: 2rem;
    border-radius: 0;
    border: 2px solid var(--color-border);
}

.assessment-card--competitor {
    background: #fef2f2;
    border-color: #fecaca;
}

.assessment-card--qrflex {
    background: var(--color-bg-subtle);
    border-color: var(--color-orange);
}

.assessment-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 1.5rem;
}

.assessment-title svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.assessment-card--competitor .assessment-title svg {
    color: #ef4444;
}

.assessment-card--qrflex .assessment-title svg {
    color: var(--color-orange);
}

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

.assessment-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--color-text-body);
    line-height: 1.5;
}

.assessment-list li:last-child {
    margin-bottom: 0;
}

.assessment-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.assessment-card--competitor .assessment-list li::before {
    background: #f87171;
}

.assessment-card--qrflex .assessment-list li::before {
    background: var(--color-orange);
}

/* Other Comparisons Section */
.section--other-comparisons {
    padding: 4rem 0;
    background: var(--color-bg-subtle);
}

.other-comparisons-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.other-comparison-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2rem;
    background: white;
    border-radius: 0;
    text-decoration: none;
    color: inherit;
    border: 2px solid var(--color-border);
    transition: all 0.2s var(--ease-smooth);
}

.other-comparison-card:hover {
    border-color: var(--color-orange);
    box-shadow: var(--shadow-md);
}

.other-comparison-vs {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.other-comparison-name {
    font-weight: 700;
    color: var(--color-text);
}

.other-comparison-card svg {
    width: 18px;
    height: 18px;
    color: var(--color-text-muted);
    transition: all 0.2s var(--ease-smooth);
}

.other-comparison-card:hover svg {
    color: var(--color-orange);
    transform: translateX(4px);
}

/* Responsive Comparison Pages */
@media (max-width: 1024px) {
    .comparisons-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .comparisons-grid {
        max-width: 100%;
    }

    .why-compare-grid {
        grid-template-columns: 1fr;
    }

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

    .other-comparisons-grid {
        flex-direction: column;
        align-items: center;
    }

    .compare-detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .section--quick-compare,
    .section--compare-details,
    .section--honest-assessment,
    .section--other-comparisons {
        padding: 3rem 0;
    }
}

/* --------------------------------------------------------------------------
   About Page Enhanced (Story 9.6)
   -------------------------------------------------------------------------- */

/* Story Section */
.section--story {
    padding: 5rem 0;
    background: var(--color-bg);
}

.story-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
    }
}

.story-text .about-title {
    margin-bottom: 1.5rem;
}

.about-text--large {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--color-text);
}

.story-highlight {
    position: sticky;
    top: 2rem;
}

.story-quote {
    background: var(--color-bg-subtle);
    border-left: 4px solid var(--color-orange);
    padding: 2rem;
    border-radius: 0;
    margin: 0;
}

.story-quote p {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-text-body);
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* Mission Section */
.section--mission {
    padding: 4rem 0;
    background: var(--color-bg-navy);
}

.mission-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mission-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-orange);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 1rem;
    border-radius: 0;
    margin-bottom: 1.5rem;
}

.mission-statement {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 768px) {
    .mission-statement {
        font-size: 1.5rem;
    }
}

/* Values Section */
.section--values {
    padding: 5rem 0;
    background: var(--color-bg-subtle);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

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

.value-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 0;
    padding: 2rem;
    text-align: center;
    transition: all 0.2s var(--ease-smooth);
}

.value-card:hover {
    border-color: var(--color-orange);
    transform: translateY(-4px);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: rgba(242, 95, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-orange);
}

.value-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-navy);
    margin: 0 0 0.75rem 0;
}

.value-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Offer Section */
.section--offer {
    padding: 5rem 0;
    background: var(--color-bg);
}

/* Contact CTA Section */
.section--contact-cta {
    padding: 5rem 0;
    background: var(--color-bg-subtle);
}

.contact-box {
    background: var(--color-bg-navy);
    border: none;
    border-radius: 0;
    padding: 3rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1rem 0;
}

.contact-text {
    font-size: 1.1rem;
    color: var(--color-text-on-navy-muted);
    margin: 0 0 2rem 0;
}

.contact-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 0;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s var(--ease-smooth);
}

.btn-contact--primary {
    background: var(--color-orange);
    color: white;
}

.btn-contact--primary:hover {
    background: var(--color-orange-hover);
    transform: translateY(-2px);
}

.btn-contact--secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-contact--secondary:hover {
    border-color: var(--color-orange);
    color: var(--color-orange);
}

/* Social Links */
.social-links {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.social-label {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-on-navy-muted);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0;
    color: var(--color-text-on-navy);
    transition: all 0.2s var(--ease-smooth);
}

.social-link:hover {
    background: var(--color-orange);
    color: white;
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   Contact Page (Story 9.6)
   -------------------------------------------------------------------------- */

.contact-container {
    max-width: 1100px;
}

.section--contact {
    padding: 5rem 0;
    background: var(--color-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

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

/* Contact Form */
.contact-form-wrapper {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
}

.form-label .required {
    color: #ef4444;
}

.form-input {
    padding: 0.75em 0;
    font-size: 1rem;
    border: none;
    border-bottom: 2px solid var(--color-border);
    border-radius: 0;
    background: transparent;
    color: var(--color-text);
    transition: all 0.2s var(--ease-smooth);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-orange);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 2rem;
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
    font-family: inherit;
}

.form-group.has-error .form-input {
    border-bottom-color: #ef4444;
}

.form-error {
    font-size: 0.85rem;
    color: #ef4444;
    margin-top: 0.5rem;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--color-orange);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.2s var(--ease-smooth);
}

.btn-submit:hover {
    background: var(--color-orange-hover);
    transform: translateY(-2px);
}

/* Success State */
.contact-success {
    text-align: center;
    padding: 3rem 2rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(242, 95, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--color-orange);
}

.success-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 0.75rem 0;
}

.success-text {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin: 0 0 2rem 0;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-bg-subtle);
    color: var(--color-text);
    font-weight: 600;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.2s var(--ease-smooth);
}

.btn-back:hover {
    background: var(--color-border);
}

/* Contact Info Sidebar */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 0;
    padding: 1.5rem;
}

.info-card--highlight {
    background: var(--color-bg-subtle);
    border-color: var(--color-orange);
}

.info-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-navy);
    margin: 0 0 1.25rem 0;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: var(--color-bg-subtle);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-orange);
}

.info-label {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
}

.info-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
}

a.info-value {
    color: var(--color-orange);
    text-decoration: none;
}

a.info-value:hover {
    text-decoration: underline;
}

.info-text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin: 0 0 1rem 0;
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-orange);
    text-decoration: none;
}

.info-link:hover {
    text-decoration: underline;
}

/* Social Links in Contact */
.social-links-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--color-bg-subtle);
    border-radius: 0;
    color: var(--color-navy);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s var(--ease-smooth);
}

.social-link-item:hover {
    background: var(--color-orange);
    color: white;
}

.social-link-item svg {
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Widget Container - Responsive CLS Prevention
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .widget-container,
    .widget-loading {
        min-height: 720px;
    }
}

@media (max-width: 480px) {
    .widget-container,
    .widget-loading {
        min-height: 780px;
    }
}

/* --------------------------------------------------------------------------
   Reduced Motion — Global Override (must be last)
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
