/* Design System Variables */
:root {
    /* Colors */
    --clr-bg-main: #FFFFFF;
    --clr-bg-alt: #F8F9FC;
    --clr-primary: #4F46E5;
    --clr-accent: #06B6D4;
    --clr-text-main: #111827;
    --clr-text-subtle: #6B7280;
    --clr-border: #E5E7EB;
    --clr-success: #10B981;
    --clr-error: #EF4444;
    --clr-chip-bg: #EEF2FF;

    /* Spacing (8px base) */
    --sp-1: 8px;
    --sp-2: 16px;
    --sp-3: 24px;
    --sp-4: 32px;
    --sp-6: 48px;
    --sp-8: 64px;
    --sp-12: 96px;

    /* Components */
    --radius-card: 12px;
    --radius-btn: 8px;
    --radius-full: 999px;

    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.07);
    --shadow-hover: 0 8px 32px rgba(79, 70, 229, 0.12);
    --shadow-navbar: 0 2px 16px rgba(0, 0, 0, 0.08);

    /* Layout */
    --container-width: 1120px;
    --navbar-height: 64px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--navbar-height);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--clr-text-main);
    background-color: var(--clr-bg-main);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

/* Typography */
h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
}

h2 {
    font-size: 36px;
    font-weight: 700;
}

h3 {
    font-size: 22px;
    font-weight: 600;
}

h4 {
    font-size: 18px;
    font-weight: 700;
}

.text-small {
    font-size: 13px;
    color: var(--clr-text-subtle);
}

.text-primary {
    color: var(--clr-primary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-cyan {
    color: var(--clr-accent);
}

.text-green {
    color: var(--clr-success);
}

.text-white {
    color: #FFFFFF;
}

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

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

.mb-2 {
    margin-bottom: 8px;
}

.mb-4 {
    margin-bottom: 16px;
}

.mt-2 {
    margin-top: 8px;
}

.mt-3 {
    margin-top: 12px;
}

.opacity-85 {
    opacity: 0.85;
}

.relative {
    position: relative;
}

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

/* Section Header Utilities */
.section-header {
    margin-bottom: 64px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-top: 16px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--clr-text-subtle);
    max-width: 600px;
    margin: 0 auto;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-btn);
    cursor: pointer;
    border: none;
    transition: transform 0.2s ease, filter 0.2s ease, opacity 0.2s ease;
}

.btn--primary {
    background-color: var(--clr-primary);
    color: #FFFFFF;
}

.btn--primary:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.btn--secondary {
    background-color: transparent;
    color: #374151;
    border: 1px solid var(--clr-border);
}

.btn--secondary:hover {
    background-color: var(--clr-bg-alt);
    border-color: #D1D5DB;
    transform: translateY(-1px);
}

.btn--white {
    background-color: #FFFFFF;
    color: var(--clr-primary);
    font-weight: 700;
}

.btn--white:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.btn--ghost {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
}

.btn--ghost:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.btn--compact {
    padding: 10px 20px;
    font-size: 14px;
}

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

.btn--large {
    padding: 16px 32px;
    font-size: 17px;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    background-color: var(--clr-chip-bg);
    color: var(--clr-primary);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
}

.chip--inverted {
    background-color: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--navbar-height);
    background-color: var(--clr-bg-main);
    border-bottom: 1.5px solid var(--clr-border);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: box-shadow 0.3s ease;
}

.navbar--scrolled {
    box-shadow: var(--shadow-navbar);
}

.navbar__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo__img {
    height: 32px;
    width: auto;
    display: block;
}

.logo__text {
    font-size: 18px;
    font-weight: 700;
    color: var(--clr-text-main);
    line-height: 1;
}

.logo__brand {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo__subtext {
    font-size: 8px;
    font-weight: 800;
    color: var(--clr-text-subtle);
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.navbar__actions {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Hidden on desktop, shown on mobile via media query */
.navbar__mobile-divider {
    display: none;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--clr-text-subtle);
}

.nav-link:hover {
    color: var(--clr-primary);
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-dropdown__toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--clr-bg-alt);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-btn);
    font-size: 14px;
    font-weight: 600;
    color: var(--clr-text-main);
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-dropdown__toggle:hover {
    background: #fff;
    border-color: var(--clr-primary);
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.1);
}

.lang-dropdown__arrow {
    transition: transform 0.2s ease;
    opacity: 0.6;
}

.lang-dropdown.active .lang-dropdown__arrow {
    transform: rotate(180deg);
}

.lang-dropdown__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 80px;
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-btn);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1100;
    overflow: hidden;
}

.lang-dropdown.active .lang-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown__item {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--clr-text-main);
    transition: background 0.2s ease;
    text-align: center;
}

.lang-dropdown__item:hover {
    background: var(--clr-bg-alt);
    color: var(--clr-primary);
}

.lang-dropdown__item.active {
    background: var(--clr-chip-bg);
    color: var(--clr-primary);
    font-weight: 700;
}

/* Hamburger Menu */
.navbar__hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.navbar__hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--clr-text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar__hamburger.active span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

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

.navbar__hamburger.active span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

@media (max-width: 991px) {
    .navbar__hamburger {
        display: flex;
    }

    /* Dark overlay behind the slide-in panel */
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 1040;
        opacity: 0;
        transition: opacity 0.35s ease;
    }

    .nav-overlay.active {
        display: block;
        opacity: 1;
    }

    .navbar__actions {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background-color: var(--clr-bg-main);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 88px 0 40px;
        gap: 0;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.12);
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1050;
        overflow-y: auto;
    }

    .navbar__actions.active {
        right: 0;
    }

    .navbar__links {
        flex-direction: column;
        width: 100%;
        text-align: left;
        gap: 0;
        padding: 0 8px;
    }

    .nav-link {
        display: flex;
        align-items: center;
        font-size: 16px;
        font-weight: 600;
        width: 100%;
        padding: 15px 20px;
        border-radius: 10px;
        color: var(--clr-text-main);
        transition: background 0.2s ease, color 0.2s ease;
    }

    .nav-link:hover {
        background: rgba(79, 70, 229, 0.06);
        color: var(--clr-primary);
    }

    /* Divider between nav links and bottom actions */
    .navbar__mobile-divider {
        display: block;
        height: 1px;
        background: var(--clr-border);
        margin: 16px 24px;
        flex-shrink: 0;
    }

    /* Bottom actions: lang + CTA */
    .navbar__actions>.lang-dropdown,
    .navbar__actions>.btn {
        margin: 0 24px;
        width: calc(100% - 48px);
    }

    .navbar__actions>.lang-dropdown {
        width: calc(100% - 48px);
    }

    .navbar__actions .btn--primary {
        width: calc(100% - 48px);
        margin: 24px 24px 0;
        text-align: center;
        justify-content: center;
    }

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


/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 100px;
    background: radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
    overflow: hidden;
}

.hero__background-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.decor-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
    animation: pulse-glow 8s infinite alternate ease-in-out;
}

.decor-circle--1 {
    width: 500px;
    height: 500px;
    background-color: var(--clr-primary);
    top: -150px;
    right: -50px;
}

.decor-circle--2 {
    width: 400px;
    height: 400px;
    background-color: var(--clr-accent);
    bottom: -100px;
    left: -50px;
    animation-delay: -2s;
}

.decor-circle--3 {
    width: 300px;
    height: 300px;
    background-color: #A855F7;
    top: 40%;
    left: 45%;
    opacity: 0.05;
}

@keyframes pulse-glow {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.08;
    }

    100% {
        transform: scale(1.2) translate(20px, 20px);
        opacity: 0.15;
    }
}

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

.hero__content {
    max-width: 640px;
}

.hero__badge-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(79, 70, 229, 0.08);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(79, 70, 229, 0.2);
    border-radius: var(--radius-full);
}


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

.hero__badge-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--clr-primary);
    letter-spacing: -0.01em;
}

.hero__title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    color: var(--clr-text-main);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero__description {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--clr-text-subtle);
    max-width: 540px;
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero__btns {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.hero__btns .btn {
    flex: 1;
    white-space: nowrap;
}

.btn--glow {
    position: relative;
    box-shadow: 0 10px 30px -10px rgba(79, 70, 229, 0.5);
    overflow: hidden;
}

.btn--glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: 0.5s;
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}


/* Report Card Visualization */
.hero__visual {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.report-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border-radius: 28px;
    padding: 0;
    width: 100%;
    max-width: 420px;
    box-shadow:
        0 40px 80px -20px rgba(79, 70, 229, 0.18),
        0 12px 32px -8px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset,
        0 8px 32px -4px rgba(79, 70, 229, 0.1) inset;
    animation: float 8s infinite ease-in-out;
    border: 1px solid rgba(79, 70, 229, 0.15);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.report-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    animation: shine-sweep 6s infinite ease-in-out;
    pointer-events: none;
}

.report-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow:
        0 40px 72px -16px rgba(79, 70, 229, 0.22),
        0 12px 32px -4px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

/* Gradient accent top bar */
.report-card__topbar {
    height: 4px;
    background: linear-gradient(90deg, #4F46E5 0%, #06B6D4 50%, #10B981 100%);
    width: 100%;
}

/* Inner padding wrapper */
.report-card>*:not(.report-card__topbar) {
    padding-left: 28px;
    padding-right: 28px;
}

.report-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 0;
    margin-bottom: 16px;
}

.report-card__status {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 5px 10px;
    border-radius: 999px;
}

.status-dot {
    width: 7px;
    height: 7px;
    background-color: var(--clr-success);
    border-radius: 50%;
    flex-shrink: 0;
}

.status-dot--pulse {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
    animation: pulse-green 2s infinite;
}

.status-text {
    font-size: 11px;
    font-weight: 700;
    color: #059669;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

/* AI tag chip */
.report-card__ai-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    color: var(--clr-primary);
    background: rgba(79, 70, 229, 0.07);
    border: 1px solid rgba(79, 70, 229, 0.15);
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.02em;
}

.report-card__company {
    font-size: 18px;
    font-weight: 700;
    color: var(--clr-text-main);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.report-card__section {
    margin-bottom: 0;
}

.report-card__label {
    font-size: 11px;
    font-weight: 700;
    color: var(--clr-text-subtle);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 10px;
}

.report-card__list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 0;
    padding-bottom: 20px;
}

.report-card__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(249, 250, 251, 0.8);
    border: 1px solid rgba(229, 231, 235, 0.6);
    border-radius: 10px;
    transition: background 0.2s ease;
}

.report-card__item:hover {
    background: #fff;
    border-color: rgba(79, 70, 229, 0.15);
}

.item-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10B981, #059669);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
}

.item-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--clr-text-main);
    flex-grow: 1;
}

/* Coloured time badges */
.item-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    white-space: nowrap;
}

.item-badge--purple {
    background: rgba(124, 58, 237, 0.1);
    color: #6D28D9;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.item-badge--cyan {
    background: rgba(6, 182, 212, 0.1);
    color: #0891B2;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.item-badge--green {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Savings highlight block */
.report-card__savings {
    margin: 0;
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.04) 0%, rgba(6, 182, 212, 0.04) 100%);
    border-top: 1px solid rgba(79, 70, 229, 0.08);
    border-bottom: 1px solid rgba(79, 70, 229, 0.08);
    position: relative;
}

.savings-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--clr-text-subtle);
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.savings-note {
    font-size: 9px;
    text-transform: none;
    font-weight: 500;
    opacity: 0.8;
}

.savings-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.savings-number {
    display: flex;
    align-items: baseline;
    gap: 4px;
    line-height: 0.9;
}

.savings-value {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.05em;
    position: relative;
}

/* Shimmer animation for the big number */
.savings-value::after {
    content: attr(data-content);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.8) 50%, transparent 60%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer-text 4s infinite linear;
    pointer-events: none;
}

.savings-unit {
    font-size: 22px;
    font-weight: 700;
    color: var(--clr-primary);
    opacity: 0.8;
}

.savings-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: linear-gradient(135deg, #10B981, #059669);
    color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 10px 20px -5px rgba(16, 185, 129, 0.4);
}

.savings-badge-icon {
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.4));
}

.savings-subtext {
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

/* Progress section */
.report-card__progress {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 16px;
    padding-bottom: 20px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    color: var(--clr-text-subtle);
}

.progress-fraction {
    font-size: 13px;
    font-weight: 700;
    color: var(--clr-text-main);
}

/* Segmented progress bar */
.progress-segments {
    display: flex;
    gap: 5px;
}

.progress-seg {
    flex: 1;
    height: 7px;
    border-radius: 999px;
    background: rgba(229, 231, 235, 0.8);
    transition: background 0.3s ease;
}

.progress-seg--active {
    background: linear-gradient(90deg, #4F46E5, #06B6D4);
}

.progress-hint {
    font-size: 11px;
    color: var(--clr-primary);
    font-weight: 600;
    opacity: 0.7;
    margin: 0;
}

/* Legacy selectors kept for backward compatibility */
.report-card__footer {
    padding-top: 16px;
    border-top: 1.5px solid var(--clr-border);
    margin-bottom: 20px;
}

.footer-label {
    font-size: 13px;
    color: var(--clr-text-subtle);
}

.footer-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--clr-primary);
}

.progress-bar {
    height: 6px;
    background-color: var(--clr-bg-alt);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: var(--clr-primary);
    border-radius: 3px;
}

/* How It Works Section */
.how-it-works {
    background-color: var(--clr-bg-alt);
    padding: 120px 24px;
    overflow: hidden;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

/* Connector Line Logic */
.steps-connector {
    position: absolute;
    top: 125px;
    left: 50px;
    right: 50px;
    height: 2px;
    z-index: 0;
}

.steps-connector__line {
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            var(--clr-primary) 0%,
            var(--clr-accent) 50%,
            var(--clr-success) 100%);
    opacity: 0.2;
    position: relative;
}

.steps-connector__dot {
    position: absolute;
    top: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border: 2px solid var(--clr-primary);
    box-shadow: 0 0 10px rgba(79, 70, 229, 0.4);
}

.steps-connector__dot--1 {
    left: 0%;
    border-color: var(--clr-primary);
}

.steps-connector__dot--2 {
    left: 50%;
    border-color: var(--clr-accent);
}

.steps-connector__dot--3 {
    left: 100%;
    border-color: var(--clr-success);
}

.step-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: #fff;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    border-color: var(--clr-primary);
}

.step-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.step-card__number {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    background: var(--clr-primary);
    border-radius: 6px;
    padding: 2px 8px;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.step-card:nth-child(3) .step-card__number {
    background: var(--clr-accent);
}

.step-card:nth-child(4) .step-card__number {
    background: var(--clr-success);
}

.step-card__icon-wrapper {
    position: relative;
    width: 64px;
    height: 64px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card__icon {
    position: relative;
    z-index: 2;
    color: var(--clr-primary);
    transition: transform 0.3s ease;
}

.step-card:hover .step-card__icon {
    transform: scale(1.1) rotate(5deg);
}

.step-card__icon-decor {
    position: absolute;
    inset: 0;
    background: var(--clr-primary);
    border-radius: 16px;
    opacity: 0.1;
    transform: rotate(-10deg);
    transition: all 0.3s ease;
}

.decor-cyan {
    background: var(--clr-accent);
}

.decor-green {
    background: var(--clr-success);
}

.step-card:hover .step-card__icon-decor {
    transform: rotate(0deg) scale(1.1);
    opacity: 0.15;
}

.step-card__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.step-card__text {
    font-size: 16px;
    color: var(--clr-text-subtle);
    margin-bottom: 24px;
    line-height: 1.6;
}

.step-card__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step-card__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--clr-text-main);
}

.check {
    color: var(--clr-success);
    font-weight: 700;
}

.analysis-progress {
    margin-top: 12px;
}

.analysis-progress__bar {
    height: 8px;
    background-color: var(--clr-bg-alt);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.analysis-progress__fill {
    height: 100%;
    background-color: var(--clr-accent);
    width: 0;
    border-radius: 4px;
}

.step-card.is-visible .analysis-progress__fill {
    animation: progress-load 3s forwards ease-in-out;
}

@keyframes progress-load {
    0% {
        width: 0;
    }

    30% {
        width: 40%;
    }

    60% {
        width: 75%;
    }

    100% {
        width: 100%;
    }
}

.analysis-progress__labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 600;
    color: var(--clr-text-subtle);
}

.step-card__badge {
    background-color: #F0FDF4;
    color: #166534;
    font-size: 12px;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #BBF7D0;
}

/* Report Example Section */
.report-example {
    padding-bottom: 96px;
    background-color: var(--clr-bg-main);
}


.report-features {
    display: flex;
    flex-direction: row;
    /* Force row layout */
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: nowrap;
    /* Prevent wrapping on desktop */
}

.report-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #FFFFFF;
    padding: 12px 20px;
    border-radius: var(--radius-btn);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--clr-border);
    flex: 1;
    /* Removed min-width to allow shrinking if necessary on medium screens before breakpoint */
    justify-content: center;
    white-space: nowrap;
    /* Prevent text wrapping inside cards if desired, or remove to allow */
}

.report-feature__icon {
    color: var(--clr-primary);
    display: flex;
    align-items: center;
}

.report-feature__text {
    font-size: 14px;
    font-weight: 600;
    color: var(--clr-text-main);
}

.report-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: flex-start;
}

.report-sections-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.report-section-item {
    display: flex;
    gap: 20px;
    padding: 12px;
    border-radius: var(--radius-card);
    transition: background-color 0.2s ease;
}

.report-section-item:hover {
    background-color: #FFFFFF;
}

.section-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--clr-bg-main);
    color: var(--clr-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.section-content h4 {
    margin-bottom: 4px;
}

.section-content p {
    font-size: 15px;
    color: var(--clr-text-subtle);
}

/* PDF Mockup */
.report-visual {
    display: flex;
    justify-content: center;
}

.pdf-mockup {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 32px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
    animation: float 4s infinite ease-in-out;
}

.pdf-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    font-size: 64px;
    font-weight: 900;
    color: var(--clr-primary);
    opacity: 0.06;
    pointer-events: none;
    white-space: nowrap;
}

.pdf-header__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.pdf-logo {
    font-size: 14px;
    font-weight: 700;
    color: var(--clr-primary);
}

.pdf-badge {
    font-size: 10px;
    font-weight: 700;
    background-color: var(--clr-primary);
    color: #FFFFFF;
    padding: 2px 8px;
    border-radius: 4px;
}

.pdf-divider {
    height: 1px;
    background-color: var(--clr-border);
    margin-bottom: 16px;
}

.pdf-client {
    font-size: 16px;
    margin-bottom: 4px;
}

.pdf-date {
    font-size: 12px;
    color: var(--clr-text-subtle);
    margin-bottom: 24px;
}

.pdf-section {
    margin-bottom: 24px;
}

.pdf-section-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--clr-text-subtle);
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.pdf-text {
    font-size: 13px;
    color: var(--clr-text-main);
    line-height: 1.4;
}

.pdf-digitization {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    font-size: 12px;
}

.digitization-blocks {
    display: flex;
    gap: 4px;
}

.digitization-blocks .block {
    width: 12px;
    height: 12px;
    background-color: #E5E7EB;
    border-radius: 2px;
}

.digitization-blocks .block.filled {
    background-color: var(--clr-primary);
}

.digitization-label {
    color: var(--clr-text-subtle);
}

/* PDF Table */
.pdf-table-wrapper {
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    overflow: hidden;
}

.pdf-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11px;
}

.pdf-table th {
    background-color: var(--clr-bg-alt);
    text-align: left;
    padding: 8px 12px;
    font-weight: 600;
    color: var(--clr-text-subtle);
}

.pdf-table td {
    padding: 8px 12px;
    border-top: 1px solid var(--clr-border);
}

.prio {
    font-weight: 600;
}

/* PDF Savings */
.pdf-savings {
    background-color: var(--clr-chip-bg);
    padding: 16px;
    border-radius: 8px;
}

.savings-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--clr-primary);
    margin-bottom: 4px;
}

.savings-calc {
    font-size: 11px;
    color: var(--clr-text-subtle);
    margin-bottom: 12px;
}

.pdf-progress-wrap {
    margin-top: 8px;
}

.pdf-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 4px;
}

.pdf-progress-bar {
    height: 4px;
    background-color: rgba(79, 70, 229, 0.1);
    border-radius: 2px;
}

.pdf-progress-fill {
    height: 100%;
    background-color: var(--clr-primary);
    border-radius: 2px;
}

.pdf-footer {
    margin-top: 32px;
    text-align: center;
    font-size: 10px;
    color: var(--clr-text-subtle);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 24px;
    background-color: var(--clr-bg-main);
}

.stars {
    color: #F59E0B;
    font-size: 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.testimonial-card {
    background-color: var(--clr-bg-alt);
    border: 1px solid var(--clr-border);
    border-radius: 12px;
    padding: 28px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.quote-mark {
    position: absolute;
    top: -8px;
    left: 16px;
    font-family: Georgia, serif;
    font-size: 48px;
    color: #C7D2FE;
    line-height: 1;
    margin-top: 20px;
}

.stars-mini {
    color: #F59E0B;
    font-size: 14px;
    margin-bottom: 16px;
    margin-top: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--clr-text-main);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.avatar--indigo {
    background-color: #EEF2FF;
    color: var(--clr-primary);
}

.avatar--green {
    background-color: #ECFDF5;
    color: var(--clr-success);
}

.avatar--amber {
    background-color: #FFF7ED;
    color: #F59E0B;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--clr-text-main);
}

.author-meta {
    font-size: 12px;
    color: var(--clr-text-subtle);
}

/* FAQ Section */
.faq-section {
    padding: 80px 24px;
    background-color: var(--clr-bg-alt);
}

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

.faq-item {
    background-color: #FFFFFF;
    border: 1px solid var(--clr-border);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: transparent;
    border: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: var(--clr-text-main);
    text-align: left;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.faq-header:hover {
    background-color: var(--clr-bg-alt);
}

.chevron {
    transition: transform 0.3s ease;
    color: var(--clr-text-subtle);
    flex-shrink: 0;
}

.faq-item.active .chevron {
    transform: rotate(180deg);
    color: var(--clr-primary);
}

.faq-item.active {
    border-color: var(--clr-primary);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-body {
    opacity: 1;
}

.faq-content {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--clr-text-subtle);
    line-height: 1.6;
}

/* Integrations Bar */
.integrations-bar {
    padding-top: 32px;
    border-top: 1px solid var(--clr-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.integrations-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--clr-text-subtle);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.integrations-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.logo-item {
    font-size: 14px;
    font-weight: 700;
    color: var(--clr-text-main);
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    cursor: default;
}

.logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Final CTA Section */
.final-cta {
    position: relative;
    padding: 96px 24px;
    background: linear-gradient(135deg, #4F46E5 0%, #4338CA 100%);
    color: #FFFFFF;
    overflow: hidden;
    text-align: center;
}

.cta-decor {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.cta-decor--1 {
    width: 300px;
    height: 300px;
    background-color: var(--clr-accent);
    top: -50px;
    right: -50px;
    opacity: 0.15;
}

.cta-decor--2 {
    width: 250px;
    height: 250px;
    background-color: #FFFFFF;
    bottom: -50px;
    left: -50px;
    opacity: 0.05;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.cta-btns .btn {
    min-width: 280px;
}

.cta-guarantees {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    opacity: 0.8;
}

/* Footer Section */
.footer {
    background-color: #111827;
    color: #9CA3AF;
    padding: 48px 24px 32px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    text-decoration: none;
}

.footer-logo__img {
    height: 32px;
    width: auto;
}

.footer-logo__brand {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-logo__text {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
}

.footer-logo__subtext {
    font-size: 8px;
    font-weight: 800;
    color: #9CA3AF;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: #9CA3AF;
}

.footer-description a {
    color: #FFFFFF;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-powered a {
    color: inherit;
}

.footer-nav {
    display: flex;
    gap: 48px;
}

.footer-col-title {
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    font-size: 14px;
    color: #9CA3AF;
}

.footer-col a:hover {
    color: #FFFFFF;
}

.footer-bottom {
    padding-top: 24px;
    margin-top: 32px;
    border-top: 1px solid #1F2937;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #6B7280;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background-color: var(--clr-primary);
    color: #FFFFFF;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
    filter: brightness(1.1);
}

/* Audit Form Section */
.audit-section {
    padding: 96px 24px;
    background-color: var(--clr-bg-alt);
}

.audit-wrapper {
    max-width: 720px;
    margin: 0 auto;
    background-color: var(--clr-bg-main);
    border: 1px solid var(--clr-border);
    border-radius: 16px;
    padding: 48px;
}

/* Progress Bar */
.form-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--clr-text-subtle);
}

.progress-step.active {
    color: var(--clr-primary);
    font-weight: 600;
}

.step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all 0.3s ease;
}

.progress-step.active .step-num {
    background-color: var(--clr-primary);
    border-color: var(--clr-primary);
    color: #FFFFFF;
}

.progress-line {
    flex-grow: 1;
    height: 2px;
    background-color: var(--clr-border);
    margin: 0 20px;
    position: relative;
}

.progress-line-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: var(--clr-primary);
    transition: width 0.5s ease;
}

.form-progress[data-current="2"] .progress-line-fill {
    width: 50%;
}

.form-progress[data-current="3"] .progress-line-fill {
    width: 100%;
}

/* Form Styling */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.label-subtle {
    color: var(--clr-text-subtle) !important;
    font-weight: 500 !important;
}

.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--clr-text-subtle);
    pointer-events: none;
}

input[type="url"],
input[type="email"],
input[type="text"],
select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-btn);
    font-family: inherit;
    font-size: 15px;
    transition: all 0.2s ease;
    background-color: #FFFFFF;
}

.input-with-icon input {
    padding-left: 44px;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.12);
}

textarea {
    width: 100%;
    min-height: 100px;
    padding: 12px 16px;
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-btn);
    font-family: inherit;
    font-size: 15px;
    transition: all 0.2s ease;
    background-color: #FFFFFF;
    resize: vertical;
}

.char-counter {
    text-align: right;
    font-size: 11px;
    color: var(--clr-text-subtle);
    margin-top: 4px;
}

input.error {
    border-color: var(--clr-error);
}

.helper-text {
    font-size: 12px;
    color: var(--clr-text-subtle);
    margin-top: 6px;
}

.error-message {
    display: none;
    font-size: 12px;
    color: var(--clr-error);
    margin-top: 6px;
}

.form-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.form-row .form-group label {
    min-height: 40px;
    display: flex;
    align-items: flex-end;
}

/* Custom Select */
.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    padding-right: 40px;
}

.select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--clr-text-subtle);
}

/* Radio & Checkbox Cards */
.radio-cards,
.checkbox-cards {
    display: grid;
    gap: 12px;
    margin-top: 12px;
}

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

.radio-card,
.checkbox-card {
    cursor: pointer;
    position: relative;
}

.radio-card input,
.checkbox-card input {
    position: absolute;
    opacity: 0;
}

.radio-card__content,
.checkbox-card__content {
    display: block;
    padding: 14px 16px;
    background-color: #FFFFFF;
    border: 1.5px solid var(--clr-border);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
    text-align: center;
}

.radio-card input:checked+.radio-card__content,
.checkbox-card input:checked+.checkbox-card__content {
    border-color: var(--clr-primary);
    background-color: var(--clr-chip-bg);
    font-weight: 600;
}

.checkbox-card.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Chip Checkboxes */
.chip-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.chip-checkbox {
    cursor: pointer;
}

.chip-checkbox input {
    position: absolute;
    opacity: 0;
}

.chip-checkbox span {
    display: block;
    padding: 6px 14px;
    background-color: #F3F4F6;
    border: 1.5px solid transparent;
    border-radius: 999px;
    font-size: 13px;
    transition: all 0.2s ease;
}

.chip-checkbox input:checked+span {
    background-color: var(--clr-chip-bg);
    border-color: var(--clr-primary);
    color: var(--clr-primary);
    font-weight: 600;
}

/* Form Actions */
.form-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-actions .btn {
    flex: 1;
    white-space: nowrap;
}

.btn--flex {
    flex: 1;
    width: 100%;
}

.form-security {
    font-size: 12px;
    color: var(--clr-text-subtle);
    text-align: center;
    margin-top: 16px;
}

/* States */
.hidden {
    display: none !important;
}

.hidden-field {
    display: none;
}

.hidden-field.visible {
    display: block;
}

/* Status Modal */
.status-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.status-modal.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.status-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.status-modal__container {
    position: relative;
    width: 100%;
    max-width: 500px;
    z-index: 1;
    animation: modal-in 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modal-in {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.status-modal__content {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
}

.status-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--clr-bg-alt);
    color: var(--clr-text-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.status-modal__close:hover {
    background: var(--clr-border);
    color: var(--clr-text-main);
}

.success-view {
    padding: 0;
    position: relative;
}

/* AI Radar */
.ai-radar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-radar__ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid var(--clr-primary);
    opacity: 0;
    animation: radar-expand 2.4s ease-out infinite;
}

.ai-radar__ring--1 {
    width: 60px;
    height: 60px;
    animation-delay: 0s;
}

.ai-radar__ring--2 {
    width: 90px;
    height: 90px;
    animation-delay: 0.5s;
}

.ai-radar__ring--3 {
    width: 120px;
    height: 120px;
    animation-delay: 1s;
}

@keyframes radar-expand {
    0% {
        transform: scale(0.5);
        opacity: 0.7;
    }

    80% {
        transform: scale(1);
        opacity: 0.1;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.ai-radar__core {
    position: relative;
    z-index: 2;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.4);
    animation: core-pulse 2s ease-in-out infinite alternate;
}

@keyframes core-pulse {
    from {
        box-shadow: 0 8px 24px rgba(79, 70, 229, 0.4);
    }

    to {
        box-shadow: 0 12px 40px rgba(79, 70, 229, 0.65);
    }
}

.ai-radar__sweep {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0%, rgba(79, 70, 229, 0.25) 30%, transparent 50%);
    animation: spin 2s linear infinite;
}

/* Loading Title + Dots */
.loading-title {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color: var(--clr-text-main);
    margin-bottom: 6px;
}

.loading-dots span {
    display: inline-block;
    animation: dot-bounce 1.2s infinite ease-in-out;
    color: var(--clr-primary);
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dot-bounce {

    0%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-6px);
    }
}

.loading-subtitle {
    font-size: 13px;
    color: var(--clr-text-subtle);
    text-align: center;
    margin-bottom: 20px;
    min-height: 20px;
    transition: opacity 0.4s ease;
}

/* Loading Progress Bar */
.loading-progress-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.loading-progress-bar {
    flex: 1;
    height: 8px;
    background: var(--clr-border);
    border-radius: 999px;
    overflow: hidden;
}

.loading-progress-fill {
    height: 100%;
    width: 0%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--clr-primary) 0%, var(--clr-accent) 100%);
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(79, 70, 229, 0.5);
}

.loading-progress-pct {
    font-size: 12px;
    font-weight: 700;
    color: var(--clr-primary);
    min-width: 36px;
    text-align: right;
    transition: all 0.4s ease;
}

/* Stepper */
.stepper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stepper-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: var(--clr-text-subtle);
    transition: all 0.3s ease;
    padding: 10px 14px;
    border-radius: 10px;
    background: transparent;
}

.stepper-item.active {
    color: var(--clr-primary);
    font-weight: 600;
    background: rgba(79, 70, 229, 0.06);
}

.stepper-item.completed {
    color: var(--clr-success);
}

.stepper-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-border);
    font-size: 12px;
    color: #fff;
    flex-shrink: 0;
    font-weight: 700;
}

.stepper-item.active .stepper-icon {
    background: var(--clr-primary);
}

.stepper-item.completed .stepper-icon {
    background: var(--clr-success);
}

.stepper-content {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.stepper-step-icon {
    opacity: 0.35;
    flex-shrink: 0;
    transition: opacity 0.3s ease;
}

.stepper-item.active .stepper-step-icon,
.stepper-item.completed .stepper-step-icon {
    opacity: 1;
}

/* ---- SUCCESS VIEW ---- */
.success-icon-wrap {
    position: relative;
    width: 96px;
    height: 96px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-glow-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid #10B981;
    opacity: 0;
    animation: glow-ring 1.6s ease-out 0.3s forwards;
}

@keyframes glow-ring {
    0% {
        transform: scale(0.6);
        opacity: 0.9;
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
    }

    60% {
        transform: scale(1.1);
        opacity: 0.5;
        box-shadow: 0 0 24px 8px rgba(16, 185, 129, 0.2);
    }

    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 12px 4px rgba(16, 185, 129, 0.1);
    }
}

.success-checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scale-in 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.25);
}

@keyframes scale-in {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

.success-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: var(--clr-chip-bg);
    color: var(--clr-primary);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.success-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--clr-text-main);
    margin-bottom: 10px;
}

.success-desc {
    font-size: 15px;
    color: var(--clr-text-subtle);
    line-height: 1.6;
    margin-bottom: 20px;
}

.success-trust-pills {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.trust-pill {
    font-size: 12px;
    font-weight: 600;
    color: var(--clr-success);
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: 999px;
    padding: 4px 12px;
}

.success-cta {
    display: block;
    width: 100%;
    margin-bottom: 14px;
    box-shadow: 0 10px 30px -10px rgba(79, 70, 229, 0.5);
}

.success-spam-hint {
    font-size: 12px;
    color: var(--clr-text-subtle);
}

.expert-link {
    display: inline-block;
    margin-top: 24px;
    color: var(--clr-primary);
    font-weight: 600;
}

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

/* Spinner */
.spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #FFFFFF;
    animation: spin 0.8s linear infinite;
    margin-left: 10px;
}

.spinner-small {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(79, 70, 229, 0.3);
    border-radius: 50%;
    border-top-color: var(--clr-primary);
    animation: spin 0.8s linear infinite;
}

.btn.loading .spinner {
    display: inline-block;
}

.btn.loading .btn-text {
    opacity: 0.8;
}

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

/* Shake Animation */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

.shake {
    animation: shake 0.5s ease-in-out;
}

/* Animations */
@keyframes pulse-dot {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes shimmer-text {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes shine-sweep {
    0% {
        left: -150%;
        opacity: 0;
    }

    15% {
        opacity: 0.5;
    }

    30% {
        left: 150%;
        opacity: 0;
    }

    100% {
        left: 150%;
        opacity: 0;
    }
}

/* Main Spacing */
main {
    padding-top: var(--navbar-height);
}

/* Responsiveness */
@media (max-width: 1024px) {
    .report-features {
        flex-wrap: wrap;
    }

    .report-feature {
        min-width: calc(50% - 12px);
    }

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

    .hero__container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero__content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .hero__btns {
        justify-content: center;
    }


    .steps-grid {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .steps-connector {
        display: none;
    }

    .step-card {
        max-width: 450px;
        margin: 0 auto;
    }

    .step-card:not(:last-child)::after {
        content: '↓';
        position: absolute;
        bottom: -45px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 32px;
        color: var(--clr-primary);
        opacity: 0.3;
        font-weight: 300;
    }

    .report-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .report-visual {
        order: -1;
    }

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

    .report-section-item {
        text-align: left;
    }

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

    .testimonial-card {
        max-width: 500px;
        margin: 0 auto;
    }

    .faq-header {
        padding: 16px 20px;
        font-size: 15px;
    }

    .faq-content {
        padding: 0 20px 16px;
        font-size: 14px;
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

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

@media (max-width: 767px) {
    .report-feature {
        min-width: 100%;
    }

    .navbar__links {
        display: flex;
        flex-direction: column;
    }

    .navbar__actions {
        gap: 0;
    }

    .logo__text {
        font-size: 16px;
    }

    .hero {
        padding: 64px 0 64px;
    }

    .hero__title {
        font-size: 36px;
    }

    .hero__btns {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .hero__social-proof {
        flex-wrap: wrap;
        justify-content: center;
    }

    .audit-wrapper {
        padding: 32px 24px;
    }

    .form-progress {
        margin-bottom: 32px;
    }

    .progress-line {
        margin: 0 12px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

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

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

    .form-group label {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .radio-card__content,
    .checkbox-card__content {
        padding: 12px;
        font-size: 13px;
    }

    .chip-checkbox span {
        padding: 5px 12px;
        font-size: 12px;
    }

    .form-actions {
        flex-direction: column;
        gap: 12px;
    }

    .form-actions .btn {
        width: 100%;
        order: 1;
    }

    #backBtn {
        order: 2;
    }

    /* Step 3 Loading & Success Refinements */
    .loading-stepper {
        padding: 20px 0;
    }

    .stepper-text {
        font-size: 13px;
    }

    .success-title {
        font-size: 24px;
    }

    .success-desc {
        font-size: 15px;
        padding: 0 10px;
    }

    .pdf-mockup {
        padding: 20px;
    }

    .integrations-logos {
        gap: 20px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .audit-wrapper {
        padding: 24px 16px;
    }

    .step-label {
        display: none;
    }

    .progress-step {
        gap: 0;
    }

    .progress-line {
        margin: 0 8px;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 16px 24px;
    transform: translateY(100%);
    animation: cookie-slide-up 0.5s 1s ease forwards;
}

.cookie-banner.hidden {
    animation: cookie-slide-down 0.4s ease forwards;
    pointer-events: none;
}

@keyframes cookie-slide-up {
    to {
        transform: translateY(0);
    }
}

@keyframes cookie-slide-down {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

.cookie-banner__content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(229, 231, 235, 0.6);
    border-radius: 16px;
    box-shadow:
        0 -4px 30px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(0, 0, 0, 0.04);
}

.cookie-banner__text {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--clr-text-subtle);
    line-height: 1.5;
}

.cookie-banner__text a {
    color: var(--clr-primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner__text a:hover {
    color: #3730A3;
}

.cookie-banner__icon {
    flex-shrink: 0;
    color: var(--clr-primary);
}

.cookie-banner__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .cookie-banner {
        padding: 12px 16px;
    }

    .cookie-banner__content {
        flex-direction: column;
        align-items: stretch;
        padding: 16px 20px;
        gap: 16px;
    }

    .cookie-banner__actions {
        width: 100%;
    }

    .cookie-banner__actions .btn {
        flex: 1;
    }
}