:root {
    --primary: #0052cc;
    --primary-dark: #003d99;
    --primary-light: #1a6aff;
    --secondary: #00a3ff;
    --secondary-dark: #0082cc;
    --secondary-light: #33b5ff;
    --bg: #ffffff;
    --bg-alt: #f7f8fa;
    --bg-glass: rgba(255, 255, 255, 0.7);
    --bg-glass-strong: rgba(255, 255, 255, 0.85);
    --bg-glass-subtle: rgba(255, 255, 255, 0.4);
    --text: #171717;
    --text-muted: #5a5a6e;
    --text-light: #8a8a9a;
    --border: #e2e4e9;
    --border-light: #eef0f4;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.1), 0 8px 20px rgba(0, 0, 0, 0.05);
    --shadow-glass: 0 8px 32px rgba(0, 82, 204, 0.08);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --font-sans: 'Montserrat', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease;
    --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem
}

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

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

body {
    font-family: var(--font-sans);
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh
}

body::before {
    content: '';
    position: fixed;
    top: -50%;
    right: -30%;
    width: 80vw;
    height: 80vw;
    max-width: 900px;
    max-height: 900px;
    background: radial-gradient(circle, rgba(0, 163, 255, 0.04) 0%, rgba(0, 82, 204, 0.02) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0
}

body::after {
    content: '';
    position: fixed;
    bottom: -30%;
    left: -20%;
    width: 60vw;
    height: 60vw;
    max-width: 700px;
    max-height: 700px;
    background: radial-gradient(circle, rgba(0, 82, 204, 0.03) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0
}

::selection {
    background-color: rgba(0, 82, 204, 0.15);
    color: var(--primary)
}

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: var(--radius-sm)
}

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-md);
    background: var(--primary);
    color: #ffffff;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-sm);
    z-index: 10000;
    font-weight: 600;
    text-decoration: none;
    transition: top var(--transition-base)
}

.skip-link:focus {
    top: var(--space-md)
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-sans);
    color: var(--text);
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.02em
}

h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.03em
}

h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 700
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 600
}

h4 {
    font-size: 1.125rem;
    font-weight: 600
}

h5 {
    font-size: 1rem;
    font-weight: 600
}

h6 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em
}

p {
    margin-bottom: var(--space-md);
    color: var(--text-muted);
    max-width: 70ch
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-base), background-color var(--transition-base), transform var(--transition-fast);
    font-weight: 500
}

a:hover {
    color: var(--primary-dark)
}

a:active {
    transform: scale(0.98)
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

ul,
ol {
    list-style: none
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    position: relative;
    z-index: 1
}

.container--narrow {
    max-width: 800px
}

.container--wide {
    max-width: 1400px
}

/* ===================== */
/* HEADER                */
/* ===================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-glass-strong);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-light);
    padding: var(--space-md) 0;
    transition: box-shadow var(--transition-base), padding var(--transition-base)
}

.header--scrolled {
    box-shadow: var(--shadow-md);
    padding: var(--space-sm) 0
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl)
}

.header__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: opacity var(--transition-base);
    flex-shrink: 0
}

.header__logo:hover {
    opacity: 0.8;
    color: var(--text)
}

.header__logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 800;
    font-size: 0.875rem;
    flex-shrink: 0
}

.header__logo-text {
    white-space: nowrap
}

.header__logo-text span {
    color: var(--primary)
}

/* ===================== */
/* NAVIGATION            */
/* ===================== */
.nav {
    display: flex;
    align-items: center;
    gap: var(--space-xs)
}

.nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    list-style: none;
    margin: 0;
    padding: 0
}

.nav__item {
    margin: 0;
    padding: 0
}

.nav__link {
    display: inline-block;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition-base), background-color var(--transition-base);
    text-decoration: none;
    white-space: nowrap
}

.nav__link:hover {
    color: var(--primary);
    background-color: rgba(0, 82, 204, 0.05)
}

.nav__link--active {
    color: var(--primary);
    background-color: rgba(0, 82, 204, 0.08);
    font-weight: 600
}

/* Hamburger Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
    transition: background-color var(--transition-base);
    z-index: 1001;
    position: relative
}

.nav__toggle:hover {
    background-color: rgba(0, 82, 204, 0.05)
}

.nav__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-base)
}

.nav__toggle--open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.nav__toggle--open span:nth-child(2) {
    opacity: 0
}

.nav__toggle--open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

/* ===================== */
/* HERO                  */
/* ===================== */
.hero {
    padding: var(--space-4xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(0, 82, 204, 0.04) 0%, rgba(0, 163, 255, 0.02) 40%, transparent 70%);
    pointer-events: none
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    background: rgba(0, 82, 204, 0.06);
    border: 1px solid rgba(0, 82, 204, 0.12);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-xl);
    text-transform: uppercase;
    letter-spacing: 0.05em
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    background: var(--secondary);
    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(1.4)
    }
}

.hero__title {
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1
}

.hero__title-highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.8;
    position: relative;
    z-index: 1
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    position: relative;
    z-index: 1
}

.hero__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--border-light);
    position: relative;
    z-index: 1
}

.hero__stat {
    text-align: center
}

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

.hero__stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: var(--space-xs);
    font-weight: 500
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.8rem 1.75rem;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    line-height: 1.4
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    opacity: 0;
    transition: opacity var(--transition-base)
}

.btn:hover::after {
    opacity: 1
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 82, 204, 0.25), 0 2px 4px rgba(0, 82, 204, 0.15)
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 82, 204, 0.35), 0 4px 8px rgba(0, 82, 204, 0.2);
    color: #ffffff
}

.btn--primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 82, 204, 0.2)
}

.btn--secondary {
    background: rgba(0, 82, 204, 0.06);
    color: var(--primary);
    border: 1px solid rgba(0, 82, 204, 0.15)
}

.btn--secondary:hover {
    background: rgba(0, 82, 204, 0.1);
    border-color: rgba(0, 82, 204, 0.25);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
    color: var(--primary)
}

.btn--secondary:active {
    transform: translateY(0)
}

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

.btn--outline:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 82, 204, 0.25)
}

.btn--ghost {
    background: transparent;
    color: var(--text-muted);
    padding: 0.6rem 1rem
}

.btn--ghost:hover {
    color: var(--primary);
    background: rgba(0, 82, 204, 0.05)
}

.btn--lg {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
    border-radius: var(--radius-lg)
}

.btn--sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: var(--radius-sm)
}

.btn--full {
    width: 100%
}

.btn__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0
}

.section {
    padding: var(--space-4xl) 0;
    position: relative;
    z-index: 1
}

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

.section__header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto var(--space-3xl)
}

.section__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
    margin-bottom: var(--space-sm)
}

.section__title {
    margin-bottom: var(--space-md)
}

.section__description {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin: 0 auto
}

.bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--space-lg)
}

.bento__item {
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-slow), box-shadow var(--transition-slow)
}

.bento__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg)
}

.bento__item--glass {
    background: var(--bg-glass);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-glass)
}

.bento__item--solid {
    background: var(--bg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm)
}

.bento__item--solid:hover {
    border-color: rgba(0, 82, 204, 0.2)
}

.bento__item--primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
    border: none
}

.bento__item--primary p,
.bento__item--primary h3,
.bento__item--primary h4 {
    color: #ffffff
}

.bento__item--primary p {
    opacity: 0.9
}

.bento__item--span-6 {
    grid-column: span 6
}

.bento__item--span-4 {
    grid-column: span 4
}

.bento__item--span-8 {
    grid-column: span 8
}

.bento__item--span-12 {
    grid-column: span 12
}

.bento__item--span-3 {
    grid-column: span 3
}

.bento__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    font-size: 1.25rem
}

.bento__icon--primary {
    background: rgba(0, 82, 204, 0.08);
    color: var(--primary)
}

.bento__icon--secondary {
    background: rgba(0, 163, 255, 0.08);
    color: var(--secondary)
}

.bento__icon--white {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff
}

.bento__title {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm)
}

.bento__text {
    font-size: 0.9rem;
    line-height: 1.7
}

.wizard {
    max-width: 720px;
    margin: 0 auto;
    position: relative
}

.wizard__progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl)
}

.wizard__progress-step {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all var(--transition-base);
    border: 2px solid var(--border);
    color: var(--text-light);
    background: var(--bg)
}

.wizard__progress-step--active {
    border-color: var(--primary);
    color: #ffffff;
    background: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 82, 204, 0.12)
}

.wizard__progress-step--completed {
    border-color: var(--secondary);
    background: var(--secondary);
    color: #ffffff
}

.wizard__progress-line {
    width: 40px;
    height: 2px;
    background: var(--border);
    border-radius: 1px;
    position: relative;
    overflow: hidden
}

.wizard__progress-line--active {
    background: var(--secondary)
}

.wizard__progress-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    border-radius: 1px;
    transition: width var(--transition-slow)
}

.wizard__bar {
    width: 100%;
    height: 4px;
    background: var(--border-light);
    border-radius: 2px;
    margin-bottom: var(--space-2xl);
    overflow: hidden
}

.wizard__bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    transition: width var(--transition-slow)
}

.wizard__card {
    background: var(--bg-glass-strong);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl) var(--space-3xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden
}

.wizard__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary))
}

.wizard__question-number {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
    margin-bottom: var(--space-sm)
}

.wizard__question {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: var(--space-sm);
    line-height: 1.4
}

.wizard__question-hint {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: var(--space-xl)
}

.wizard__options {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl)
}

.wizard__option {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative
}

.wizard__option:hover {
    border-color: rgba(0, 82, 204, 0.3);
    background: rgba(0, 82, 204, 0.02);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px)
}

.wizard__option--selected {
    border-color: var(--primary);
    background: rgba(0, 82, 204, 0.04);
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1)
}

.wizard__option--selected:hover {
    transform: translateX(0)
}

.wizard__option-radio {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--border);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base)
}

.wizard__option--selected .wizard__option-radio {
    border-color: var(--primary);
    background: var(--primary)
}

.wizard__option--selected .wizard__option-radio::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%
}

.wizard__option-content {
    flex: 1
}

.wizard__option-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 2px
}

.wizard__option-description {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0
}

.wizard__option-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(0, 82, 204, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem
}

.wizard__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-light)
}

.result {
    max-width: 900px;
    margin: 0 auto
}

.result__header {
    text-align: center;
    margin-bottom: var(--space-3xl)
}

.result__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-lg);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.1), rgba(0, 163, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem
}

.result__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-lg)
}

.result__card {
    background: var(--bg-glass-strong);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    position: relative;
    transition: all var(--transition-slow);
    overflow: hidden
}

.result__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 82, 204, 0.2)
}

.result__card--recommended {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary), var(--shadow-lg)
}

.result__card--recommended::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary))
}

.result__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md)
}

.result__card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-sm)
}

.result__card-subtitle {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: var(--space-lg)
}

.result__card-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl)
}

.result__card-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 0.85rem;
    color: var(--text-muted)
}

.result__card-feature-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(0, 82, 204, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 0.65rem;
    font-weight: 700
}

.comparison {
    margin-top: var(--space-3xl)
}

.comparison__table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--bg)
}

.comparison__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem
}

.comparison__table th {
    background: var(--bg-alt);
    padding: var(--space-md) var(--space-lg);
    text-align: left;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    border-bottom: 2px solid var(--border);
    white-space: nowrap
}

.comparison__table td {
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--border-light);
    color: var(--text-muted);
    vertical-align: top
}

.comparison__table tr:last-child td {
    border-bottom: none
}

.comparison__table tr:hover td {
    background: rgba(0, 82, 204, 0.02)
}

.comparison__table td:first-child {
    font-weight: 600;
    color: var(--text)
}

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

.comparison__cross {
    color: var(--text-light)
}

.card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: rgba(0, 82, 204, 0.15)
}

.card--glass {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-glass)
}

.card--elevated {
    box-shadow: var(--shadow-md);
    border: none
}

.card__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(0, 82, 204, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: var(--primary);
    font-size: 1.1rem
}

.card__title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: var(--space-sm)
}

.card__text {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7
}

.card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    margin-top: var(--space-md);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    transition: gap var(--transition-base)
}

.card__link:hover {
    gap: var(--space-sm)
}

.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glass)
}

.glass-panel--strong {
    background: var(--bg-glass-strong)
}

.glass-panel--subtle {
    background: var(--bg-glass-subtle)
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-lg);
    counter-reset: step-counter
}

.step {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    position: relative;
    counter-increment: step-counter
}

.step__number {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-md);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 16px rgba(0, 82, 204, 0.2)
}

.step__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-sm)
}

.step__text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg)
}

.feature {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    transition: background-color var(--transition-base)
}

.feature:hover {
    background: rgba(0, 82, 204, 0.02)
}

.feature__icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(0, 82, 204, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    font-size: 1rem
}

.feature__content {
    flex: 1
}

.feature__title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: var(--space-xs)
}

.feature__text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0
}

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

.faq__item {
    border-bottom: 1px solid var(--border-light)
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-lg) 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    transition: color var(--transition-base)
}

.faq__question:hover {
    color: var(--primary)
}

.faq__question-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 82, 204, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition-base), background-color var(--transition-base);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700
}

.faq__item--open .faq__question-icon {
    transform: rotate(45deg);
    background: var(--primary);
    color: #ffffff
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-slow)
}

.faq__item--open .faq__answer {
    max-height: 500px;
    padding-bottom: var(--space-lg)
}

.faq__answer p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8
}

.cta {
    text-align: center;
    padding: var(--space-3xl);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    pointer-events: none
}

.cta__title {
    color: #ffffff;
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1
}

.cta__text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto var(--space-xl);
    position: relative;
    z-index: 1
}

.cta .btn--white {
    background: #ffffff;
    color: var(--primary);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1
}

.cta .btn--white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    color: var(--primary)
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: var(--space-xs) var(--space-sm);
    background: rgba(0, 82, 204, 0.06);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em
}

.tag--secondary {
    background: rgba(0, 163, 255, 0.08);
    color: var(--secondary-dark)
}

.tag--success {
    background: rgba(16, 185, 129, 0.08);
    color: #059669
}

.tag--warning {
    background: rgba(245, 158, 11, 0.08);
    color: #d97706
}

.tooltip {
    position: relative;
    cursor: help;
    border-bottom: 1px dashed var(--text-light)
}

.tooltip__content {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) scale(0.95);
    background: var(--text);
    color: #ffffff;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.5;
    white-space: nowrap;
    max-width: 260px;
    white-space: normal;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
    z-index: 100
}

.tooltip__content::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--text)
}

.tooltip:hover .tooltip__content {
    opacity: 1;
    transform: translateX(-50%) scale(1)
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg)
}

.input-group__label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text)
}

.input-group__hint {
    font-size: 0.75rem;
    color: var(--text-light)
}

.input {
    width: 100%;
    padding: 0.75rem var(--space-md);
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text);
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
    outline: none
}

.input:hover {
    border-color: rgba(0, 82, 204, 0.3)
}

.input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1)
}

.input::placeholder {
    color: var(--text-light)
}

.select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235a5a6e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer
}

.checkbox__input {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 4px;
    appearance: none;
    cursor: pointer;
    transition: all var(--transition-base);
    flex-shrink: 0;
    margin-top: 2px
}

.checkbox__input:checked {
    background: var(--primary);
    border-color: var(--primary);
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='10' viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5L4.5 8.5L11 1.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center
}

.checkbox__label {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5
}

.alert {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    line-height: 1.6
}

.alert--info {
    background: rgba(0, 82, 204, 0.05);
    border: 1px solid rgba(0, 82, 204, 0.12);
    color: var(--primary)
}

.alert--success {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.15);
    color: #059669
}

.alert--warning {
    background: rgba(245, 158, 11, 0.05);
    border: 1px solid rgba(245, 158, 11, 0.15);
    color: #d97706
}

.alert__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px
}

.partners {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
    padding: var(--space-xl) 0
}

.partners__item {
    opacity: 0.4;
    transition: opacity var(--transition-base);
    filter: grayscale(1)
}

.partners__item:hover {
    opacity: 0.7;
    filter: grayscale(0)
}

.testimonial {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    position: relative
}

.testimonial__quote {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    font-style: italic
}

.testimonial__quote::before {
    content: '"';
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 82, 204, 0.1);
    line-height: 0;
    display: block;
    margin-bottom: var(--space-sm)
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: var(--space-md)
}

.testimonial__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.1), rgba(0, 163, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem
}

.testimonial__name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text)
}

.testimonial__role {
    font-size: 0.8rem;
    color: var(--text-light)
}

/* ===================== */
/* FOOTER                */
/* ===================== */
.footer {
    background: var(--bg-alt);
    border-top: 1px solid var(--border-light);
    padding: var(--space-3xl) 0 var(--space-xl);
    margin-top: var(--space-4xl);
    position: relative;
    z-index: 1
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl)
}

.footer__brand {
    max-width: 280px
}

.footer__brand-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    margin-bottom: var(--space-md)
}

.footer__brand-logo .header__logo-icon {
    width: 32px;
    height: 32px;
    font-size: 0.75rem
}

.footer__brand-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: var(--space-sm)
}

.footer__brand-name a {
    color: var(--text);
    text-decoration: none;
    font-weight: 700
}

.footer__brand-name a:hover {
    color: var(--primary)
}

.footer__brand-text {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.7
}

.footer__column-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text);
    margin-bottom: var(--space-md)
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm)
}

.footer__link {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color var(--transition-base), padding-left var(--transition-base)
}

.footer__link:hover {
    color: var(--primary);
    padding-left: 4px
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border-light);
    flex-wrap: wrap;
    gap: var(--space-md)
}

.footer__copyright {
    font-size: 0.8rem;
    color: var(--text-light)
}

.footer__legal {
    display: flex;
    align-items: center;
    gap: var(--space-lg)
}

.footer__legal a {
    font-size: 0.8rem;
    color: var(--text-light)
}

.footer__legal a:hover {
    color: var(--primary)
}

.footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm) var(--space-lg);
    margin-bottom: var(--space-lg)
}

.footer__nav-link {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color var(--transition-base)
}

.footer__nav-link:hover {
    color: var(--primary)
}

.footer__nav-link--active {
    color: var(--primary);
    font-weight: 600
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) 0;
    font-size: 0.85rem
}

.breadcrumb__item {
    color: var(--text-light)
}

.breadcrumb__item a {
    color: var(--text-muted);
    transition: color var(--transition-base)
}

.breadcrumb__item a:hover {
    color: var(--primary)
}

.breadcrumb__separator {
    color: var(--border);
    font-size: 0.75rem
}

.breadcrumb__item--active {
    color: var(--text);
    font-weight: 500
}

.divider {
    width: 100%;
    height: 1px;
    background: var(--border-light);
    margin: var(--space-xl) 0
}

.divider--thick {
    height: 2px
}

.divider--gradient {
    background: linear-gradient(90deg, transparent, var(--border), transparent)
}

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

.text-secondary {
    color: var(--secondary)
}

.text-muted {
    color: var(--text-muted)
}

.text-light {
    color: var(--text-light)
}

.text-center {
    text-align: center
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.mb-0 {
    margin-bottom: 0
}

.mb-sm {
    margin-bottom: var(--space-sm)
}

.mb-md {
    margin-bottom: var(--space-md)
}

.mb-lg {
    margin-bottom: var(--space-lg)
}

.mb-xl {
    margin-bottom: var(--space-xl)
}

.mb-2xl {
    margin-bottom: var(--space-2xl)
}

.mb-3xl {
    margin-bottom: var(--space-3xl)
}

.mt-0 {
    margin-top: 0
}

.mt-md {
    margin-top: var(--space-md)
}

.mt-lg {
    margin-top: var(--space-lg)
}

.mt-xl {
    margin-top: var(--space-xl)
}

.flex {
    display: flex
}

.flex-col {
    flex-direction: column
}

.flex-wrap {
    flex-wrap: wrap
}

.items-center {
    align-items: center
}

.justify-center {
    justify-content: center
}

.justify-between {
    justify-content: space-between
}

.gap-sm {
    gap: var(--space-sm)
}

.gap-md {
    gap: var(--space-md)
}

.gap-lg {
    gap: var(--space-lg)
}

.gap-xl {
    gap: var(--space-xl)
}

.hidden {
    display: none
}

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

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 82, 204, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.7s linear infinite
}

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

.loading--lg {
    width: 40px;
    height: 40px;
    border-width: 3px
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(12px)
    }

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

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

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

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(20px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

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

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

.animate-fade-in {
    animation: fade-in 0.5s ease forwards
}

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

.animate-slide-in {
    animation: slide-in-right 0.5s ease forwards
}

.animate-scale-in {
    animation: scale-in 0.4s ease forwards
}

.animate-delay-1 {
    animation-delay: 0.1s
}

.animate-delay-2 {
    animation-delay: 0.2s
}

.animate-delay-3 {
    animation-delay: 0.3s
}

.animate-delay-4 {
    animation-delay: 0.4s
}

.affiliate-banner {
    background: var(--bg-glass-strong);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    flex-wrap: wrap;
    transition: border-color var(--transition-base), box-shadow var(--transition-base)
}

.affiliate-banner:hover {
    border-color: rgba(0, 82, 204, 0.2);
    box-shadow: var(--shadow-md)
}

.affiliate-banner__content {
    flex: 1;
    min-width: 200px
}

.affiliate-banner__title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px
}

.affiliate-banner__text {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0
}

.affiliate-banner__badge {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    background: var(--bg-alt);
    padding: 2px 8px;
    border-radius: var(--radius-full)
}

/* ===================== */
/* MOBILE OVERLAY        */
/* ===================== */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--transition-base)
}

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

/* ===================== */
/* RESPONSIVE            */
/* ===================== */
@media (max-width:1024px) {
    .bento__item--span-6 {
        grid-column: span 6
    }

    .bento__item--span-4 {
        grid-column: span 6
    }

    .bento__item--span-8 {
        grid-column: span 12
    }

    .bento__item--span-3 {
        grid-column: span 6
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl)
    }

    .nav__link {
        font-size: 0.82rem;
        padding: var(--space-sm) var(--space-sm)
    }
}

@media (max-width:768px) {
    html {
        font-size: 15px
    }

    .container {
        padding: 0 var(--space-md)
    }

    .section {
        padding: var(--space-3xl) 0
    }

    .hero {
        padding: var(--space-3xl) 0
    }

    .hero__stats {
        flex-direction: column;
        gap: var(--space-lg)
    }

    .bento {
        grid-template-columns: 1fr
    }

    .bento__item--span-6,
    .bento__item--span-4,
    .bento__item--span-8,
    .bento__item--span-3,
    .bento__item--span-12 {
        grid-column: span 1
    }

    /* Mobile Navigation */
    .nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-glass-strong);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        flex-direction: column;
        padding: var(--space-4xl) var(--space-xl) var(--space-xl);
        box-shadow: var(--shadow-xl);
        z-index: 1000;
        overflow-y: auto;
        align-items: stretch;
        justify-content: flex-start
    }

    .nav--open {
        display: flex
    }

    .nav__list {
        flex-direction: column;
        gap: var(--space-xs);
        width: 100%
    }

    .nav__link {
        width: 100%;
        text-align: center;
        padding: var(--space-md) var(--space-lg);
        font-size: 1rem;
        border-radius: var(--radius-md)
    }

    .nav__link:hover {
        background-color: rgba(0, 82, 204, 0.08)
    }

    .nav__link--active {
        background-color: rgba(0, 82, 204, 0.1)
    }

    .nav__toggle {
        display: flex;
        z-index: 1001
    }

    .nav__close-area {
        position: absolute;
        top: var(--space-md);
        right: var(--space-md);
        z-index: 1002
    }

    .wizard__card {
        padding: var(--space-xl) var(--space-lg)
    }

    .wizard__question {
        font-size: 1.15rem
    }

    .wizard__option {
        padding: var(--space-md)
    }

    .wizard__actions {
        flex-direction: column-reverse;
        gap: var(--space-md)
    }

    .wizard__actions .btn {
        width: 100%
    }

    .wizard__progress {
        gap: var(--space-xs)
    }

    .wizard__progress-step {
        width: 30px;
        height: 30px;
        font-size: 0.7rem
    }

    .wizard__progress-line {
        width: 24px
    }

    .result__cards {
        grid-template-columns: 1fr
    }

    .comparison__table-wrapper {
        margin: 0 calc(var(--space-md) * -1);
        border-radius: 0;
        border-left: none;
        border-right: none
    }

    .steps {
        grid-template-columns: 1fr
    }

    .features {
        grid-template-columns: 1fr
    }

    .cta {
        padding: var(--space-2xl) var(--space-lg);
        border-radius: var(--radius-lg)
    }

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

    .hero__actions .btn {
        width: 100%
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl)
    }

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

    .footer__legal {
        flex-wrap: wrap;
        justify-content: center
    }

    .footer__nav {
        justify-content: center
    }

    .affiliate-banner {
        flex-direction: column;
        text-align: center
    }

    .partners {
        gap: var(--space-xl)
    }
}

@media (max-width:480px) {
    html {
        font-size: 14px
    }

    .wizard__card {
        padding: var(--space-lg) var(--space-md);
        border-radius: var(--radius-lg)
    }

    .bento__item {
        padding: var(--space-lg)
    }

    .hero__badge {
        font-size: 0.7rem
    }

    .header__logo-text {
        font-size: 1rem
    }

    .nav__link {
        font-size: 0.95rem
    }
}

@media (prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important
    }
}

@media print {

    .header,
    .footer,
    .nav__toggle,
    .btn,
    .cta,
    .affiliate-banner,
    .site-header,
    .site-footer {
        display: none !important
    }

    body {
        background: #ffffff;
        color: #000000;
        font-size: 12pt
    }

    .container {
        max-width: 100%;
        padding: 0
    }

    .section {
        padding: 1rem 0
    }

    a {
        color: #000000;
        text-decoration: underline
    }

    a[href]::after {
        content: ' (' attr(href) ')';
        font-size: 0.8em;
        color: #555555
    }
}

/* ===================== */
/* UNIFIED SITE HEADER   */
/* ===================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-light);
    transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

.site-header--scrolled {
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--border);
}

.site-header__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

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

@media (min-width: 769px) {
    .site-header__inner {
        height: 72px;
    }
}

.site-header__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    flex-shrink: 0;
    transition: opacity var(--transition-base);
}

.site-header__logo:hover {
    opacity: 0.8;
}

.site-header__logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
    font-family: var(--font-sans);
}

.site-header__logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
    font-family: var(--font-sans);
    letter-spacing: -0.01em;
}

.site-header__logo-text span {
    color: var(--primary);
}

.site-header__logo-img {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    object-fit: contain;
    flex-shrink: 0;
}

.site-footer__logo-img {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    object-fit: contain;
    flex-shrink: 0;
}

/* Desktop Navigation */
.site-nav {
    display: none;
    align-items: center;
    gap: 2px;
}

@media (min-width: 1025px) {
    .site-nav {
        display: flex;
    }
}

.site-nav__link {
    display: inline-block;
    padding: 0.45rem 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--transition-base), background-color var(--transition-base);
}

.site-nav__link:hover {
    color: var(--primary);
    background-color: rgba(0, 82, 204, 0.05);
}

.site-nav__link--active {
    color: var(--primary);
    background-color: rgba(0, 82, 204, 0.08);
    font-weight: 600;
}

/* ── Dropdown Menu ────────────────────────────────────────────────────── */
.site-nav__dropdown {
    position: relative;
}

.site-nav__dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0.45rem 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--transition-base), background-color var(--transition-base);
    cursor: pointer;
}

.site-nav__dropdown-toggle:hover,
.site-nav__dropdown:hover .site-nav__dropdown-toggle,
.site-nav__dropdown-toggle--active {
    color: var(--primary);
    background-color: rgba(0, 82, 204, 0.05);
}

.site-nav__dropdown-toggle--active {
    background-color: rgba(0, 82, 204, 0.08);
    font-weight: 600;
}

.site-nav__chevron {
    width: 12px;
    height: 12px;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.site-nav__dropdown:hover .site-nav__chevron {
    transform: rotate(180deg);
}

.site-nav__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    min-width: 220px;
    background: #ffffff;
    border: 1px solid rgba(0, 82, 204, 0.1);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 82, 204, 0.06);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 1000;
}

.site-nav__dropdown:hover .site-nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Invisible bridge to prevent hover gap */
.site-nav__dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
}

.site-nav__dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.6rem 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-base), background-color var(--transition-base);
}

.site-nav__dropdown-item:hover {
    color: var(--primary);
    background-color: rgba(0, 82, 204, 0.06);
}

.site-nav__dropdown-item--active {
    color: var(--primary);
    background-color: rgba(0, 82, 204, 0.08);
    font-weight: 600;
}

.site-nav__dropdown-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 82, 204, 0.07);
    color: var(--primary);
    flex-shrink: 0;
    font-size: 16px;
}

.site-nav__dropdown-label {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.site-nav__dropdown-label small {
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--text-muted);
    opacity: 0.7;
}

/* Desktop CTA */
.site-header__cta {
    display: none;
}

@media (min-width: 1025px) {
    .site-header__cta {
        display: flex;
        align-items: center;
    }
}

.site-header__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.55rem 1.25rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #ffffff;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 82, 204, 0.25);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    white-space: nowrap;
    font-family: var(--font-sans);
}

.site-header__cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 82, 204, 0.35);
    color: #ffffff;
}

.site-header__cta-btn--full {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    border-radius: var(--radius-lg);
}

/* Hamburger */
.site-header__hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
    transition: background-color var(--transition-base);
    z-index: 1001;
}

@media (min-width: 1025px) {
    .site-header__hamburger {
        display: none;
    }
}

.site-header__hamburger:hover {
    background-color: rgba(0, 82, 204, 0.05);
}

.site-header__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

/* Mobile Overlay */
.site-nav-mobile__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1100;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.site-nav-mobile__overlay--visible {
    display: block;
    opacity: 1;
}

/* Mobile Panel */
.site-nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: var(--bg);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.1);
    transition: right var(--transition-slow);
    overflow-y: auto;
}

@media (min-width: 1025px) {
    .site-nav-mobile {
        display: none !important;
    }
}

.site-nav-mobile--open {
    right: 0;
}

.site-nav-mobile__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-xl);
    border-bottom: 1px solid var(--border-light);
}

.site-nav-mobile__close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    transition: background-color var(--transition-base), color var(--transition-base);
}

.site-nav-mobile__close:hover {
    background: rgba(0, 82, 204, 0.05);
    color: var(--primary);
}

.site-nav-mobile__links {
    display: flex;
    flex-direction: column;
    padding: var(--space-lg) var(--space-xl);
    gap: var(--space-xs);
    flex: 1;
}

.site-nav-mobile__link {
    display: block;
    padding: 0.85rem var(--space-md);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-base), background-color var(--transition-base);
}

.site-nav-mobile__link:hover {
    color: var(--primary);
    background: rgba(0, 82, 204, 0.05);
}

.site-nav-mobile__link--active {
    color: var(--primary);
    background: rgba(0, 82, 204, 0.08);
    font-weight: 600;
}

.site-nav-mobile__cta {
    padding: var(--space-lg) var(--space-xl);
    border-top: 1px solid var(--border-light);
}

/* ===================== */
/* UNIFIED SITE FOOTER   */
/* ===================== */
.site-footer {
    position: relative;
    background: var(--bg-alt);
    border-top: 1px solid var(--border-light);
    overflow: hidden;
    z-index: 1;
    margin-top: 0;
}

.site-footer__bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.site-footer__shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.site-footer__shape--1 {
    top: 0;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: rgba(0, 82, 204, 0.03);
    transform: translateY(-50%);
}

.site-footer__shape--2 {
    bottom: 0;
    right: 15%;
    width: 20rem;
    height: 20rem;
    background: rgba(0, 82, 204, 0.02);
    transform: translateY(50%);
}

.site-footer__container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    padding: var(--space-3xl) 0 var(--space-2xl);
}

@media (max-width: 1024px) {
    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
}

@media (max-width: 640px) {
    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

.site-footer__brand {
    max-width: 320px;
}

.site-footer__brand-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    margin-bottom: var(--space-md);
}

.site-footer__brand-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    font-family: var(--font-sans);
}

.site-footer__brand-text {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

.site-footer__col-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text);
    margin-bottom: var(--space-md);
    font-family: var(--font-sans);
}

.site-footer__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__link {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-base), padding-left var(--transition-base);
    display: inline-block;
}

.site-footer__link:hover {
    color: var(--primary);
    padding-left: 4px;
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--border-light);
    flex-wrap: wrap;
    gap: var(--space-md);
}

@media (max-width: 640px) {
    .site-footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

.site-footer__copyright {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

.site-footer__back-top {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-light);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-weight: 500;
    transition: color var(--transition-base);
}

.site-footer__back-top:hover {
    color: var(--primary);
}

.site-footer__back-top svg {
    transition: transform var(--transition-base);
}

.site-footer__back-top:hover svg {
    transform: translateY(-2px);
}

.site-footer__disclaimer {
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-light);
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
    padding: var(--space-md) 0 var(--space-lg);
    line-height: 1.6;
}