/**
 * Najazdene.sk - Public Pages Stylesheet
 * Apple-inspired minimalist design
 * Mobile-first responsive
 */

/* ==========================================================================
   1. CSS Variables & Reset
   ========================================================================== */

:root {
    --black: #1d1d1f;
    --gray-900: #1d1d1f;
    --gray-800: #424245;
    --gray-600: #6e6e73;
    --gray-400: #86868b;
    --gray-200: #d2d2d7;
    --gray-100: #f5f5f7;
    --white: #ffffff;
    --blue: #0071e3;
    --blue-hover: #0077ed;
    --green: #34c759;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
    --max-width: 980px;
    --max-width-wide: 1200px;
    --transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    --safe-top: env(safe-area-inset-top);
    --safe-bottom: env(safe-area-inset-bottom);
    --nav-row-height: 48px;
}

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

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--gray-900);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    touch-action: none;
    overscroll-behavior: none;
}

a {
    color: var(--blue);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--blue-hover);
}

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

.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    z-index: 9999;
}

.skip-link:focus {
    top: 10px;
}

/* ==========================================================================
   2. Navigation
   ========================================================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    height: calc(var(--nav-row-height) + var(--safe-top));
    padding-top: var(--safe-top);
}

.nav__inner {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: var(--nav-row-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    min-height: 44px;
    gap: 0.5rem;
    color: var(--black);
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
}

.nav__logo > span {
    display: none;
}

.nav__logo b {
    color: var(--blue);
    font-weight: 700;
}

.nav__logo svg {
    flex-shrink: 0;
}

.nav__links {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav__links a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 0.25rem;
    color: var(--gray-800);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
    color: var(--black);
}

.nav__actions {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

.nav__toggle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    border-radius: 12px;
    transition: background-color var(--transition);
}

.nav__toggle:hover {
    background: rgba(0, 0, 0, 0.04);
}

.nav__toggle span {
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transform-origin: center;
    transition: var(--transition);
}

.nav__toggle span:nth-child(1) {
    transform: translateY(-6px);
}

.nav__toggle span:nth-child(2) {
    transform: translateY(0);
}

.nav__toggle span:nth-child(3) {
    transform: translateY(6px);
}

.nav__toggle.is-open span:first-child {
    transform: rotate(45deg);
}

.nav__toggle.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.4);
}

.nav__toggle.is-open span:last-child {
    transform: rotate(-45deg);
}

.nav__toggle:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
}

.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(2, 6, 23, 0.3);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition), visibility var(--transition);
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: calc(var(--nav-row-height) + var(--safe-top) + 1px);
    left: 0;
    right: 0;
    z-index: 999;
    padding: 0 0.75rem calc(0.875rem + var(--safe-bottom));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-menu__panel {
    width: min(720px, 100%);
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 24px 40px rgba(15, 23, 42, 0.18);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    max-height: min(560px, calc(100vh - (var(--nav-row-height) + var(--safe-top) + var(--safe-bottom) + 13px)));
    overflow-y: auto;
    overscroll-behavior: contain;
}

.mobile-menu__links {
    padding: 0.75rem 0.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.mobile-menu__item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    min-height: 48px;
    padding: 0.75rem 0.875rem;
    border: none;
    border-radius: 12px;
    background: transparent;
    color: var(--gray-800);
    font-size: 1.0625rem;
    font-weight: 550;
    text-decoration: none;
    text-align: left;
    width: 100%;
    cursor: pointer;
    transition: transform 0.14s ease, background-color 0.2s ease, color 0.2s ease;
}

.mobile-menu__item:hover {
    background: rgba(0, 0, 0, 0.04);
    color: var(--black);
}

.mobile-menu__item:active {
    transform: scale(0.985);
    background: rgba(0, 0, 0, 0.08);
}

.mobile-menu__item:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 1px;
}

.mobile-menu__item.is-active {
    background: rgba(0, 113, 227, 0.12);
    color: var(--blue);
}

.mobile-menu__item.is-active .mobile-menu__icon,
.mobile-menu__item.is-active .mobile-menu__chevron {
    color: var(--blue);
}

.mobile-menu__icon {
    color: var(--gray-400);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.mobile-menu__icon svg {
    width: 20px;
    height: 20px;
}

.mobile-menu__label {
    flex: 1;
}

.mobile-menu__chevron {
    color: var(--gray-400);
    font-size: 1.3rem;
    line-height: 1;
}

.mobile-menu__separator {
    height: 1px;
    background: var(--gray-200);
    margin: 0.4rem 0.5rem;
}

.mobile-menu__theme-toggle.theme-toggle {
    justify-content: flex-start;
    width: 100%;
    height: auto;
    border-radius: 12px;
    color: var(--gray-800);
}

.mobile-menu__theme-toggle.theme-toggle:hover {
    background: rgba(0, 0, 0, 0.04);
    color: var(--black);
}

.mobile-menu__theme-toggle .mobile-menu__icon {
    position: relative;
}

.mobile-menu__theme-toggle .icon-sun,
.mobile-menu__theme-toggle .icon-moon {
    position: absolute;
    inset: 0;
}

.mobile-menu__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--blue);
    color: var(--white) !important;
    font-size: 1rem;
    font-weight: 650;
    text-align: center;
    padding: 1rem !important;
    border-radius: 12px;
    margin-top: 0.35rem;
    border: none !important;
    min-height: 48px;
    transition: transform 0.14s ease, background-color 0.2s ease;
}

.mobile-menu__cta:hover {
    background: var(--blue-hover);
}

.mobile-menu__cta:active {
    transform: scale(0.985);
}

.mobile-menu__cta svg {
    width: 16px;
    height: 16px;
}

@keyframes menuItemSlideIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu.is-open .mobile-menu__item,
.mobile-menu.is-open .mobile-menu__cta {
    animation: menuItemSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: calc(var(--item-index, 0) * 0.04s);
}

@media (prefers-reduced-motion: reduce) {
    .mobile-menu,
    .mobile-menu-backdrop,
    .mobile-menu__item,
    .mobile-menu__cta,
    .nav__toggle span {
        transition: none !important;
        animation: none !important;
    }
}

/* Desktop */
@media (min-width: 768px) {
    :root {
        --nav-row-height: 52px;
    }

    .nav {
        height: calc(var(--nav-row-height) + var(--safe-top));
    }

    .nav__links {
        display: flex;
    }

    .nav__actions {
        display: flex;
    }

    .nav__toggle {
        display: none;
    }

    .mobile-menu,
    .mobile-menu-backdrop {
        display: none !important;
    }
}

@media (min-width: 900px) {
    .nav__logo > span {
        display: inline;
    }
}

/* ==========================================================================
   3. Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 980px;
    min-height: 44px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

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

.btn--primary:hover {
    background: var(--blue-hover);
    color: var(--white);
}

.btn--ghost {
    background: transparent;
    color: var(--blue);
}

.btn--ghost:hover {
    background: rgba(0, 113, 227, 0.1);
}

.btn--large {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}

.btn--black {
    background: var(--black);
    color: var(--white);
}

.btn--black:hover {
    background: var(--gray-800);
    color: var(--white);
}

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

.btn--outline:hover {
    background: var(--blue);
    color: var(--white);
}

/* ==========================================================================
   4. Hero Section
   ========================================================================== */

.hero {
    padding: 7rem 1.5rem 4rem;
    text-align: center;
    background: var(--gray-100);
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero__badge {
    display: inline-block;
    background: var(--blue);
    color: var(--white);
    padding: 0.375rem 0.875rem;
    border-radius: 980px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
}

.hero__title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-bottom: 1rem;
}

.hero__subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.5;
}

.hero__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1rem;
}

.hero__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.hero__note-item {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}

.hero__note-item svg {
    color: var(--green);
    flex-shrink: 0;
}

.hero__visual {
    margin-top: 3rem;
}

.hero__mockup {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    max-width: 360px;
    margin: 0 auto;
    overflow: hidden;
}

.mockup__header {
    display: flex;
    gap: 6px;
    padding: 12px 16px;
    background: var(--gray-100);
}

.mockup__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup__dot--red { background: #ff5f57; }
.mockup__dot--yellow { background: #febc2e; }
.mockup__dot--green { background: #28c840; }

.mockup__content {
    padding: 1.5rem;
}

.mockup__stat {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.mockup__stat:last-child {
    border-bottom: none;
}

.mockup__stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
}

.mockup__stat-label {
    font-size: 0.8125rem;
    color: var(--gray-600);
}

@media (min-width: 768px) {
    .hero {
        padding: 8rem 2rem 5rem;
    }

    .hero__actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* ==========================================================================
   5. Sections
   ========================================================================== */

.section {
    padding: 4rem 1.5rem;
}

.section--gray {
    background: var(--gray-100);
}

.section--dark {
    background: var(--black);
    color: var(--white);
}

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

.section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.section__eyebrow {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.section__title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-bottom: 1rem;
}

.section--dark .section__title {
    color: var(--white);
}

.section__subtitle {
    font-size: 1.0625rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.section--dark .section__subtitle {
    color: var(--gray-400);
}

@media (min-width: 768px) {
    .section {
        padding: 6rem 2rem;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 2.5rem 1rem;
    }

    .section__header {
        margin-bottom: 2rem;
    }

    .section__title {
        line-height: 1.2;
    }

    .section__eyebrow {
        font-size: 0.8125rem;
    }
}

/* ==========================================================================
   6. Feature Cards
   ========================================================================== */

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

.feature-card {
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
    border: 1px solid var(--gray-200);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    background: var(--blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.feature-card__icon svg {
    width: 24px;
    height: 24px;
}

.feature-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.feature-card__text {
    font-size: 0.9375rem;
    color: var(--gray-700);
    line-height: 1.5;
}

@media (min-width: 600px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

@media (max-width: 600px) {
    .feature-card {
        padding: 1.5rem;
        border-radius: 14px;
        box-shadow: 0 4px 12px rgba(15, 23, 42, 0.07);
    }

    .feature-card__icon {
        width: 44px;
        height: 44px;
        border-radius: 11px;
        margin-bottom: 0.75rem;
    }

    .feature-card__title {
        font-size: 1rem;
    }

    .feature-card__text {
        font-size: 0.875rem;
    }

    .features-grid {
        gap: 1rem;
    }
}

/* ==========================================================================
   7. Compliance Banner
   ========================================================================== */

.compliance {
    background: var(--black);
    color: var(--white);
    padding: 3rem 1.5rem;
}

.compliance__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.compliance__icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.compliance__icon svg {
    width: 28px;
    height: 28px;
    color: var(--green);
}

.compliance__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.compliance__text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .compliance {
        padding: 4rem 2rem;
    }

    .compliance__inner {
        flex-direction: row;
        text-align: left;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .compliance {
        padding: 2rem 1rem;
    }

    .compliance__title {
        font-size: 1.25rem;
    }

    .compliance__text {
        font-size: 0.875rem;
    }
}

/* ==========================================================================
   8. Pricing
   ========================================================================== */

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

.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all var(--transition);
}

.pricing-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.pricing-card--popular {
    border-color: var(--blue);
    box-shadow: 0 8px 30px rgba(0, 113, 227, 0.15);
    padding-top: 2.9rem;
    overflow: visible;
}

.pricing-card__badge {
    position: absolute;
    top: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: var(--white);
    padding: 0.375rem 1rem;
    border-radius: 980px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: normal;
    max-width: calc(100% - 2rem);
    text-align: center;
    line-height: 1.2;
}

.pricing-card__name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.pricing-card__amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
}

.pricing-card__currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-600);
}

.pricing-card__period {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.pricing-card__vat {
    font-size: 0.75rem;
    color: var(--gray-400, #86868b);
    margin-top: 2px;
}

.pricing-card__desc {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-card__features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.pricing-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: var(--gray-800);
}

.pricing-card__features svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--green);
}

.pricing-card__features .disabled {
    color: var(--gray-400);
}

.pricing-card__features .disabled svg {
    color: var(--gray-300);
}

.pricing-card .btn {
    width: 100%;
    padding: 0.875rem;
}

@media (min-width: 600px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .pricing-card {
        padding: 2.5rem 1.5rem;
    }
}

/* ==========================================================================
   9. Contact
   ========================================================================== */

.contact-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.contact-form-wrapper {
    max-width: 720px;
    margin: 0 auto;
}

.contact-form {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 2.5rem;
}

.contact-form__header {
    margin-bottom: 2rem;
}

.contact-form__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.375rem;
}

.contact-form__subtitle {
    font-size: 0.9375rem;
    color: var(--gray-500, #86868b);
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.contact-form__submit {
    width: 100%;
}

/* Pathway selector */
.contact-pathway {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.contact-pathway__card {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    background: var(--white);
    border: 1.5px solid var(--gray-200, #e8e8ed);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
    text-align: left;
    font-family: inherit;
}

.contact-pathway__card:hover:not(.contact-pathway__card--active) {
    border-color: var(--gray-300, #d2d2d7);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.contact-pathway__card--active {
    border-color: var(--blue);
    background: rgba(0, 113, 227, 0.04);
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}

.contact-pathway__card--active:hover {
    border-color: var(--blue);
    background: rgba(0, 113, 227, 0.04);
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}

.contact-pathway__card:focus-visible {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.18);
}

.contact-pathway__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--gray-100, #f5f5f7);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gray-500, #86868b);
    transition: all 0.2s ease;
}

.contact-pathway__card--active .contact-pathway__icon {
    background: rgba(0, 113, 227, 0.1);
    color: var(--blue);
}

.contact-pathway__title {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--black);
}

.contact-pathway__desc {
    display: block;
    font-size: 0.8125rem;
    color: var(--gray-500, #86868b);
    margin-top: 0.125rem;
}

/* GDPR legal text */
.contact-form__legal {
    margin-top: 1rem;
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--gray-500, #86868b);
    text-align: center;
}

.contact-form__legal a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-form__legal a:hover {
    color: #0051a3;
}

/* Self-service hint */
.contact-selfservice {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--gray-200, #e8e8ed);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.contact-selfservice__text {
    font-size: 0.875rem;
    color: var(--gray-600, #6e6e73);
}

.contact-selfservice__link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--blue);
    white-space: nowrap;
    text-decoration: none;
}

.contact-selfservice__link:hover {
    text-decoration: underline;
}

@media (max-width: 540px) {
    .contact-pathway {
        grid-template-columns: 1fr;
    }
    .contact-selfservice {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 6rem 1.25rem 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-form__header {
        margin-bottom: 1.5rem;
    }

    .contact-form__title {
        font-size: 1.25rem;
    }

    .contact-info-card {
        padding: 1rem 1.25rem;
    }
}

/* Topic chips */
.topic-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.topic-chip {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0.625rem 1rem;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--black);
    background: var(--gray-100, #f5f5f7);
    border: 1.5px solid transparent;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
    white-space: nowrap;
    -webkit-user-select: none;
    user-select: none;
}

.topic-chip:hover {
    background: var(--gray-200, #e8e8ed);
}

.topic-chip--active {
    color: var(--blue);
    background: rgba(0, 113, 227, 0.08);
    border-color: var(--blue);
}

.topic-chip--active:hover {
    background: rgba(0, 113, 227, 0.12);
}

/* Character counter */
.form-textarea__footer {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 0.375rem;
}

.char-counter {
    font-size: 0.75rem;
    color: var(--gray-500, #86868b);
    margin-left: auto;
    font-variant-numeric: tabular-nums;
    transition: color 0.2s ease;
}

.char-counter--warn {
    color: #f59e0b;
}

.char-counter--limit {
    color: #ef4444;
    font-weight: 600;
}

/* Inline validation */
.form-input--error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.form-error {
    display: block;
    margin-top: 0.375rem;
    font-size: 0.8125rem;
    color: #ff3b30;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    color: var(--black);
    background: var(--gray-100);
    border: 1px solid transparent;
    border-radius: 12px;
    transition: all var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    background: var(--white);
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    transition: all 0.25s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.contact-info-card:hover {
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
}

.contact-info-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.contact-info-card:hover .contact-info-card__icon {
    transform: scale(1.05);
}

.contact-info-card__icon--location {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
}

.contact-info-card__icon--location svg {
    color: #dc2626;
}

.contact-info-card__icon--clock {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.contact-info-card__icon--clock svg {
    color: #2563eb;
}

.contact-info-card__icon--phone {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}

.contact-info-card__icon--phone svg {
    color: #059669;
}

.contact-info-card__icon--email {
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
}

.contact-info-card__icon--email svg {
    color: #7c3aed;
}

.contact-info-card__icon svg {
    width: 22px;
    height: 22px;
}

.contact-info-card__title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-500, #86868b);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.contact-info-card__text {
    font-size: 0.9375rem;
    color: var(--black);
    line-height: 1.6;
}

.contact-info-card__text strong {
    font-weight: 600;
}

.contact-info-card__link {
    color: var(--blue);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.contact-info-card__link:hover {
    color: #0051a3;
}

.contact-info-card__email {
    display: inline-block;
}

.contact-email--hidden {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.875rem;
    background: var(--gray-100, #f5f5f7);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.contact-email--hidden:hover {
    background: var(--gray-200, #e8e8ed);
}

.contact-email__lock-icon {
    flex-shrink: 0;
    opacity: 0.6;
}

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

.contact-info-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-500, #86868b);
    background: var(--gray-100, #f5f5f7);
    padding: 0.25rem 0.625rem;
    border-radius: 100px;
}

.contact-info-card__badge--always {
    color: #059669;
    background: #ecfdf5;
}


@media (min-width: 768px) {
    .contact-cards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

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

    .contact-form {
        padding: 3rem;
    }
}

/* ==========================================================================
   10. FAQ
   ========================================================================== */

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 1.5rem;
}

.faq-item__question {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.faq-item__answer {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

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

/* ==========================================================================
   11. CTA Section
   ========================================================================== */

.cta {
    padding: 4.25rem 1.5rem;
    text-align: center;
    background: var(--gray-100);
}

.cta__inner {
    max-width: 600px;
    margin: 0 auto;
}

.cta__title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.cta__text {
    font-size: 1.0625rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.cta__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

@media (min-width: 768px) {
    .cta {
        padding: 6rem 2rem;
    }

    .cta__actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* ==========================================================================
   12. Footer
   ========================================================================== */

.footer {
    position: relative;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    padding: 2.5rem 1.5rem calc(1.5rem + var(--safe-bottom));
    border-top: 1px solid var(--gray-200);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 113, 227, 0.2) 50%, transparent 100%);
}

.footer__inner {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer__brand {
    max-width: none;
}

.footer__logo {
    display: flex;
    align-items: center;
    min-height: 44px;
    gap: 0.625rem;
    color: var(--black);
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-decoration: none;
    margin-bottom: 0.75rem;
}

.footer__logo b {
    color: var(--primary);
    font-weight: 700;
}

.footer__brand p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
    max-width: 40ch;
}

.footer__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.875rem 1rem;
    padding: 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.footer__col {
    display: flex;
    flex-direction: column;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.footer__col:nth-child(3) {
    grid-column: 1 / -1;
}

.footer__col--legal {
    padding: 0.8rem 0 0;
    border-top: 1px solid rgba(148, 163, 184, 0.26);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem 0.9rem;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.footer .email-protect {
    display: block;
}

.footer__col h4 {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.footer__col--legal h4 {
    margin: 0;
    padding-left: 0;
}

.footer__col a,
.footer .footer__col .email-protect__trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    min-height: 38px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-800);
    padding: 0.25rem 0;
    line-height: 1.35;
    white-space: normal;
    transition: color var(--transition);
}

.footer__legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    align-items: center;
}

.footer__col--legal a {
    width: auto;
    min-height: auto;
    padding: 0.1rem 0;
    border: none;
    border-radius: 0;
    background: transparent;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.3;
    white-space: nowrap;
    box-shadow: none;
    position: relative;
    transition: color var(--transition);
}

.footer__legal-links a + a {
    margin-left: 0.75rem;
    padding-left: 0.75rem;
}

.footer__legal-links a + a::before {
    content: '\00b7';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
}

.footer__col--legal a::after {
    content: none;
}

.footer__col--legal a:hover {
    transform: none;
    background: transparent;
    border-color: transparent;
    color: var(--blue);
}

.footer .footer__col .email-protect__trigger {
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.footer__col a:hover,
.footer .footer__col .email-protect__trigger:hover {
    color: var(--blue);
}

.footer .email-protect__revealed {
    display: flex;
    align-items: center;
    min-height: 38px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-800);
    padding: 0.25rem 0;
    white-space: nowrap;
}

.footer .email-protect__revealed:hover {
    color: var(--blue);
}

.footer__meta {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    padding-top: 1.25rem;
    border-top: 1px solid var(--gray-200);
}

.footer__bottom {
    text-align: center;
}

.footer__bottom-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.25rem 0.5rem;
    margin-bottom: 0.75rem;
}

.footer__bottom-row p {
    margin: 0;
    font-size: 0.75rem;
    color: var(--gray-400);
}

.footer__dot {
    font-size: 0.75rem;
    color: var(--gray-300);
}

.footer__legal {
    margin-top: 0;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(148, 163, 184, 0.24);
    text-align: center;
}

.footer__legal-line {
    display: block;
    margin: 0;
    font-size: 0.6875rem;
    color: var(--gray-400);
    line-height: 1.5;
}

@media (min-width: 768px) {
    .footer {
        padding: 4rem 2rem 2rem;
    }

    .footer__inner {
        grid-template-columns: minmax(260px, 1.05fr) 1.95fr;
        align-items: start;
        gap: 2.5rem;
        margin-bottom: 2rem;
    }

    .footer__nav {
        grid-template-columns: repeat(3, minmax(140px, 1fr));
        gap: 1.5rem;
        padding: 0;
        border: none;
        border-radius: 0;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .footer__col:nth-child(3) {
        grid-column: auto;
    }

    .footer__col {
        padding: 0;
        border: none;
        border-radius: 0;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .footer__col--legal {
        display: block;
        padding: 0;
        border-top: none;
    }

    .footer__col a,
    .footer .footer__col .email-protect__trigger {
        min-height: 32px;
        font-size: 0.875rem;
        padding: 0.2rem 0;
    }

    .footer__legal-links {
        display: block;
    }

    .footer__legal-links a + a {
        margin-left: 0;
        padding-left: 0;
    }

    .footer__legal-links a + a::before {
        content: none;
    }

    .footer__col--legal a {
        width: 100%;
        min-height: 32px;
        padding: 0.2rem 0;
        border: none;
        border-radius: 0;
        background: transparent;
        font-size: 0.875rem;
    }

    .footer .email-protect__revealed {
        min-height: 32px;
        font-size: 0.875rem;
        padding: 0.2rem 0;
    }

    .footer__meta {
        padding-top: 1.5rem;
    }

    .footer__bottom-row {
        justify-content: flex-start;
        margin-bottom: 0.625rem;
    }

    .footer__bottom-row p {
        font-size: 0.75rem;
    }

    .footer__legal-line {
        font-size: 0.8125rem;
    }
}

/* ==========================================================================
   13. Utility Classes
   ========================================================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Check Icon */
.icon-check {
    width: 20px;
    height: 20px;
    color: var(--green);
}

/* ==========================================================================
   14. Page Hero (Inner pages)
   ========================================================================== */

.page-hero {
    padding: 7rem 1.5rem 3rem;
    text-align: center;
    background: var(--gray-100);
}

.page-hero__title {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.page-hero__subtitle {
    font-size: 1.0625rem;
    color: var(--gray-600);
    max-width: 500px;
    margin: 0 auto;
}

.page-hero__actions {
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .page-hero {
        padding: 8rem 2rem 4rem;
    }
}

@media (max-width: 600px) {
    .page-hero {
        padding: 5.5rem 1rem 2rem;
    }

    .page-hero__subtitle {
        font-size: 0.9375rem;
        max-width: 100%;
    }

    .page-hero__actions {
        margin-top: 1.25rem;
    }

    .page-hero__actions .btn {
        width: 100%;
        min-height: 48px;
    }
}

/* ==========================================================================
   15. Feature List (Features page)
   ========================================================================== */

.feature-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.feature-list__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--gray-800);
}

.feature-list__item svg {
    width: 20px;
    height: 20px;
    color: var(--green);
    flex-shrink: 0;
}

/* ==========================================================================
   16. Alert
   ========================================================================== */

.alert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.alert--success {
    background: rgba(52, 199, 89, 0.1);
    color: #1a7431;
}

.alert--success svg {
    width: 20px;
    height: 20px;
    color: var(--green);
}

.alert--error {
    background: rgba(255, 59, 48, 0.1);
    color: #991b1b;
}

.alert--error svg {
    width: 20px;
    height: 20px;
    color: #dc2626;
}

/* ==========================================================================
   17. Toggle (Pricing)
   ========================================================================== */

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.pricing-toggle__label {
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.pricing-toggle__label--active {
    color: var(--black);
    font-weight: 600;
}

.toggle {
    position: relative;
    width: 52px;
    height: 28px;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle__slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: var(--gray-300);
    border-radius: 28px;
    transition: var(--transition);
}

.toggle__slider::before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background: var(--white);
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.toggle input:checked + .toggle__slider {
    background: var(--blue);
}

.toggle input:checked + .toggle__slider::before {
    transform: translateX(24px);
}

.badge--save {
    background: var(--green);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.25rem;
}

/* ==========================================================================
   18. Hero Section - Premium
   ========================================================================== */

.hero__countdown {
    margin-bottom: 1.5rem;
    text-align: center;
}

.countdown {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--black);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    margin-bottom: 0.5rem;
}

.countdown__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 48px;
}

.countdown__number {
    font-size: 1.5rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

.countdown__label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.7;
    margin-top: 0.25rem;
}

.countdown__separator {
    font-size: 1.25rem;
    font-weight: 700;
    opacity: 0.5;
}

/* Hero Notice — Professional Status Badge */
.hero__notice {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(52, 199, 89, 0.06);
    border: 1px solid rgba(52, 199, 89, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.5rem 1.25rem 0.5rem 0.625rem;
    border-radius: 980px;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.hero__notice:hover {
    background: rgba(52, 199, 89, 0.1);
    border-color: rgba(52, 199, 89, 0.28);
    transform: translateY(-1px);
}

.hero__notice-indicator {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.hero__notice-dot {
    width: 8px;
    height: 8px;
    background: #34c759;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(52, 199, 89, 0.5);
}

.hero__notice-dot::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px solid rgba(52, 199, 89, 0.35);
    animation: notice-ring 2.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes notice-ring {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2.4); opacity: 0; }
}

.hero__notice-icon {
    width: 16px;
    height: 16px;
    color: #34c759;
    flex-shrink: 0;
}

.hero__notice-text {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-900);
    letter-spacing: -0.01em;
}

.hero__notice-sep {
    width: 1px;
    height: 14px;
    background: rgba(52, 199, 89, 0.25);
    flex-shrink: 0;
}

.hero__notice-highlight {
    font-size: 0.75rem;
    font-weight: 700;
    color: #34c759;
    letter-spacing: 0.01em;
}

.hero__countdown-text {
    font-size: 0.8125rem;
    color: var(--gray-600);
}

/* Email Protection — Click to Reveal */
.email-protect {
    display: inline-block;
}

.email-protect__trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: var(--gray-600);
    font-size: inherit;
    font-family: inherit;
    padding: 0;
    cursor: pointer;
    transition: color 0.2s ease;
}

.email-protect__trigger:hover {
    color: var(--blue);
}

.email-protect__trigger svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.email-protect__revealed {
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.2s ease;
    animation: email-reveal 0.3s ease-out;
}

.email-protect__revealed:hover {
    color: var(--blue);
}

@keyframes email-reveal {
    from { opacity: 0; transform: translateY(2px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero__title-highlight {
    background: linear-gradient(135deg, var(--blue) 0%, #00c6ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.hero__stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding: 1.75rem 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.hero__stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.02em;
}

.hero__stat-label {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.hero__stat-divider {
    width: 1px;
    height: 32px;
    background: var(--gray-200);
}

@media (max-width: 600px) {
    .hero__stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 0.875rem 1rem;
        padding: 1.25rem 1rem;
    }

    .hero__stat {
        flex: 1 1 calc(33.333% - 0.75rem);
        min-width: 92px;
    }

    .hero__stat-divider {
        display: none;
    }
}

/* Button Glow Effect */
.btn--glow {
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 113, 227, 0.4);
}

.btn--glow:hover {
    box-shadow: 0 6px 20px rgba(0, 113, 227, 0.5);
    transform: translateY(-1px);
}

.btn__icon {
    flex-shrink: 0;
}

/* ==========================================================================
   19. Problem Section
   ========================================================================== */

.problem {
    padding: 4rem 1.5rem;
    background: var(--white);
}

@media (max-width: 600px) {
    .problem {
        padding: 3rem 1.25rem;
    }
}

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

.problem__content {
    text-align: center;
}

.problem__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ee5a24;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.problem__title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.problem__text {
    font-size: 1.0625rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.problem__comparison {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.problem__option {
    padding: 1.5rem;
    border-radius: 16px;
    text-align: left;
}

.problem__option--bad {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe3e3 100%);
    border: 1px solid #fecaca;
}

.problem__option--good {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px solid #bbf7d0;
}

.problem__option-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.125rem;
}

.problem__option--bad .problem__option-header {
    color: #dc2626;
}

.problem__option--bad .problem__option-header svg {
    color: #dc2626;
}

.problem__option--good .problem__option-header {
    color: #16a34a;
}

.problem__option--good .problem__option-header svg {
    color: #16a34a;
}

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

.problem__list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9375rem;
    color: var(--gray-800);
}

.problem__option--bad .problem__list li::before {
    content: "×";
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: 700;
}

.problem__option--good .problem__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 700;
}

@media (min-width: 600px) {
    .problem__comparison {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .problem {
        padding: 6rem 2rem;
    }
}

/* ==========================================================================
   20. Calculator Section - Premium Design
   ========================================================================== */

.calculator-section {
    padding: 4rem 1.5rem;
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}

.calculator-section__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.calculator-section__header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.calculator-section__badge {
    display: inline-block;
    background: var(--blue);
    color: var(--white);
    padding: 0.375rem 0.875rem;
    border-radius: 980px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
}

.calculator-section__title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.calculator-section__subtitle {
    font-size: 1.0625rem;
    color: var(--gray-600);
    max-width: 500px;
    margin: 0 auto;
}

.calculator {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.calculator__main {
    display: grid;
    grid-template-columns: 1fr;
}

.calculator__inputs {
    padding: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.calculator__input-group {
    margin-bottom: 1.75rem;
}

.calculator__input-group:last-child {
    margin-bottom: 0;
}

.calculator__input-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.calculator__label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--black);
}

.calculator__label svg {
    color: var(--blue);
}

.calculator__label--small {
    font-size: 0.875rem;
}

.calculator__value-display {
    font-size: 1rem;
    font-weight: 700;
    color: var(--blue);
    background: rgba(0, 113, 227, 0.1);
    padding: 0.375rem 0.75rem;
    border-radius: 8px;
}

.calculator__slider-container {
    position: relative;
}

.calculator__slider {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--gray-200);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
}

.calculator__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--blue);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 113, 227, 0.4);
    transition: all 0.2s ease;
}

.calculator__slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.5);
}

.calculator__slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--blue);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 113, 227, 0.4);
}

.calculator__slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--gray-400);
}

.calculator__input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.calculator__input-group--compact {
    margin-bottom: 0;
}

.calculator__number-input {
    position: relative;
    display: flex;
    align-items: center;
}

.calculator__input {
    width: 100%;
    padding: 0.875rem 3rem 0.875rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    background: var(--gray-100);
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.calculator__input:focus {
    outline: none;
    background: var(--white);
    border-color: var(--blue);
}

.calculator__input-unit {
    position: absolute;
    right: 1rem;
    font-size: 0.875rem;
    color: var(--gray-400);
    pointer-events: none;
}

/* Calculator Results */
.calculator__results {
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.calculator__comparison-visual {
    margin-bottom: 2rem;
}

.calculator__bar-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.calculator__bar {
    position: relative;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.calculator__bar-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
}

.calculator__bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    transition: width 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.calculator__bar--full .calculator__bar-fill {
    width: 100%;
    background: linear-gradient(90deg, rgba(52, 199, 89, 0.15) 0%, rgba(52, 199, 89, 0.05) 100%);
}

.calculator__bar--half .calculator__bar-fill {
    width: 50%;
    background: linear-gradient(90deg, rgba(255, 149, 0, 0.15) 0%, rgba(255, 149, 0, 0.05) 100%);
}

.calculator__bar-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green);
    color: var(--white);
    border-radius: 8px;
    flex-shrink: 0;
}

.calculator__bar-icon--warning {
    background: #ff9500;
}

.calculator__bar-label {
    flex: 1;
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.calculator__bar-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--black);
}

.calculator__arrow {
    display: none;
}

/* Savings Card */
.calculator__savings-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.calculator__savings-header {
    margin-bottom: 0.5rem;
}

.calculator__savings-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.calculator__savings-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.calculator__savings-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
    transition: transform 0.3s ease;
}

.calculator__savings-currency {
    font-size: 2rem;
    font-weight: 600;
    color: var(--green);
}

.calculator__savings-note {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.calculator__savings-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-100);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.calculator__detail {
    text-align: center;
}

.calculator__detail-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-bottom: 0.25rem;
}

.calculator__detail-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
}

.calculator__cta {
    width: 100%;
    margin-bottom: 1rem;
}

.calculator__cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--gray-400);
}

.calculator__cta-note svg {
    flex-shrink: 0;
}

.calculator__footer {
    padding: 1rem 2rem;
    background: var(--gray-100);
    border-top: 1px solid var(--gray-200);
}

.calculator__info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.calculator__info svg {
    flex-shrink: 0;
    color: var(--gray-400);
}

/* Calculator Animations */
.calculator__savings-value {
    animation: none;
}

.calculator__savings-value.calculator__highlight {
    animation: pop 0.3s ease;
}

@keyframes pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@media (min-width: 768px) {
    .calculator-section {
        padding: 6rem 2rem;
    }

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

    .calculator__inputs {
        border-bottom: none;
        border-right: 1px solid var(--gray-200);
    }

    .calculator__arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: -40px;
        top: 50%;
        transform: translateY(-50%);
        width: 48px;
        height: 48px;
        background: var(--blue);
        color: var(--white);
        border-radius: 50%;
        box-shadow: 0 4px 15px rgba(0, 113, 227, 0.3);
    }

    .calculator__comparison-visual {
        position: relative;
    }

    .calculator__savings-value {
        font-size: 4rem;
    }
}

/* ==========================================================================
   21. Compliance Section - Enhanced
   ========================================================================== */

.compliance__badge {
    width: 64px;
    height: 64px;
    background: rgba(52, 199, 89, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.compliance__badge svg {
    color: var(--green);
}

.compliance__content {
    flex: 1;
}

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

.compliance__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.compliance__item svg {
    color: var(--green);
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .compliance__inner {
        display: flex;
        align-items: flex-start;
        gap: 2rem;
        text-align: left;
    }

    .compliance__grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* ==========================================================================
   22. How It Works Section
   ========================================================================== */

.how-it-works {
    background: var(--white);
}

.steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 280px;
}

.step__number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.step__icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--blue);
    border-radius: 20px;
    margin-bottom: 1rem;
}

.step__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.step__text {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.step__connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    transform: rotate(90deg);
    padding: 0.5rem 0;
}

.how-it-works__cta {
    text-align: center;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .steps {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }

    .step__connector {
        transform: none;
    }
}

@media (max-width: 600px) {
    .how-it-works {
        padding: 3rem 1.5rem;
    }

    .how-it-works .section__header {
        margin-bottom: 2rem;
    }

    .steps {
        gap: 1rem;
    }

    .step__icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
    }

    .step__connector {
        padding: 0.25rem 0;
    }

    .step__connector svg {
        width: 18px;
        height: 18px;
    }

    .how-it-works__cta {
        margin-top: 2rem;
    }
}

/* ==========================================================================
   23. Features Grid - Premium
   ========================================================================== */

.features-grid--premium {
    gap: 1.5rem;
}

.feature-card--premium {
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.feature-card--premium:hover {
    border-color: transparent;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.feature-card__icon--green { background: linear-gradient(135deg, #34c759 0%, #30d158 100%); }
.feature-card__icon--blue { background: linear-gradient(135deg, #0071e3 0%, #0a84ff 100%); }
.feature-card__icon--red { background: linear-gradient(135deg, #ff453a 0%, #ff6961 100%); }
.feature-card__icon--purple { background: linear-gradient(135deg, #af52de 0%, #bf5af2 100%); }
.feature-card__icon--orange { background: linear-gradient(135deg, #ff9500 0%, #ffb340 100%); }
.feature-card__icon--teal { background: linear-gradient(135deg, #5ac8fa 0%, #64d2ff 100%); }

/* ==========================================================================
   24. Testimonials Section
   ========================================================================== */

.testimonials {
    background: var(--white);
}

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

.testimonial {
    background: var(--gray-100);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.testimonial:hover {
    background: var(--white);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.testimonial__stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial__stars svg {
    width: 18px;
    height: 18px;
    color: #fbbf24;
}

.testimonial__text {
    font-size: 1rem;
    color: var(--gray-800);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.testimonial__avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50%;
}

.testimonial__name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.125rem;
}

.testimonial__role {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

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

/* ==========================================================================
   24b. Testimonial Empty State
   ========================================================================== */

.reviews-empty {
    text-align: center;
    max-width: 440px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
}

.reviews-empty__stars {
    display: flex;
    justify-content: center;
    gap: 0.375rem;
    margin-bottom: 1.25rem;
}

.reviews-empty__star {
    color: #e5e7eb;
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

.reviews-empty__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.reviews-empty__text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.reviews-empty__actions {
    display: flex;
    justify-content: center;
}

.reviews-empty__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0071e3;
    background: rgba(0, 113, 227, 0.08);
    border: 1px solid rgba(0, 113, 227, 0.15);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.reviews-empty__cta:hover {
    background: rgba(0, 113, 227, 0.14);
    transform: translateY(-1px);
}

/* ==========================================================================
   24c. Review Form Page — World-class
   ========================================================================== */

.review-page {
    max-width: 560px;
    margin: 0 auto;
    padding: 0 1rem 3rem;
}

.review-page__back {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
    transition: color 0.15s;
}

.review-page__back:hover {
    color: var(--text-primary);
}

.review-page__hero {
    text-align: center;
    padding: 1.5rem 0 2rem;
}

.review-page__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff7ed, #fef3c7);
    color: #d97706;
    margin-bottom: 1rem;
}

.review-page__title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.025em;
    margin-bottom: 0.375rem;
}

.review-page__subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Review Card */
.review-card {
    background: var(--white);
    border: 1px solid var(--gray-200, #e5e7eb);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.review-card__section {
    padding: 1.5rem 1.75rem;
}

.review-card__divider {
    height: 1px;
    background: var(--gray-200, #e5e7eb);
    margin: 0 1.75rem;
}

.review-card__label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.review-card__hint {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-bottom: 0.875rem;
    line-height: 1.5;
}

.review-card__error {
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #ef4444;
}

/* Star Rating — horizontal, large, interactive */
.review-rating {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 0 0.25rem;
}

.review-rating__star {
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 8px;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    line-height: 0;
    display: inline-flex;
}

.review-rating__star:hover {
    transform: scale(1.15);
}

.review-rating__star:active {
    transform: scale(0.95);
}

.review-rating__svg {
    display: block;
    fill: none;
    stroke: #d1d5db;
    transition: fill 0.2s ease, stroke 0.2s ease;
}

.review-rating__star.is-filled .review-rating__svg,
.review-rating__star.is-hover .review-rating__svg {
    fill: #f59e0b;
    stroke: #f59e0b;
}

.review-rating__star.is-hover .review-rating__svg {
    fill: #fbbf24;
    stroke: #fbbf24;
}

.review-rating__feedback {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #f59e0b;
    min-height: 1.5rem;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.2s, transform 0.2s;
    padding-top: 0.25rem;
}

.review-rating__feedback.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Visually hidden radio inputs — bulletproof */
.review-card .sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Textarea */
.review-card__textarea-wrap {
    position: relative;
}

.review-card__textarea {
    width: 100%;
    min-height: 130px;
    padding: 1rem;
    border: 1px solid var(--gray-200, #e5e7eb);
    border-radius: 14px;
    font-family: inherit;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--gray-100, #f9fafb);
    resize: vertical;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    -webkit-appearance: none;
}

.review-card__textarea::placeholder {
    color: var(--text-tertiary, #9ca3af);
}

.review-card__textarea:focus {
    outline: none;
    border-color: #0071e3;
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.12);
    background: var(--white);
}

.review-card__counter {
    position: absolute;
    bottom: 0.75rem;
    right: 0.875rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-tertiary, #9ca3af);
    font-variant-numeric: tabular-nums;
    pointer-events: none;
    transition: color 0.2s;
}

.review-card__counter-sep {
    opacity: 0.5;
}

.review-card__textarea-wrap.is-max .review-card__counter {
    color: #ef4444;
}

/* Preview */
.review-card__preview {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1.25rem 1.75rem;
    background: var(--gray-100, #f9fafb);
}

.review-card__preview-avatar {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0071e3, #5856d6);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-card__preview-info {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.review-card__preview-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
}

.review-card__preview-note {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Actions */
.review-card__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.75rem;
}

.review-card__cancel {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.625rem 1rem;
    border-radius: 10px;
    transition: color 0.15s, background 0.15s;
}

.review-card__cancel:hover {
    color: var(--text-primary);
    background: var(--gray-100, #f3f4f6);
}

.review-card__submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
    background: #0071e3;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-appearance: none;
}

.review-card__submit:hover:not(:disabled) {
    background: #0077ED;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
}

.review-card__submit:active:not(:disabled) {
    transform: translateY(0);
}

.review-card__submit:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Disclaimer */
.review-card__disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-tertiary, #9ca3af);
    margin-top: 1rem;
    padding: 0 1rem;
}

.review-card__disclaimer svg {
    flex-shrink: 0;
    opacity: 0.6;
}

/* Mobile responsiveness */
@media (max-width: 640px) {
    .review-page {
        padding: 0 0.75rem 2rem;
    }
    .review-page__title {
        font-size: 1.375rem;
    }
    .review-card__section {
        padding: 1.25rem 1.25rem;
    }
    .review-card__divider {
        margin: 0 1.25rem;
    }
    .review-card__preview {
        padding: 1rem 1.25rem;
    }
    .review-card__actions {
        padding: 1rem 1.25rem;
    }
    .review-rating__svg {
        width: 40px;
        height: 40px;
    }
    .review-rating {
        gap: 0.375rem;
    }
}

/* ==========================================================================
   25. FAQ Section - Enhanced
   ========================================================================== */

.faq-section {
    background: var(--gray-100);
}

.faq-section__more {
    text-align: center;
    margin-top: 2.5rem;
}

/* ==========================================================================
   26. CTA Section - Premium
   ========================================================================== */

.cta--premium {
    background: linear-gradient(135deg, var(--black) 0%, #2d2d2f 100%);
    color: var(--white);
}

.cta--premium .cta__badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 0.375rem 0.875rem;
    border-radius: 980px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.cta--premium .cta__title {
    color: var(--white);
}

.cta--premium .cta__text {
    color: rgba(255, 255, 255, 0.7);
}

.cta__trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.cta__trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.cta__trust-item svg {
    color: var(--green);
    flex-shrink: 0;
}

/* ==========================================================================
   27. VAT Calculator Highlight Animation
   ========================================================================== */

.vat-calculator__highlight {
    animation: highlight-pulse 0.3s ease;
}

@keyframes highlight-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* ==========================================================================
   28. FAQ Category (for FAQ page)
   ========================================================================== */

.faq-category {
    margin-bottom: 3rem;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--blue);
    display: inline-block;
}

/* ==========================================================================
   29. NEW Calculator - World-Class Design (Stripe/Wise inspired)
   ========================================================================== */

.calc {
    padding: 4rem 1.5rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    scroll-margin-top: 64px;
}

.calc__container {
    max-width: 720px;
    margin: 0 auto;
}

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

.calc__badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--blue) 0%, #0a84ff 100%);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.calc__title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.calc__subtitle {
    font-size: 1.0625rem;
    color: var(--gray-600);
    max-width: 480px;
    margin: 0 auto;
}

/* Calculator Card */
.calc__card {
    background: var(--white);
    border-radius: 24px;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.03),
        0 2px 4px rgba(0, 0, 0, 0.02),
        0 12px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Inputs Section */
.calc__inputs {
    padding: 2rem;
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
    border-bottom: 1px solid var(--gray-200);
}

.calc__input-group {
    margin-bottom: 1.5rem;
}

.calc__input-group:last-child {
    margin-bottom: 0;
}

.calc__input-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calc__input-label span {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-800);
}

.calc__input-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--blue);
    background: rgba(0, 113, 227, 0.08);
    padding: 0.375rem 0.875rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

/* Range Slider - Premium */
.calc__range {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(90deg, var(--blue) 0%, var(--blue) var(--slider-progress, 16%), var(--gray-200) var(--slider-progress, 16%), var(--gray-200) 100%);
    border-radius: 100px;
    outline: none;
    cursor: pointer;
    transition: background 0.1s ease;
}

.calc__range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    background: var(--white);
    border: 3px solid var(--blue);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 113, 227, 0.25);
    transition: all 0.2s ease;
}

.calc__range::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(0, 113, 227, 0.35);
}

.calc__range::-webkit-slider-thumb:active {
    transform: scale(1.15);
}

.calc__range::-moz-range-thumb {
    width: 28px;
    height: 28px;
    background: var(--white);
    border: 3px solid var(--blue);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 113, 227, 0.25);
}

.calc__range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--gray-400);
}

/* Input Row */
.calc__input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.calc__input-group--small {
    margin-bottom: 0;
}

.calc__label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.calc__field {
    position: relative;
    display: flex;
    align-items: center;
}

.calc__number {
    width: 100%;
    padding: 0.875rem 3.5rem 0.875rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    transition: all 0.2s ease;
    -moz-appearance: textfield;
}

.calc__number::-webkit-outer-spin-button,
.calc__number::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.calc__number:hover {
    border-color: var(--gray-300);
}

.calc__number:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}

.calc__unit {
    position: absolute;
    right: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-400);
    pointer-events: none;
}

/* Visual Comparison Bars */
.calc__comparison {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.calc__bar {
    background: var(--white);
    border-radius: 16px;
    padding: 1.25rem;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.calc__bar:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.calc__bar--good {
    border-color: rgba(52, 199, 89, 0.3);
    background: linear-gradient(135deg, rgba(52, 199, 89, 0.04) 0%, rgba(52, 199, 89, 0.01) 100%);
}

.calc__bar--bad {
    border-color: rgba(255, 59, 48, 0.2);
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.04) 0%, rgba(255, 59, 48, 0.01) 100%);
}

.calc__bar-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.calc__bar-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.calc__bar-icon--good {
    background: linear-gradient(135deg, #34c759 0%, #30d158 100%);
    color: var(--white);
}

.calc__bar-icon--bad {
    background: linear-gradient(135deg, #ff3b30 0%, #ff6961 100%);
    color: var(--white);
}

.calc__bar-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.calc__bar-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--black);
}

.calc__bar-desc {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.calc__bar-amount {
    font-size: 1.375rem;
    font-weight: 700;
}

.calc__bar-amount--good {
    color: #16a34a;
}

.calc__bar-amount--bad {
    color: #dc2626;
}

/* Progress Bar Track */
.calc__bar-track {
    height: 8px;
    background: var(--gray-200);
    border-radius: 100px;
    overflow: hidden;
}

.calc__bar-fill {
    height: 100%;
    border-radius: 100px;
    transition: width 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.calc__bar-fill--good {
    background: linear-gradient(90deg, #34c759 0%, #30d158 100%);
}

.calc__bar-fill--bad {
    background: linear-gradient(90deg, #ff3b30 0%, #ff6961 100%);
}

/* Calculator Sections */
.calc__section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.calc__section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.calc__section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.calc__section-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 10px;
    color: var(--gray-600);
}

.calc__section-icon--blue {
    background: rgba(0, 113, 227, 0.1);
    color: var(--blue);
}

.calc__section-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
}

.calc__section-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-400);
    background: var(--gray-100);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.calc__costs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

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

.calc__hint {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 0.375rem;
}

.calc__field--large .calc__number {
    font-size: 1.25rem;
    padding: 1rem 3.5rem 1rem 1rem;
}

/* Summary */
.calc__summary {
    background: var(--gray-100);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-top: 1.5rem;
}

.calc__summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: nowrap;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.calc__summary-row strong {
    font-weight: 700;
    color: var(--black);
    white-space: nowrap;
    flex-shrink: 0;
}

.calc__summary-row--vehicle {
    border-top: 1px dashed var(--gray-300);
    margin-top: 0.5rem;
    padding-top: 0.75rem;
}

/* Results Section - New Design */
.calc__results {
    padding: 2rem;
    background: linear-gradient(180deg, #f0fdf4 0%, #ecfdf5 100%);
    border-top: 1px solid rgba(34, 197, 94, 0.2);
}

.calc__result-main {
    text-align: center;
    margin-bottom: 1.5rem;
}

.calc__result-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #dc2626;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    background: rgba(220, 38, 38, 0.08);
    padding: 0.5rem 1rem;
    border-radius: 100px;
}

.calc__result-label::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #dc2626;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

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

.calc__result-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.125rem;
}

.calc__result-minus {
    font-size: 2.5rem;
    font-weight: 300;
    color: #dc2626;
}

.calc__result-amount {
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f87171 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    transition: transform 0.3s ease;
}

.calc__result-amount.highlight {
    animation: result-pop 0.3s ease;
}

@keyframes result-pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.calc__result-currency {
    font-size: 2rem;
    font-weight: 700;
    color: #dc2626;
}

/* Projection */
.calc__result-projection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.calc__projection-item {
    background: var(--white);
    border-radius: 16px;
    padding: 1.25rem;
    text-align: center;
    border: 1px solid rgba(220, 38, 38, 0.12);
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.06);
    transition: all 0.2s ease;
}

.calc__projection-item:hover {
    border-color: rgba(220, 38, 38, 0.2);
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.1);
}

.calc__projection-period {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.calc__projection-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #dc2626;
}

/* Stats */
.calc__result-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.calc__stat {
    text-align: center;
}

.calc__stat-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.calc__stat-label {
    font-size: 0.6875rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.calc__stat-divider {
    width: 1px;
    height: 36px;
    background: var(--gray-200);
}

/* Results Grid */
.calc__results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.calc__result-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.25rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.calc__result-card--bad {
    border-color: rgba(239, 68, 68, 0.2);
}

.calc__result-card--good {
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15);
}

.calc__result-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.calc__result-card-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.calc__result-card--bad .calc__result-card-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.calc__result-card--good .calc__result-card-icon {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.calc__result-card-title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-600);
}

.calc__result-card-value {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.calc__result-card--bad .calc__result-card-value {
    color: #dc2626;
}

.calc__result-card--good .calc__result-card-value {
    color: #16a34a;
}

.calc__result-card-desc {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* Hero Savings - Main Number */
.calc__savings-hero {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    color: var(--white);
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.3);
}

.calc__savings-hero-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.calc__savings-hero-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.125rem;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.calc__savings-hero-plus {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 300;
    flex-shrink: 0;
}

.calc__savings-hero-amount {
    font-size: clamp(2.5rem, 10vw, 4.5rem);
    font-weight: 800;
    line-height: 1;
    min-width: 0;
    font-variant-numeric: tabular-nums;
}

.calc__savings-hero-currency {
    font-size: clamp(1.25rem, 4vw, 2rem);
    font-weight: 600;
    flex-shrink: 0;
}

/* Savings Breakdown */
.calc__savings-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.calc__savings-breakdown-item {
    background: var(--white);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

.calc__savings-breakdown-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: nowrap;
    margin-bottom: 0.25rem;
}

.calc__savings-breakdown-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    min-width: 0;
    flex: 1 1 0;
}

.calc__savings-breakdown-label svg {
    color: #22c55e;
}

.calc__savings-breakdown-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: #16a34a;
    white-space: nowrap;
    flex-shrink: 0;
}

.calc__savings-breakdown-note {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-left: 1.5rem;
}

/* Comparison Cards */
.calc__comparison-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.calc__comparison-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.25rem;
    text-align: center;
    min-width: 0;
    border: 2px solid transparent;
}

.calc__comparison-card--bad {
    border-color: rgba(239, 68, 68, 0.15);
    background: rgba(239, 68, 68, 0.02);
}

.calc__comparison-card--good {
    border-color: rgba(34, 197, 94, 0.25);
    background: rgba(34, 197, 94, 0.05);
}

.calc__comparison-card-title {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

.calc__comparison-card-value {
    display: block;
    font-size: clamp(1.25rem, 5vw, 1.75rem);
    font-weight: 700;
    margin-bottom: 0.25rem;
    white-space: nowrap;
}

.calc__comparison-card--bad .calc__comparison-card-value {
    color: #dc2626;
}

.calc__comparison-card--good .calc__comparison-card-value {
    color: #16a34a;
}

.calc__comparison-card-desc {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Vehicle Bonus in Breakdown */
.calc__vehicle-bonus {
    display: flex;
    flex-direction: column;
}

.calc__vehicle-bonus-note {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* Projections */
.calc__projections {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.calc__projection {
    background: var(--white);
    border-radius: 16px;
    padding: 1.25rem;
    text-align: center;
    min-width: 0;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.calc__projection-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.5rem;
    white-space: nowrap;
}

.calc__projection-value {
    font-size: clamp(1.125rem, 4vw, 1.375rem);
    font-weight: 700;
    color: #16a34a;
    white-space: nowrap;
}

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

    .calc__savings-amount {
        font-size: 2.5rem;
    }
}

/* CTA Section */
.calc__cta {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

.calc__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 360px;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--blue) 0%, #0a84ff 100%);
    color: var(--white);
    font-family: inherit;
    font-size: 1.0625rem;
    font-weight: 600;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 113, 227, 0.35);
}

.calc__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 113, 227, 0.4);
    color: var(--white);
}

.calc__button:active {
    transform: translateY(0);
}

.calc__button svg {
    transition: transform 0.2s ease;
}

.calc__button:hover svg {
    transform: translateX(4px);
}

.calc__cta-note {
    margin-top: 1rem;
    font-size: 0.8125rem;
    color: var(--gray-400);
}

/* Footer Note */
.calc__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.8125rem;
    color: var(--gray-500);
    text-align: center;
}

.calc__footer svg {
    flex-shrink: 0;
    color: var(--gray-400);
}

/* Responsive */
@media (min-width: 768px) {
    .calc {
        padding: 5rem 2rem;
    }

    .calc__inputs {
        padding: 2.5rem;
    }

    .calc__comparison {
        padding: 2.5rem;
    }

    .calc__results {
        padding: 2.5rem;
    }

    .calc__result-amount {
        font-size: 5rem;
    }

    .calc__cta {
        padding: 2.5rem;
    }
}

@media (max-width: 600px) {
    .calc {
        padding: 3.5rem 1.25rem;
    }

    .calc__results {
        padding: 1rem;
    }

    .calc__cta {
        padding: 1.25rem;
    }

    .calc__savings-hero {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }

    .calc__comparison-cards {
        gap: 0.75rem;
    }

    .calc__comparison-card {
        padding: 0.75rem;
        border-radius: 12px;
    }

    .calc__comparison-card-title {
        font-size: 0.75rem;
        margin-bottom: 0.375rem;
    }

    .calc__comparison-card-desc {
        font-size: 0.6875rem;
        letter-spacing: 0;
        white-space: nowrap;
    }

    .calc__projections {
        gap: 0.75rem;
    }

    .calc__projection {
        padding: 0.75rem;
        border-radius: 12px;
    }

    .calc__projection-label {
        white-space: normal;
        overflow-wrap: anywhere;
        font-size: 0.6875rem;
        line-height: 1.25;
    }

    .calc__projection-value {
        font-size: 1rem;
    }

    .calc__button {
        font-size: clamp(0.875rem, 3.8vw, 0.9375rem);
        padding: 0.875rem 1.25rem;
        gap: 0.5rem;
        white-space: nowrap;
    }

    .feature-card--premium {
        padding: 1.5rem;
    }

    .trust-badges {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        margin: 1.5rem 0;
        padding: 1rem 0;
    }

    .trust-badge {
        width: 100%;
        justify-content: flex-start;
        padding: 0.625rem 0.75rem;
    }

    .trust-badge__text {
        font-size: 0.75rem;
    }

    .cta {
        padding: 3rem 1rem;
    }

    .cta__actions {
        align-items: stretch;
    }

    .cta__actions .btn {
        width: 100%;
        min-height: 48px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .calc__result-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .calc__stat-divider {
        width: 60px;
        height: 1px;
    }

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

/* ==========================================================================
   30. WORLD-CLASS DESIGN ENHANCEMENTS
   ========================================================================== */

/* Footer Legal Info */
.footer__meta {
    border-top-color: var(--gray-200);
}

.footer__legal {
    margin-top: 0;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(148, 163, 184, 0.24);
    text-align: center;
}

.footer__legal-line {
    display: block;
    margin: 0;
    font-size: 0.6875rem;
    color: var(--gray-400);
    line-height: 1.5;
}

/* Section Inner Variants */
.section__inner--wide {
    max-width: 1100px;
}

.section__inner--contact {
    max-width: 1000px;
}

/* Pricing Grid - 3 Columns (World-class) */
.pricing-grid--three {
    grid-template-columns: 1fr;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 960px) {
    .pricing-grid--three {
        grid-template-columns: repeat(3, 1fr);
        align-items: start;
    }
}

/* ==========================================================================
   31. PREMIUM ANIMATIONS & EFFECTS
   ========================================================================== */

/* Smooth Fade-in Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hero Enhanced Animations */
.hero__badge {
    animation: fadeInUp 0.6s ease-out;
}

.hero__title {
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero__subtitle {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero__actions {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero__note {
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero__stats {
    animation: scaleIn 0.6s ease-out 0.5s both;
}

/* Premium Glassmorphism Effect */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Enhanced Shadow System */
.shadow-sm { box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04); }
.shadow-md { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); }
.shadow-lg { box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12); }
.shadow-xl { box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16); }

/* Premium Hover Effects */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   32. ENHANCED FEATURE CARDS
   ========================================================================== */

.feature-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue) 0%, #00c6ff 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 113, 227, 0.25);
}

.feature-card__icon {
    transition: all 0.3s ease;
}

.feature-card:hover .feature-card__icon {
    transform: scale(1.1);
}

@media (hover: none) {
    .feature-card::before {
        display: none;
    }

    .feature-card:hover {
        transform: none;
        box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
        border-color: var(--gray-200);
    }

    .feature-card:hover .feature-card__icon {
        transform: none;
    }
}

/* ==========================================================================
   33. ENHANCED TESTIMONIALS
   ========================================================================== */

.testimonial {
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 8rem;
    font-family: Georgia, serif;
    color: var(--gray-200);
    opacity: 0.5;
    line-height: 1;
    pointer-events: none;
    transition: all 0.3s ease;
}

.testimonial:hover::before {
    color: var(--blue);
    opacity: 0.15;
    transform: scale(1.1);
}

/* ==========================================================================
   34. ENHANCED CTA SECTIONS
   ========================================================================== */

.cta--premium {
    position: relative;
    overflow: hidden;
}

.cta--premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 113, 227, 0.1) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

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

/* ==========================================================================
   35. TRUST BADGES SECTION
   ========================================================================== */

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    margin: 3rem 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    border-color: var(--blue);
    box-shadow: 0 4px 16px rgba(0, 113, 227, 0.1);
}

.trust-badge__icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.trust-badge__icon--green {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.trust-badge__icon--blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.trust-badge__icon--purple {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.trust-badge__icon svg {
    width: 18px;
    height: 18px;
}

.trust-badge__text {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-700);
}

@media (max-width: 600px) {
    .trust-badges {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
        margin: 1.5rem 0;
        padding: 1rem 0;
    }

    .trust-badge {
        width: 100%;
        justify-content: flex-start;
        gap: 0.5rem;
        padding: 0.625rem 0.75rem;
    }

    .trust-badge__text {
        font-size: 0.75rem;
    }
}

/* ==========================================================================
   36. ENHANCED PAGE HERO
   ========================================================================== */

.page-hero {
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 113, 227, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(52, 199, 89, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero__title {
    position: relative;
    z-index: 1;
}

.page-hero__subtitle {
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   37. ENHANCED HERO SECTION
   ========================================================================== */

.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f5f5f7 0%, #ffffff 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(0, 113, 227, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(52, 199, 89, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

/* Enhanced Hero Stats */
.hero__stats {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero__stat-value {
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-800) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================================================
   38. ENHANCED COMPLIANCE SECTION
   ========================================================================== */

.compliance {
    position: relative;
    background: linear-gradient(135deg, #1d1d1f 0%, #2d2d2f 100%);
}

.compliance::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 50%, rgba(52, 199, 89, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 50%, rgba(0, 113, 227, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.compliance__inner {
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   39. ENHANCED PROBLEM SECTION
   ========================================================================== */

.problem__option {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.problem__option:hover {
    transform: translateY(-4px);
}

.problem__option--bad:hover {
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.15);
}

.problem__option--good:hover {
    box-shadow: 0 12px 40px rgba(34, 197, 94, 0.15);
}

/* ==========================================================================
   40. ENHANCED STEPS SECTION
   ========================================================================== */

.step {
    position: relative;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-4px);
}

.step__icon {
    position: relative;
    transition: all 0.3s ease;
}

.step:hover .step__icon {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 113, 227, 0.15);
}

.step__number {
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
}

/* ==========================================================================
   41. ENHANCED FAQ ITEMS
   ========================================================================== */

.faq-item {
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 113, 227, 0.08);
}

.faq-item__question {
    transition: color 0.3s ease;
}

.faq-item:hover .faq-item__question {
    color: var(--blue);
}

/* ==========================================================================
   42. ENHANCED PRICING CARDS
   ========================================================================== */

.pricing-card {
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gray-200) 0%, var(--gray-300) 100%);
    transition: all 0.3s ease;
}

.pricing-card:hover::before {
    background: linear-gradient(90deg, var(--blue) 0%, #00c6ff 100%);
}

.pricing-card--popular::before {
    background: linear-gradient(90deg, var(--blue) 0%, #00c6ff 100%);
}

/* ==========================================================================
   43. CONTACT FORM ENHANCEMENTS
   ========================================================================== */

.contact-form {
    position: relative;
    transition: all 0.3s ease;
}

.contact-form:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    transform: translateY(-1px);
}

/* ==========================================================================
   44. SCROLL REVEAL CLASSES
   ========================================================================== */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

/* Stagger children */
.reveal-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.reveal-children.is-visible > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.reveal-children.is-visible > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.reveal-children.is-visible > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.reveal-children.is-visible > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.reveal-children.is-visible > *:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.reveal-children.is-visible > *:nth-child(6) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }

/* ==========================================================================
   45. BUTTON ENHANCEMENTS
   ========================================================================== */

.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

.btn--primary {
    position: relative;
    background: linear-gradient(135deg, var(--blue) 0%, #0a84ff 100%);
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.25);
}

.btn--primary:hover {
    background: linear-gradient(135deg, #0077ed 0%, var(--blue) 100%);
    box-shadow: 0 6px 20px rgba(0, 113, 227, 0.35);
    transform: translateY(-1px);
}

/* ==========================================================================
   46. FOOTER ENHANCEMENTS
   ========================================================================== */

.footer {
    position: relative;
    background: linear-gradient(180deg, var(--gray-100) 0%, #eaeaec 100%);
}

.footer__col a {
    position: relative;
}

.footer__col a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--blue);
    transition: width 0.3s ease;
}

.footer__col a:hover::after {
    width: 100%;
}

/* ==========================================================================
   47. LOADING STATE
   ========================================================================== */

.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--gray-200);
    border-top-color: var(--blue);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ==========================================================================
   48. ACCESSIBILITY FOCUS STYLES
   ========================================================================== */

*:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
}

.btn:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.2);
}

/* ==========================================================================
   49. PRINT STYLES
   ========================================================================== */

@media print {
    .nav,
    .footer,
    .cookie-banner,
    .cta,
    .btn {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 2rem 1rem;
    }

    .section {
        padding: 1rem;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
}

/* ==========================================================================
   50. WORLD-CLASS PRICING PAGE
   ========================================================================== */

/* --- Pricing Hero Enhancement --- */
.page-hero--pricing {
    padding-bottom: 2rem;
}

.page-hero--pricing .page-hero__title {
    max-width: 20ch;
    margin-inline: auto;
    text-wrap: balance;
}

.page-hero--pricing .page-hero__subtitle {
    max-width: 600px;
    text-wrap: pretty;
}

/* --- Trust Badges Row --- */
.pricing-trust {
    padding: 0 1.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
    padding-top: 0.5rem;
}

.pricing-trust__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-trust__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-500);
    min-width: 0;
    line-height: 1.3;
    min-height: 2rem;
}

.pricing-trust__item span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.pricing-trust__item svg {
    color: var(--green);
    flex-shrink: 0;
}

/* --- Free Plan Banner --- */
.pricing-free-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.06) 0%, rgba(52, 199, 89, 0.06) 100%);
    border: 1px solid rgba(0, 113, 227, 0.12);
    border-radius: 12px;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.pricing-free-banner__content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 0;
}

.pricing-free-banner__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--blue);
    color: var(--white);
    flex-shrink: 0;
}

.pricing-free-banner__text {
    font-size: 0.9375rem;
    color: var(--gray-700);
    min-width: 0;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.pricing-free-banner__btn {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--blue);
    border: 1px solid var(--blue);
    text-decoration: none;
    transition: all var(--transition);
    white-space: nowrap;
}

.pricing-free-banner__btn:hover {
    background: var(--blue);
    color: var(--white);
}

/* --- Segmented Billing Control --- */
.billing-control {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: color-mix(in srgb, #ffffff 82%, #dbe3ef 18%);
    border-radius: 16px;
    padding: 4px;
    width: fit-content;
    margin: 0 auto 3rem;
    border: 1px solid color-mix(in srgb, #d6deea 78%, #c2cedf 22%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 6px 18px rgba(15, 23, 42, 0.08);
}

.billing-control__option {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.4rem;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    color: #5f6f86;
    border-radius: 11px;
    transition: color 0.2s ease;
    white-space: nowrap;
    min-height: 42px;
}

.billing-control__option--active {
    color: #0f172a;
    font-weight: 590;
}

.billing-control__option:hover,
.billing-control__option:focus-visible {
    color: #243447;
}

.billing-control__option:focus-visible {
    outline: 2px solid rgba(0, 122, 255, 0.35);
    outline-offset: 1px;
}

.billing-control__save {
    display: inline-flex;
    align-items: center;
    padding: 0.125rem 0.42rem;
    background: rgba(52, 199, 89, 0.14);
    color: #1f8a49;
    border-radius: 6px;
    font-size: 0.6875rem;
    font-weight: 640;
    letter-spacing: 0.01em;
    box-shadow: inset 0 0 0 1px rgba(52, 199, 89, 0.18);
}

.billing-control__indicator {
    position: absolute;
    top: 4px;
    left: 0;
    height: calc(100% - 8px);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 11px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.1), 0 6px 14px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

/* --- Scaled Firma Card --- */
.pricing-card--scaled {
    border-width: 2px;
}

@media (min-width: 960px) {
    .pricing-card--scaled {
        transform: scale(1.05);
        z-index: 2;
        box-shadow: 0 12px 40px rgba(0, 113, 227, 0.18), 0 4px 12px rgba(0, 0, 0, 0.06);
    }

    .pricing-card--scaled:hover {
        transform: scale(1.07);
        box-shadow: 0 16px 48px rgba(0, 113, 227, 0.22), 0 6px 16px rgba(0, 0, 0, 0.08);
    }
}

/* --- Pricing Card Guarantee Text --- */
.pricing-card__guarantee {
    text-align: center;
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 0.75rem;
}

/* --- Pricing Card Trial Link --- */
.pricing-card__trial-link {
    display: block;
    text-align: center;
    font-size: 0.8125rem;
    color: #6e6e73;
    margin-top: 0.5rem;
    text-decoration: none;
    transition: color 0.2s;
}

.pricing-card__trial-link:hover {
    color: #0071e3;
    text-decoration: underline;
}

/* --- Pricing Button Enhancement --- */
.btn--pricing {
    width: 100%;
    padding: 0.875rem;
    font-weight: 600;
}

.btn--pricing:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* --- Price Animation --- */
.pricing-price-exit {
    opacity: 0;
    transform: translateY(-8px);
    transition: all 0.15s ease-out;
}

.pricing-price-enter {
    animation: priceSlideIn 0.3s ease-out forwards;
}

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

/* --- Tabular Nums for prices --- */
.pricing-card__amount,
.flotila-calc__total {
    font-variant-numeric: tabular-nums;
}

/* --- Flotila Calculator --- */
.flotila-calc {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.flotila-calc__label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

.flotila-calc__input-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 0.75rem;
}

.flotila-calc__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition);
    flex-shrink: 0;
}

.flotila-calc__btn:hover {
    background: var(--gray-100);
    border-color: var(--blue);
    color: var(--blue);
}

.flotila-calc__input {
    width: 100%;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    font-variant-numeric: tabular-nums;
    -moz-appearance: textfield;
    padding: 0 0.5rem;
}

.flotila-calc__input::-webkit-inner-spin-button,
.flotila-calc__input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.flotila-calc__result {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.375rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-200);
}

.flotila-calc__total {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--blue);
}

.flotila-calc__total-period {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.flotila-calc__vat {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-400, #86868b);
    margin-top: 2px;
}

.pricing-vat-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--gray-400, #86868b);
    margin-top: 2rem;
    margin-bottom: 0;
}

/* --- Enterprise Banner --- */
.pricing-enterprise {
    margin-top: 2.5rem;
    background: linear-gradient(135deg, #1d1d1f 0%, #2d2d2f 100%);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.pricing-enterprise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 50%, rgba(0, 113, 227, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 90% 50%, rgba(52, 199, 89, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-enterprise__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.pricing-enterprise__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.375rem;
}

.pricing-enterprise__desc {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
}

.btn--white {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    color: var(--black);
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--white:hover {
    background: var(--gray-100);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* --- Guarantee Section --- */
.pricing-guarantee-section {
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.pricing-guarantee-section__inner {
    max-width: 500px;
    margin: 0 auto;
}

.pricing-guarantee-section__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(52, 199, 89, 0.1);
    color: var(--green);
    margin-bottom: 1rem;
}

.pricing-guarantee-section__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.pricing-guarantee-section__text {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* --- Feature Comparison Table --- */
.pricing-comparison__table-wrap {
    position: relative;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    background: var(--white);
}

.pricing-comparison__table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.pricing-comparison__table thead {
    position: sticky;
    top: 0;
    z-index: 2;
}

.pricing-comparison__table th {
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-600);
    text-align: center;
    background: var(--gray-50);
    border-bottom: 2px solid var(--gray-200);
    white-space: nowrap;
}

.pricing-comparison__table th:first-child {
    text-align: left;
    min-width: 180px;
}

.pricing-comparison__table th.pricing-comparison__highlight {
    color: var(--blue);
    background: rgba(0, 113, 227, 0.04);
}

.pricing-comparison__table td {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    color: var(--gray-700);
    text-align: center;
    border-bottom: 1px solid var(--gray-100);
}

.pricing-comparison__table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--gray-800);
}

.pricing-comparison__table td.pricing-comparison__highlight {
    background: rgba(0, 113, 227, 0.02);
}

.pricing-comparison__table tbody tr:hover td {
    background: var(--gray-50);
}

.pricing-comparison__table tbody tr:hover td.pricing-comparison__highlight {
    background: rgba(0, 113, 227, 0.04);
}

.pricing-comparison__category td {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-400);
    padding: 1.25rem 1.25rem 0.5rem;
    background: var(--gray-50) !important;
    border-bottom: none;
}

.pricing-comparison__table th:not(:first-child),
.pricing-comparison__table td:not(:first-child) {
    width: 17.5%;
}

.pricing-comparison__check {
    color: var(--green);
    display: inline-block;
    vertical-align: middle;
}

.pricing-comparison__cross {
    color: var(--gray-300);
    font-size: 0.875rem;
    display: inline-block;
    vertical-align: middle;
}

.pricing-comparison__feature-col {
    width: 30%;
}

/* --- FAQ Accordion --- */
.pricing-faq {
    max-width: 700px;
    margin: 0 auto;
}

.pricing-faq__item {
    border-bottom: 1px solid var(--gray-200);
}

.pricing-faq__item:last-child {
    border-bottom: none;
}

.pricing-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 0;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    gap: 1rem;
    transition: color 0.2s ease;
}

.pricing-faq__question:hover {
    color: var(--blue);
}

.pricing-faq__question span {
    flex: 1;
}

.pricing-faq__chevron {
    flex-shrink: 0;
    color: var(--gray-400);
    transition: transform 0.3s ease;
}

.pricing-faq__item--open .pricing-faq__chevron {
    transform: rotate(180deg);
    color: var(--blue);
}

.pricing-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.pricing-faq__answer p {
    padding: 0 0 1.25rem;
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* --- Scroll Animations --- */
.animate-hidden {
    opacity: 0;
    transform: translateY(20px);
}

.animate-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* --- CTA Trust Items on Pricing --- */
.cta__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.cta__trust-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
}

.cta__trust-item svg {
    color: var(--green);
}

/* --- Mobile Responsive: Comparison table collapse --- */
@media (max-width: 767px) {
    .page-hero--pricing {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .page-hero--pricing .page-hero__title {
        font-size: clamp(1.62rem, 7.6vw, 2.02rem);
        line-height: 1.16;
        letter-spacing: -0.015em;
    }

    .page-hero--pricing .page-hero__subtitle {
        font-size: 0.95rem;
        max-width: 36ch;
        margin-inline: auto;
    }

    .pricing-trust {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .pricing-trust__inner {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.625rem 0.75rem;
        max-width: 560px;
    }

    .pricing-trust__item {
        justify-content: flex-start;
        font-size: 0.75rem;
        padding: 0.5rem 0.625rem;
        border: 1px solid var(--gray-200);
        border-radius: 10px;
        background: var(--white);
        width: 100%;
    }

    .pricing-trust__item svg {
        width: 16px;
        height: 16px;
    }

    .pricing-free-banner {
        padding: 1rem;
    }

    .pricing-free-banner__text {
        font-size: 0.875rem;
        display: block;
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .pricing-free-banner__btn {
        width: 100%;
        min-height: 44px;
        justify-content: center;
    }

    .billing-control {
        margin-bottom: 2rem;
    }

    .billing-control__option {
        font-size: 1rem;
        padding: 0.75rem 1.1rem;
        min-height: 46px;
    }

    .billing-control__save {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
    }

    .pricing-card--popular {
        padding-top: 2.8rem;
    }

    .pricing-card__badge {
        font-size: 0.6875rem;
        padding: 0.3125rem 0.75rem;
        max-width: calc(100% - 1.5rem);
    }

    .pricing-grid--three {
        grid-template-columns: 1fr;
    }

    .pricing-enterprise .btn--white {
        width: 100%;
        min-height: 44px;
        justify-content: center;
    }

    .pricing-faq__question {
        min-height: 48px;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .pricing-comparison__table-wrap {
        border-radius: 12px;
    }

    .pricing-comparison__table {
        min-width: 740px;
    }

    .pricing-comparison__table th,
    .pricing-comparison__table td {
        vertical-align: middle;
        padding: 0.75rem 0.75rem;
    }

    .pricing-comparison__table th:not(:first-child),
    .pricing-comparison__table td:not(:first-child) {
        min-width: 150px;
    }

    .pricing-comparison__table th:not(:first-child) {
        white-space: nowrap;
        overflow-wrap: normal;
        word-break: keep-all;
        hyphens: none;
    }

    .pricing-comparison__table td:not(:first-child) {
        white-space: nowrap;
        overflow-wrap: normal;
        word-break: keep-all;
        hyphens: none;
    }

    .pricing-comparison__table thead th:first-child {
        position: static;
        min-width: 170px;
        background: var(--gray-50);
    }

    .pricing-comparison__table tbody tr:not(.pricing-comparison__category) td:first-child {
        position: static;
        min-width: 170px;
        max-width: 170px;
        background: var(--white);
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .pricing-comparison__category td:first-child {
        position: static;
        background: var(--gray-50);
        min-width: 170px;
        max-width: 170px;
    }

    .pricing-comparison__table-wrap::before {
        content: '';
        position: absolute;
        top: 1px;
        right: 0;
        width: 22px;
        height: calc(100% - 2px);
        background: linear-gradient(to left, rgba(245, 247, 250, 0.92) 0%, rgba(245, 247, 250, 0) 100%);
        pointer-events: none;
        z-index: 2;
    }

    .pricing-comparison__table-wrap::after {
        content: '↔';
        position: absolute;
        right: 0.375rem;
        bottom: 0.375rem;
        width: 1.3rem;
        height: 1.3rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.72rem;
        font-weight: 700;
        line-height: 1;
        color: var(--gray-500);
        background: color-mix(in srgb, var(--white) 94%, #e5e7eb 6%);
        border: 1px solid var(--gray-200);
        border-radius: 999px;
        pointer-events: none;
        z-index: 3;
    }

    .pricing-free-banner {
        flex-direction: column;
        text-align: center;
    }

    .pricing-free-banner__content {
        flex-direction: column;
    }

    .pricing-enterprise__content {
        flex-direction: column;
        text-align: center;
    }

    .pricing-enterprise__desc {
        max-width: none;
    }
}

@media (max-width: 420px) {
    .pricing-trust__inner {
        grid-template-columns: 1fr;
    }
}

/* Mobile sticky CTA (pricing page) */
.mobile-sticky-cta {
    display: none;
}

@media (max-width: 767px) {
    .mobile-sticky-cta {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 120;
        display: none;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
        background: color-mix(in srgb, var(--white) 95%, #0b1220 5%);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-top: 1px solid color-mix(in srgb, var(--gray-200) 70%, #0b1220 30%);
        box-shadow: 0 -6px 16px rgba(15, 23, 42, 0.16);
    }

    .mobile-sticky-cta.is-visible {
        display: flex;
    }

    body.has-mobile-sticky-cta {
        padding-bottom: calc(112px + env(safe-area-inset-bottom));
    }

    .mobile-sticky-cta__info {
        display: flex;
        flex-direction: column;
        gap: 0.125rem;
        min-width: 0;
        color: var(--gray-900, #1d1d1f);
    }

    .mobile-sticky-cta__info strong {
        font-size: 0.875rem;
        line-height: 1.2;
    }

    .mobile-sticky-cta__info small {
        font-size: 0.75rem;
        color: var(--gray-500);
        line-height: 1.25;
    }

    .mobile-sticky-cta__btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        min-height: 44px;
        padding: 0.6875rem 1rem;
        border-radius: 12px;
        background: rgba(10, 132, 255, 0.12);
        color: #0a84ff;
        text-decoration: none;
        font-size: 0.875rem;
        font-weight: 600;
        border: 1px solid rgba(10, 132, 255, 0.32);
        white-space: nowrap;
        letter-spacing: 0.01em;
        box-shadow: 0 2px 8px rgba(10, 132, 255, 0.14);
        transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }

    .mobile-sticky-cta__btn:hover,
    .mobile-sticky-cta__btn:focus-visible {
        background: #0a84ff;
        color: #fff;
        box-shadow: 0 4px 12px rgba(10, 132, 255, 0.32);
        transform: translateY(-1px);
        text-decoration: none;
    }

    .mobile-sticky-cta__btn:active {
        transform: translateY(0);
        box-shadow: 0 2px 8px rgba(10, 132, 255, 0.24);
    }
}

.pricing-social-proof {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Pricing CTA in light mode uses bright background, so trust text must be dark */
.cta--pricing .cta__trust-item {
    color: var(--gray-600);
}

/* ===================================================================
   Section 51: OCR Receipt Scanner
   =================================================================== */

/* --- OCR Scan Section in Form --- */
.ocr-scan-section {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.04) 0%, rgba(79, 70, 229, 0.04) 100%);
    border: 1px dashed rgba(147, 51, 234, 0.25);
}

/* --- OCR Modal (fullscreen overlay) --- */
.ocr-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.ocr-modal.active {
    display: flex;
}

.ocr-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.ocr-modal__content {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 16px;
    max-width: 480px;
    width: calc(100% - 2rem);
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: ocrModalIn 0.3s ease;
}

@keyframes ocrModalIn {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.ocr-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.ocr-modal__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1d1d1f;
}

.ocr-modal__close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    color: #86868b;
}

.ocr-modal__close:hover {
    background: rgba(0, 0, 0, 0.1);
}

.ocr-modal__body {
    padding: 1.5rem;
}

/* --- OCR Options (3 buttons) --- */
.ocr-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ocr-option-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #f5f5f7;
    border: 1px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    width: 100%;
    font-family: inherit;
}

.ocr-option-btn:hover {
    background: #ebebed;
    border-color: rgba(147, 51, 234, 0.2);
}

.ocr-option-btn__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ocr-option-btn__icon--camera {
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    color: #fff;
}

.ocr-option-btn__icon--upload {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
}

.ocr-option-btn__icon--manual {
    background: linear-gradient(135deg, #64748b, #475569);
    color: #fff;
}

.ocr-option-btn__text {
    display: flex;
    flex-direction: column;
}

.ocr-option-btn__title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1d1d1f;
}

.ocr-option-btn__desc {
    font-size: 0.8125rem;
    color: #86868b;
    margin-top: 0.125rem;
}

/* --- Camera View --- */
.ocr-camera {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.ocr-camera video {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.ocr-camera canvas {
    display: none;
}

.ocr-camera__guide {
    position: absolute;
    inset: 15%;
    border: 2px dashed rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    pointer-events: none;
}

.ocr-camera__guide::before,
.ocr-camera__guide::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border-color: #fff;
    border-style: solid;
}

.ocr-camera__guide::before {
    top: -2px;
    left: -2px;
    border-width: 3px 0 0 3px;
    border-radius: 4px 0 0 0;
}

.ocr-camera__guide::after {
    bottom: -2px;
    right: -2px;
    border-width: 0 3px 3px 0;
    border-radius: 0 0 4px 0;
}

.ocr-camera__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem 0;
}

.ocr-camera__capture-btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 4px solid #fff;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.ocr-camera__capture-btn::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: #fff;
    transition: transform 0.15s ease;
}

.ocr-camera__capture-btn:hover::after {
    transform: scale(0.9);
}

.ocr-camera__capture-btn:active::after {
    transform: scale(0.8);
}

.ocr-camera__switch-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.ocr-camera__switch-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* --- OCR Progress --- */
.ocr-progress {
    padding: 2rem 0;
}

.ocr-progress__steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ocr-progress__step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.ocr-progress__step.active {
    opacity: 1;
}

.ocr-progress__step.completed {
    opacity: 0.7;
}

.ocr-progress__step-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f5f5f7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #86868b;
}

.ocr-progress__step.active .ocr-progress__step-icon {
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    color: #fff;
    animation: ocrPulse 1.5s ease-in-out infinite;
}

.ocr-progress__step.completed .ocr-progress__step-icon {
    background: #22c55e;
    color: #fff;
}

@keyframes ocrPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(147, 51, 234, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(147, 51, 234, 0); }
}

.ocr-progress__step-text {
    font-size: 0.9375rem;
    color: #1d1d1f;
}

/* --- OCR Result --- */
.ocr-result {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ocr-result__confidence {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background: #f5f5f7;
}

.ocr-confidence-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.ocr-confidence-badge--high {
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
}

.ocr-confidence-badge--medium {
    background: rgba(234, 179, 8, 0.12);
    color: #ca8a04;
}

.ocr-confidence-badge--low {
    background: rgba(239, 68, 68, 0.12);
    color: #dc2626;
}

.ocr-result__confidence-text {
    font-size: 0.8125rem;
    color: #86868b;
}

.ocr-result__fields {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ocr-result__field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.625rem 0.875rem;
    border-radius: 10px;
    background: #f5f5f7;
    gap: 0.75rem;
}

.ocr-result__field--low-confidence {
    border: 1px solid rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.04);
}

.ocr-result__field-label {
    font-size: 0.8125rem;
    color: #86868b;
    flex-shrink: 0;
}

.ocr-result__field-value {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1d1d1f;
    text-align: right;
}

.ocr-result__field-value--empty {
    color: #c7c7cc;
    font-style: italic;
}

.ocr-result__math {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem;
    border-radius: 10px;
    background: rgba(34, 197, 94, 0.06);
    font-size: 0.875rem;
    color: #16a34a;
}

.ocr-result__math--warning {
    background: rgba(234, 179, 8, 0.06);
    color: #ca8a04;
}

/* --- OCR Actions --- */
.ocr-actions {
    display: flex;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.ocr-actions .btn {
    flex: 1;
}

/* --- OCR Dropzone --- */
.ocr-dropzone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    text-align: center;
}

.ocr-dropzone.drag-over {
    background: rgba(147, 51, 234, 0.08);
    border-color: rgba(147, 51, 234, 0.5);
}

.ocr-dropzone__hint {
    font-size: 0.8125rem;
    color: #86868b;
}

.ocr-dropzone__formats {
    font-size: 0.75rem;
    color: #c7c7cc;
}

/* --- Responsive --- */
@media (max-width: 480px) {
    .ocr-modal__content {
        max-width: none;
        width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
    }

    .ocr-camera__capture-btn {
        width: 64px;
        height: 64px;
    }
}

/* ============================================================
   SECTION 52: Anti-bot honeypot fields
   ============================================================ */
.hp-sz{position:absolute;width:0;height:0;overflow:hidden;opacity:0;z-index:-1}
.hp-cl{position:absolute;clip-path:inset(50%);width:1px;height:1px;overflow:hidden}
