/* ═══════════════════════════════════════════════════════════════
   SV LEGAL SERVICES — Design System & Component Library
   Premium Swiss-Banking Aesthetic / Anti-Scam Trust Pattern
   ═══════════════════════════════════════════════════════════════ */

/* ─── Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

/* ─── Design Tokens (CSS Custom Properties) ─── */
:root {
    /* Palette */
    --color-dark:       #0F172A;
    --color-primary-bg: #FAFAFA;
    --color-surface:    #FFFFFF;
    --color-footer:     #020617;
    --color-accent:     #9F1239;
    --color-accent-lt:  #BE123C;
    --color-success:    #059669;
    --color-focus:      #2563EB;
    --color-text-head:  #1E293B;
    --color-text-body:  #475569;
    --color-text-micro: #94A3B8;
    --color-border:     #CBD5E1;
    --color-border-lt:  #E2E8F0;
    --color-input-bg:   #F8FAFC;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --lh-heading:   1.15;
    --lh-body:      1.6;

    /* Shadows */
    --shadow-soft:   0 10px 25px -5px rgba(15, 23, 42, 0.05);
    --shadow-hover:  0 15px 35px -5px rgba(15, 23, 42, 0.1);
    --shadow-form:   0 25px 50px -12px rgba(15, 23, 42, 0.25);
    --shadow-focus:  0 0 0 3px rgba(37, 99, 235, 0.15);
    --shadow-error:  0 0 0 3px rgba(159, 18, 57, 0.15);

    /* Radii */
    --radius-card:   8px;
    --radius-button: 6px;
    --radius-input:  6px;
    --radius-pill:   99px;

    /* Easing */
    --ease-premium: cubic-bezier(0.4, 0, 0.2, 1);

    /* Section Spacing */
    --section-pad:     120px;
    --section-pad-mob: 60px;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--color-primary-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-body);
    background-color: var(--color-primary-bg);
    position: relative;
    overflow-x: hidden;
    line-height: var(--lh-body);
    font-size: 16px;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-head);
    line-height: var(--lh-heading);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

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

::selection {
    background: var(--color-accent);
    color: white;
}

/* ═══════════════════════════════════════════════════════════════
   BLOCK 1 — HEADER / STICKY NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
.glass-nav {
    background: transparent;
    transition: all 0.35s var(--ease-premium);
    height: 72px;
}

.glass-nav.scrolled {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--color-border-lt);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    z-index: 10;
}

.nav-logo-icon {
    width: 28px;
    height: 28px;
    transition: color 0.3s var(--ease-premium);
}

.nav-logo-text {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s var(--ease-premium);
    white-space: nowrap;
}

/* On dark hero — white logo/text */
.glass-nav:not(.scrolled) .nav-logo-icon,
.glass-nav:not(.scrolled) .nav-logo-text {
    color: #FFFFFF;
}

.glass-nav.scrolled .nav-logo-icon,
.glass-nav.scrolled .nav-logo-text {
    color: var(--color-dark);
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s var(--ease-premium);
}

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

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

.glass-nav:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.7);
}

.glass-nav:not(.scrolled) .nav-link:hover {
    color: #FFFFFF;
}

.glass-nav.scrolled .nav-link {
    color: var(--color-text-body);
}

.glass-nav.scrolled .nav-link:hover {
    color: var(--color-accent);
}

/* CTA Zone */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    transition: color 0.3s var(--ease-premium);
}

.glass-nav:not(.scrolled) .nav-phone {
    color: #FFFFFF;
}

.glass-nav.scrolled .nav-phone {
    color: var(--color-dark);
}

.nav-phone:hover {
    color: var(--color-accent) !important;
}

.nav-phone-mobile {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-premium);
}

.glass-nav:not(.scrolled) .nav-phone-mobile {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.glass-nav.scrolled .nav-phone-mobile {
    background: var(--color-dark);
    color: #FFFFFF;
}

/* Ghost Button */
.ghost-btn {
    background: transparent;
    border: 1.5px solid currentColor;
    border-radius: var(--radius-button);
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--ease-premium);
    white-space: nowrap;
}

.glass-nav:not(.scrolled) .ghost-btn {
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.3);
}

.glass-nav:not(.scrolled) .ghost-btn:hover {
    background: #FFFFFF;
    color: var(--color-dark);
    border-color: #FFFFFF;
}

.glass-nav.scrolled .ghost-btn {
    color: var(--color-dark);
    border-color: var(--color-dark);
}

.glass-nav.scrolled .ghost-btn:hover {
    background: var(--color-dark);
    color: #FFFFFF;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 100;
}

.hamburger span {
    width: 22px;
    height: 2px;
    transition: all 0.3s var(--ease-premium);
}

.glass-nav:not(.scrolled) .hamburger span {
    background: #FFFFFF;
}

.glass-nav.scrolled .hamburger span {
    background: var(--color-dark);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 90;
    padding: 100px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: right 0.4s var(--ease-premium);
    box-shadow: -10px 0 40px rgba(15, 23, 42, 0.1);
    overflow-y: auto;
}

.mobile-menu.open {
    right: 0;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.3);
    z-index: 80;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-premium);
}

.mobile-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-link {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    color: var(--color-text-head);
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border-lt);
    transition: color 0.3s var(--ease-premium);
}

.mobile-menu-link:hover {
    color: var(--color-accent);
}

.mobile-menu-cta {
    margin-top: 32px;
}

/* ═══════════════════════════════════════════════════════════════
   BLOCK 2 — HERO SECTION
   ═══════════════════════════════════════════════════════════════ */
.hero-section {
    background-color: var(--color-dark);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
}

.hero-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 50%, transparent 20%, var(--color-dark) 75%);
    z-index: 2;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        var(--color-dark) 0%,
        var(--color-dark) 45%,
        rgba(15, 23, 42, 0.7) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.hero-inner {
    width: 60%;
}

/* Trust Badge */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    font-size: 13px;
    font-family: var(--font-body);
    font-weight: 500;
    margin-bottom: 28px;
}

.trust-badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Hero H1 */
.hero-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.12;
    margin-bottom: 24px;
}

.hero-title .accent-underline {
    display: inline-block;
    border-bottom: 2px solid var(--color-accent-lt);
    padding-bottom: 3px;
}

/* Hero Subtitle */
.hero-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    color: #CBD5E1;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 540px;
}

/* CTA Button */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-lt) 100%);
    color: #FFFFFF;
    border-radius: var(--radius-button);
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    transition: all 0.3s var(--ease-premium);
    position: relative;
    overflow: hidden;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -4px rgba(159, 18, 57, 0.4);
}

.cta-btn-hero {
    height: 64px;
    padding: 0 40px;
    font-size: 18px;
}

/* Pulse "breathing" animation */
.pulse-button {
    animation: pulseShadow 4s infinite var(--ease-premium);
}

@keyframes pulseShadow {
    0%   { box-shadow: 0 0 0 0 rgba(190, 18, 60, 0.4); }
    70%  { box-shadow: 0 0 0 15px rgba(190, 18, 60, 0); }
    100% { box-shadow: 0 0 0 0 rgba(190, 18, 60, 0); }
}

/* Hero micro-text */
.hero-micro {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.hero-micro svg {
    width: 14px;
    height: 14px;
    color: var(--color-text-micro);
}

.hero-micro-text {
    font-size: 12px;
    color: var(--color-text-micro);
    font-family: var(--font-body);
}

.hero-micro-logos {
    display: flex;
    gap: 10px;
    margin-left: 16px;
    opacity: 0.35;
}

.hero-micro-logos svg {
    width: 26px;
    height: 26px;
    color: #FFFFFF;
}

/* ─── Stats Counter Bar ─── */
.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-item {
    text-align: left;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    color: #FFFFFF;
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stat-number .accent {
    color: var(--color-accent-lt);
}

.hero-stat-label {
    font-size: 13px;
    font-weight: 500;
    color: #64748B;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════
   BLOCK 3 — PAIN IDENTIFICATION CARDS
   ═══════════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════
   П1 — SECTION BACKGROUNDS: Gradient Rhythms
   ═══════════════════════════════════════════════════ */

/* Each section gets a distinct background to create visual rhythm */
.pain-section {
    background: #f5f7fb;
    padding: var(--section-pad) 0;
    position: relative;
    overflow: hidden;
}

/* Subtle grid pattern for pain section */
.pain-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15,23,42,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15,23,42,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
}

.pain-section > * { position: relative; z-index: 1; }

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    color: var(--color-text-head);
    text-align: center;
    margin-bottom: 64px;
}

.section-title .subtle {
    color: var(--color-text-body);
    font-weight: 400;
}

.pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.soft-card {
    background: var(--color-surface);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s var(--ease-premium);
    padding: 40px;
}

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

.card-icon-box {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-card);
    background: #FEE2E2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon-box svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    stroke-width: 1.5;
}

.soft-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--color-dark);
    margin-top: 24px;
    margin-bottom: 12px;
}

.soft-card p {
    font-size: 15px;
    color: var(--color-text-body);
    line-height: var(--lh-body);
}

.soft-card p b {
    color: var(--color-text-head);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════
   BLOCK 4 — TRUST ARGUMENTATION (SPLIT SCREEN)
   ═══════════════════════════════════════════════════════════════ */
.trust-section {
    background: linear-gradient(160deg, #fefcf8 0%, #f8f5f0 100%);
    padding: var(--section-pad) 0;
    border-top: 1px solid #e8e3da;
    border-bottom: 1px solid #e8e3da;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.trust-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 600;
    color: var(--color-text-head);
    margin-bottom: 40px;
    line-height: 1.2;
}

.trust-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.trust-list-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.trust-check {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--color-success);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.trust-check svg {
    width: 15px;
    height: 15px;
    color: #FFFFFF;
    stroke-width: 2.5;
}

.trust-item-title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-head);
    margin-bottom: 4px;
}

.trust-item-text {
    font-size: 15px;
    color: var(--color-text-body);
    line-height: var(--lh-body);
}

/* Document Mockup */
/* ═══════════════════════════════════════════════════════════════
   FIRM CREDENTIALS CARD — Corporate trust block (replaces tilted photo)
   ═══════════════════════════════════════════════════════════════ */
.firm-credentials {
    background: #FFFFFF;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08), 0 1px 4px rgba(15,23,42,0.04);
    overflow: hidden;
    max-width: 480px;
    margin-left: auto;
}

/* --- Header --- */
.fc-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 24px;
    background: var(--color-dark);
}

.fc-header-logo {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #FFFFFF;
}

.fc-header-name {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.2;
}

.fc-header-sub {
    font-size: 11.5px;
    color: rgba(255,255,255,0.45);
    margin-top: 2px;
    letter-spacing: 0.4px;
}

.fc-verified-badge {
    margin-left: auto;
    padding: 5px 12px;
    border-radius: 20px;
    background: rgba(5, 150, 105, 0.15);
    border: 1px solid rgba(5, 150, 105, 0.35);
    color: #34d399;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* --- Divider --- */
.fc-divider {
    height: 1px;
    background: #e2e8f0;
}

/* --- Rows --- */
.fc-rows {
    padding: 4px 0;
}

.fc-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 24px;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s;
}

.fc-row:last-child {
    border-bottom: none;
}

.fc-row:hover {
    background: #f8fafc;
}

.fc-row-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    flex-shrink: 0;
    margin-top: 1px;
}

.fc-row-content {
    flex: 1;
}

.fc-row-label {
    font-size: 11.5px;
    color: #94a3b8;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.fc-row-val {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.4;
}

.fc-row-val--accent {
    color: #059669;
}

/* --- Footer seal --- */
.fc-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    color: #94a3b8;
    font-size: 11px;
    letter-spacing: 0.3px;
}

.fc-footer svg {
    flex-shrink: 0;
    color: #94a3b8;
}

/* ═══════════════════════════════════════════════════════════════
   BLOCK 5 — TIMELINE / ROADMAP
   ═══════════════════════════════════════════════════════════════ */
.timeline-section {
    background: #f0f5fb;
    padding: 160px 0;
    position: relative;
    overflow: hidden;
}

/* Dot pattern for timeline section */
.timeline-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(15,23,42,0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}
.timeline-section > * { position: relative; z-index: 1; }

.timeline-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    color: var(--color-text-head);
    text-align: center;
    margin-bottom: 80px;
}

.timeline-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 0 24px;
}

/* Background track line */
.timeline-line {
    width: 2px;
    background: var(--color-border-lt);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    z-index: 1;
}

/* Animated fill line */
.timeline-line-filled {
    width: 2px;
    background: linear-gradient(to bottom, var(--color-accent), var(--color-accent-lt));
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    height: 0;
    z-index: 2;
    transition: height 0.1s linear;
}

.timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 120px;
    position: relative;
    z-index: 5;
}

/* Step */
.timeline-step {
    position: relative;
    display: flex;
    align-items: center;
}

/* Node (circle on the line) */
.timeline-node {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-surface);
    border: 2px solid var(--color-border-lt);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s var(--ease-premium);
}

.timeline-node svg {
    width: 16px;
    height: 16px;
    color: transparent;
    stroke-width: 2.5;
    transition: color 0.3s var(--ease-premium);
}

.timeline-node.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(159, 18, 57, 0.15);
}

.timeline-node.active svg {
    color: #FFFFFF;
}

/* Step content */
.step-content-left,
.step-content-right {
    width: calc(50% - 40px);
    position: relative;
}

.step-content-left {
    text-align: right;
    padding-right: 0;
    margin-right: auto;
}

.step-content-right {
    text-align: left;
    padding-left: 0;
    margin-left: auto;
}

.step-bg-number {
    position: absolute;
    font-size: 120px;
    font-weight: 700;
    font-family: var(--font-body);
    color: rgba(241, 245, 249, 0.8);
    line-height: 1;
    z-index: -1;
    pointer-events: none;
    top: 50%;
    transform: translateY(-50%);
}

.step-content-left .step-bg-number {
    right: 0;
}

.step-content-right .step-bg-number {
    left: 0;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.step-text {
    font-size: 15px;
    color: var(--color-text-body);
    line-height: var(--lh-body);
}

.step-timing {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 4px 10px;
    background: #F1F5F9;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    color: #64748B;
}

.step-timing svg {
    width: 12px;
    height: 12px;
}

/* Scroll reveal animation defaults */
.step-reveal {
    opacity: 0;
    transition: all 0.6s var(--ease-premium);
}

.step-reveal.from-left {
    transform: translateX(30px);
}

.step-reveal.from-right {
    transform: translateX(-30px);
}

.step-reveal.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* ═══════════════════════════════════════════════════════════════
   BLOCK 6 — SOCIAL PROOF / REVIEWS CAROUSEL
   ═══════════════════════════════════════════════════════════════ */
.reviews-section {
    background: var(--color-dark);
    padding: var(--section-pad) 0;
    overflow: hidden;
}

.reviews-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 600;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 64px;
}

/* Swiper customization */
.reviews-swiper {
    padding: 20px 0 40px;
    overflow: visible;
}

.review-card {
    background: #1E293B;
    border: 1px solid #334155;
    border-radius: var(--radius-card);
    padding: 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.4s var(--ease-premium);
}

.review-card-watermark {
    position: absolute;
    right: -16px;
    top: -16px;
    width: 120px;
    height: 120px;
    color: #334155;
    opacity: 0.25;
    stroke-width: 0.8;
    pointer-events: none;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    position: relative;
    z-index: 5;
}

.review-avatar-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%) contrast(0.9);
}

.review-avatar svg {
    width: 24px;
    height: 24px;
    color: #94A3B8;
}

.review-name {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: #FFFFFF;
}

.review-case {
    font-size: 12px;
    color: #64748B;
    margin-top: 2px;
}

.review-amount-badge {
    background: #064E3B;
    border: 1px solid #065F46;
    padding: 4px 12px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    font-weight: 600;
    color: #10B981;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.15);
}

.review-amount-badge svg {
    width: 13px;
    height: 13px;
}

.review-body {
    font-family: var(--font-body);
    font-size: 15px;
    font-style: italic;
    color: #CBD5E1;
    line-height: 1.65;
    flex-grow: 1;
    position: relative;
    z-index: 5;
}

/* Slider active/inactive styles */
.swiper-slide .review-card {
    transform: scale(0.92);
    opacity: 0.4;
}

.swiper-slide-active .review-card {
    transform: scale(1.05);
    opacity: 1;
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5);
}

.swiper-slide-prev .review-card,
.swiper-slide-next .review-card {
    transform: scale(0.95);
    opacity: 0.55;
}

/* ═══════════════════════════════════════════════════════════════
   BLOCK 7 — LEAD GENERATION FORM
   ═══════════════════════════════════════════════════════════════ */
.form-section {
    background: var(--color-primary-bg);
    padding: 160px 24px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--color-surface);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-form);
    border-top: 4px solid var(--color-accent-lt);
    padding: 48px;
    position: relative;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--color-text-head);
    text-align: center;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 14px;
    color: var(--color-text-body);
    text-align: center;
    margin-bottom: 36px;
    font-family: var(--font-body);
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Input Base */
.corporate-input {
    background: var(--color-input-bg);
    border: 1px solid var(--color-border);
    color: var(--color-text-head);
    border-radius: var(--radius-input);
    height: 56px;
    padding: 0 16px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    width: 100%;
    transition: all 0.3s var(--ease-premium);
    -webkit-appearance: none;
    appearance: none;
}

.corporate-input:focus {
    background: var(--color-surface);
    border-color: var(--color-focus);
    box-shadow: var(--shadow-focus);
    outline: none;
}

.corporate-input.error {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-error);
}

/* Floating Label */
.floating-container {
    position: relative;
    width: 100%;
}

.floating-input {
    padding-top: 22px !important;
    padding-bottom: 6px !important;
}

.floating-label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-micro);
    font-family: var(--font-body);
    font-size: 15px;
    pointer-events: none;
    transition: all 0.2s ease-out;
    transform-origin: 0 0;
}

.floating-input:focus + .floating-label,
.floating-input:not(:placeholder-shown) + .floating-label {
    top: 14px;
    transform: translateY(-50%) scale(0.75);
    color: var(--color-focus);
    font-weight: 500;
}

/* Currency prefix */
.input-currency-prefix {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-head);
    font-weight: 600;
    display: flex;
    align-items: center;
    pointer-events: none;
    z-index: 5;
}

.input-currency-prefix svg {
    width: 16px;
    height: 16px;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    height: 64px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 8px;
    gap: 10px;
}

/* Shimmer sweep effect */
.shimmer-btn {
    position: relative;
    overflow: hidden;
}

.shimmer-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%
    );
    animation: shimmerSweep 4s infinite;
}

@keyframes shimmerSweep {
    0%   { left: -100%; }
    20%  { left: 150%; }
    100% { left: 150%; }
}

/* Security footer under form */
.form-security {
    text-align: center;
    padding-top: 20px;
}

.form-security-text {
    font-size: 11px;
    color: var(--color-text-micro);
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
}

.form-security-text svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.form-trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    opacity: 0.25;
    filter: grayscale(100%);
}

.form-trust-logos span {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    color: var(--color-text-body);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Phone error message */
.phone-error {
    font-size: 12px;
    color: var(--color-accent);
    margin-top: 4px;
    display: none;
    font-family: var(--font-body);
}

.phone-error.visible {
    display: block;
}

/* Form success state */
.form-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.97);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border-radius: var(--radius-card);
    z-index: 50;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-premium);
}

.form-success-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.form-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-success);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s var(--ease-premium);
}

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

.form-success-icon svg {
    width: 32px;
    height: 32px;
    color: #FFFFFF;
    stroke-width: 2.5;
}

.form-success-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-text-head);
}

.form-success-text {
    font-size: 15px;
    color: var(--color-text-body);
    text-align: center;
    max-width: 360px;
}

/* ═══════════════════════════════════════════════════════════════
   BLOCK 8 — FOOTER
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
    background: var(--color-footer);
    color: #64748B;
    padding-top: 48px;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-disclaimer {
    font-size: 10px;
    color: #64748B;
    opacity: 0.6;
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 32px;
}

.footer-bottom {
    border-top: 1px solid #1E293B;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #64748B;
    transition: color 0.3s var(--ease-premium);
    font-size: 13px;
}

.footer-links a:hover {
    color: #CBD5E1;
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE STICKY CTA BUTTON
   ═══════════════════════════════════════════════════════════════ */
.mobile-sticky-btn {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-lt) 100%);
    color: #FFFFFF;
    text-align: center;
    padding: 16px 24px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-premium);
    letter-spacing: 0.3px;
}

.mobile-sticky-btn.visible {
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   ITL-TEL-INPUT OVERRIDES
   ═══════════════════════════════════════════════════════════════ */
.iti {
    width: 100%;
    display: block;
}

.iti__country-list {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border-lt);
    box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.12);
    color: var(--color-text-head);
    border-radius: var(--radius-input);
    max-height: 200px;
}

.iti__country-list .iti__country.iti__highlight {
    background-color: #F1F5F9;
}

.iti__selected-flag {
    border-radius: var(--radius-input) 0 0 var(--radius-input);
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS (AOS-like, built-in)
   ═══════════════════════════════════════════════════════════════ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s var(--ease-premium);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.7s var(--ease-premium);
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.7s var(--ease-premium);
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delays */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN (MOBILE-FIRST OVERRIDES)
   ═══════════════════════════════════════════════════════════════ */

/* Tablet & Below */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .nav-phone {
        display: none;
    }

    .nav-phone-mobile {
        display: flex;
    }

    .ghost-btn.desktop-only {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-inner {
        width: 80%;
    }

    .hero-title {
        font-size: 44px;
    }

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

    .document-frame {
        max-width: 400px;
        margin: 0 auto;
    }

    .timeline-title {
        font-size: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-pad: 60px;
        --section-pad-mob: 60px;
    }

    .hero-section {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero-inner {
        width: 100%;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .cta-btn-hero {
        width: 100%;
        height: 56px;
        font-size: 16px;
        padding: 0 24px;
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .hero-stat-number {
        font-size: 28px;
    }

    .hero-stat-label {
        font-size: 11px;
    }

    .hero-micro-logos {
        margin-left: 0;
        margin-top: 4px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .pain-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .soft-card {
        padding: 28px;
    }

    .trust-title {
        font-size: 28px;
    }

    .trust-grid {
        gap: 40px;
    }

    .glassmorphism-badge {
        left: 0;
        bottom: -16px;
    }

    /* Timeline: single column on mobile */
    .timeline-line,
    .timeline-line-filled {
        left: 16px;
    }

    .timeline-node {
        left: 16px;
    }

    .timeline-step {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 52px;
    }

    .step-content-left,
    .step-content-right {
        width: 100%;
        text-align: left;
        padding: 0;
    }

    .step-bg-number {
        display: none;
    }

    .timeline-steps {
        gap: 60px;
    }

    .timeline-section {
        padding: 80px 0;
    }

    .reviews-section {
        padding: 60px 0;
    }

    .reviews-title {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .form-section {
        padding: 60px 16px;
    }

    .form-container {
        padding: 32px 20px;
    }

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

    .submit-btn {
        font-size: 14px;
        height: 56px;
    }

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

    .mobile-sticky-btn {
        display: block;
    }

    .hero-bg-image {
        width: 100%;
        opacity: 0.08;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-stats {
        gap: 16px;
    }

    .hero-stat-number {
        font-size: 24px;
    }

    .trust-badge {
        font-size: 11px;
        padding: 5px 12px;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   PRINTING STYLES
   ═══════════════════════════════════════════════════════════════ */
@media print {
    .glass-nav,
    .mobile-sticky-btn,
    .mobile-overlay,
    .mobile-menu {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .hero-section {
        background: #fff !important;
        color: #000 !important;
        min-height: auto !important;
    }
}

/* ═══════════════════════════════════════════════════════════════
   CASE DETAIL MODAL
   ═══════════════════════════════════════════════════════════════ */
.case-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease-premium);
    padding: 0;
}

@media (min-width: 768px) {
    .case-modal-overlay {
        align-items: center;
        padding: 20px;
    }
}

.case-modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.case-modal {
    background: var(--color-surface);
    border-radius: 16px 16px 0 0;
    width: 100%;
    max-width: 860px;
    max-height: 92dvh;
    overflow-y: auto;
    position: relative;
    transform: translateY(60px);
    transition: transform 0.4s var(--ease-premium);
    scrollbar-width: thin;
    scrollbar-color: var(--color-border) transparent;
}

@media (min-width: 768px) {
    .case-modal {
        border-radius: 12px;
        transform: translateY(30px) scale(0.97);
        max-height: 88dvh;
    }
}

.case-modal-overlay.open .case-modal {
    transform: translateY(0) scale(1);
}

.case-modal-close {
    position: sticky;
    top: 16px;
    float: right;
    margin: 16px 16px 0 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-head);
    transition: background 0.2s, border-color 0.2s;
    z-index: 10;
    box-shadow: var(--shadow-soft);
}

.case-modal-close:hover {
    background: var(--color-primary-bg);
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.case-modal-close svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

.case-modal-body {
    padding: 0 32px 40px;
    clear: both;
}

@media (max-width: 767px) {
    .case-modal-body {
        padding: 0 20px 32px;
    }
}

/* ─── Modal Header ─── */
.cm-header {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border-lt);
    margin-bottom: 28px;
}

.cm-case-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #FEF2F2;
    color: var(--color-accent);
    border: 1px solid #FECACA;
    border-radius: var(--radius-pill);
    padding: 4px 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.cm-title {
    font-family: var(--font-heading);
    font-size: clamp(22px, 3vw, 30px);
    color: var(--color-text-head);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

.cm-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.cm-meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--color-primary-bg);
    border: 1px solid var(--color-border-lt);
    border-radius: var(--radius-pill);
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-body);
}

.cm-meta-tag svg {
    width: 13px;
    height: 13px;
    stroke: var(--color-accent);
}

.cm-amount-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #064E3B;
    color: #34D399;
    border-radius: var(--radius-pill);
    padding: 5px 14px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
}

/* ─── Modal Sections ─── */
.cm-section {
    margin-bottom: 28px;
}

.cm-section-title {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-micro);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cm-section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--color-border-lt);
}

.cm-story {
    font-size: 15px;
    line-height: 1.75;
    color: var(--color-text-body);
}

/* ─── Timeline inside modal ─── */
.cm-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cm-tl-item {
    display: flex;
    gap: 16px;
    position: relative;
    padding-bottom: 24px;
}

.cm-tl-item:last-child {
    padding-bottom: 0;
}

.cm-tl-dot-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 32px;
}

.cm-tl-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.cm-tl-dot.resolved {
    background: var(--color-success);
}

.cm-tl-line {
    flex: 1;
    width: 2px;
    background: var(--color-border-lt);
    margin-top: 4px;
}

.cm-tl-item:last-child .cm-tl-line {
    display: none;
}

.cm-tl-content {
    padding-top: 4px;
    flex: 1;
}

.cm-tl-date {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.cm-tl-text {
    font-size: 14px;
    color: var(--color-text-body);
    line-height: 1.5;
}

.cm-tl-text b {
    color: var(--color-text-head);
}

/* ─── Stats row inside modal ─── */
.cm-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

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

.cm-stat-box {
    background: var(--color-primary-bg);
    border: 1px solid var(--color-border-lt);
    border-radius: var(--radius-card);
    padding: 16px;
    text-align: center;
}

.cm-stat-val {
    font-size: 22px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-text-head);
    line-height: 1;
    margin-bottom: 4px;
}

.cm-stat-val.green {
    color: var(--color-success);
}

.cm-stat-label {
    font-size: 11px;
    color: var(--color-text-micro);
    font-weight: 500;
}

/* ─── Document gallery inside modal ─── */
.cm-docs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.cm-doc-frame {
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 1px solid var(--color-border-lt);
    box-shadow: var(--shadow-soft);
    cursor: zoom-in;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cm-doc-frame:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.cm-doc-frame img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top;
    display: block;
}

.cm-doc-label {
    padding: 10px 12px;
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text-micro);
    letter-spacing: 0.05em;
    background: var(--color-primary-bg);
    border-top: 1px solid var(--color-border-lt);
}

/* ─── Verdict box ─── */
.cm-verdict {
    background: linear-gradient(135deg, #064E3B 0%, #065F46 100%);
    border-radius: var(--radius-card);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 28px;
}

.cm-verdict-icon {
    width: 40px;
    height: 40px;
    background: rgba(52, 211, 153, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #34D399;
}

.cm-verdict-icon svg {
    width: 20px;
    height: 20px;
}

.cm-verdict-content {
    flex: 1;
}

.cm-verdict-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #34D399;
    margin-bottom: 4px;
}

.cm-verdict-text {
    font-size: 15px;
    color: #A7F3D0;
    line-height: 1.55;
}

.cm-verdict-text b {
    color: #ECFDF5;
}

/* ─── Modal CTA ─── */
.cm-cta-row {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.cm-cta-note {
    font-size: 12px;
    color: var(--color-text-micro);
    display: flex;
    align-items: center;
    gap: 5px;
}

.cm-cta-note svg {
    width: 13px;
    height: 13px;
    stroke: var(--color-success);
}

/* ─── Review click hint ─── */
.review-click-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(159, 18, 57, 0.12);
    opacity: 0.7;
    transition: opacity 0.2s;
}

.review-card:hover .review-click-hint {
    opacity: 1;
}

.review-click-hint svg {
    stroke: var(--color-accent);
    flex-shrink: 0;
}

/* ─── Reviews subtitle ─── */
.reviews-subtitle {
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    margin-top: -16px;
    margin-bottom: 40px;
    letter-spacing: 0.03em;
}

/* ═══════════════════════════════════════════════════════════════
   BANK CONFLICT SECTION
   ═══════════════════════════════════════════════════════════════ */
.bank-conflict-section {
    padding: var(--section-pad) 0;
    background: var(--color-surface);
    position: relative;
    overflow: hidden;
}

.bank-conflict-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent) 0%, #DC2626 40%, #9F1239 100%);
}

.bc-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.bc-header-icon {
    width: 56px;
    height: 56px;
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--color-accent);
}

.bc-header-icon svg {
    width: 26px;
    height: 26px;
}

.bc-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    color: var(--color-text-head);
    line-height: 1.15;
    margin-bottom: 16px;
}

.bc-accent {
    color: var(--color-accent);
    font-style: italic;
}

.bc-subtitle {
    font-size: 16px;
    color: var(--color-text-body);
    line-height: 1.7;
}

.bc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

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

.bc-card {
    background: var(--color-primary-bg);
    border: 1px solid var(--color-border-lt);
    border-radius: var(--radius-card);
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.28s var(--ease-premium), box-shadow 0.28s var(--ease-premium), border-color 0.28s;
    cursor: default;
}

.bc-card::before {
    content: attr(data-bc);
    position: absolute;
    top: -16px;
    right: 20px;
    font-size: 80px;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--color-accent);
    opacity: 0.05;
    line-height: 1;
    pointer-events: none;
}

.bc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: #FECACA;
}

.bc-card-icon {
    width: 44px;
    height: 44px;
    background: #FEF2F2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.bc-card-icon svg {
    width: 22px;
    height: 22px;
}

.bc-card-title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-head);
    margin-bottom: 10px;
    line-height: 1.3;
}

.bc-card-text {
    font-size: 14px;
    color: var(--color-text-body);
    line-height: 1.7;
    margin-bottom: 16px;
}

.bc-card-stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #FFF1F2;
    color: var(--color-accent);
    border: 1px solid #FECACA;
    border-radius: var(--radius-pill);
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

/* ─── Bottom CTA ─── */
.bc-bottom-cta {
    background: var(--color-text-head);
    border-radius: var(--radius-card);
    padding: 28px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.bc-bottom-text {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    flex: 1;
}

.bc-bottom-text svg {
    stroke: #F87171;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .bc-bottom-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px 20px;
    }

    .bc-bottom-cta .cta-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .bank-conflict-section {
        padding: var(--section-pad-mob) 0;
    }

    .bc-header {
        margin-bottom: 40px;
    }

    .bc-card {
        padding: 22px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   QUIZ SECTION — Free Case Audit
   ═══════════════════════════════════════════════════════════════ */
.quiz-section {
    padding: var(--section-pad) 0;
    background: linear-gradient(160deg, #0d1f3c 0%, #0a1128 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle radial glow in quiz section */
.quiz-section::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(159,18,57,0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.quiz-section > * { position: relative; z-index: 1; }

/* Quiz intro text needs to be white now */
.quiz-intro .quiz-intro-title {
    color: #FFFFFF;
}
.quiz-intro > p {
    color: rgba(255,255,255,0.7);
}

.quiz-intro {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 48px;
}

.quiz-intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FEF2F2;
    color: var(--color-accent);
    border: 1px solid #FECACA;
    border-radius: var(--radius-pill);
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.quiz-intro-badge svg {
    width: 14px;
    height: 14px;
}

.quiz-intro-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    color: var(--color-text-head);
    line-height: 1.15;
    margin-bottom: 14px;
}

.quiz-intro-accent {
    color: var(--color-accent);
    font-style: italic;
}

.quiz-intro-sub {
    font-size: 15px;
    color: var(--color-text-body);
    line-height: 1.6;
}

/* ─── Quiz Card Shell ─── */
.quiz-card {
    background: var(--color-surface);
    border-radius: 16px;
    box-shadow: 0 20px 60px -10px rgba(15, 23, 42, 0.12);
    max-width: 760px;
    margin: 0 auto;
    overflow: hidden;
}

/* ─── Progress Bar ─── */
.quiz-progress-wrap {
    padding: 20px 32px 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

@media (max-width: 640px) {
    .quiz-progress-wrap {
        padding: 16px 20px 0;
    }
}

.quiz-progress-bar {
    flex: 1;
    height: 6px;
    background: var(--color-border-lt);
    border-radius: var(--radius-pill);
    overflow: hidden;
}

.quiz-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent) 0%, #BE123C 100%);
    border-radius: var(--radius-pill);
    transition: width 0.4s var(--ease-premium);
}

.quiz-progress-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-micro);
    white-space: nowrap;
}

/* ─── Quiz Step ─── */
.quiz-step {
    display: none;
    padding: 28px 32px 32px;
    animation: quizStepIn 0.35s var(--ease-premium);
}

@keyframes quizStepIn {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: translateX(0); }
}

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

.quiz-step.quiz-step-back {
    animation: quizStepBack 0.35s var(--ease-premium);
}

@keyframes quizStepBack {
    from { opacity: 0; transform: translateX(-20px); }
    to   { opacity: 1; transform: translateX(0); }
}

@media (max-width: 640px) {
    .quiz-step {
        padding: 20px 20px 28px;
    }
}

.quiz-step-icon {
    width: 48px;
    height: 48px;
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    margin-bottom: 18px;
}

.quiz-step-icon svg {
    width: 24px;
    height: 24px;
}

.quiz-question {
    font-family: var(--font-heading);
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--color-text-head);
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.25;
}

.quiz-hint {
    font-size: 13px;
    color: var(--color-text-micro);
    margin-bottom: 24px;
    font-weight: 500;
}

/* ─── Options List ─── */
.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    max-height: 55vh;
    overflow-y: auto;
    padding-right: 4px;
}

.quiz-options::-webkit-scrollbar {
    width: 6px;
}
.quiz-options::-webkit-scrollbar-track {
    background: transparent;
}
.quiz-options::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.3);
    border-radius: 4px;
}

@media (min-width: 641px) {
    .quiz-options {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}

.quiz-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1.5px solid var(--color-border-lt);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s var(--ease-premium);
    background: var(--color-primary-bg);
    position: relative;
    user-select: none;
}

.quiz-option:hover {
    border-color: var(--color-accent);
    background: #FFF5F5;
    transform: translateX(3px);
}

.quiz-option.selected {
    border-color: var(--color-accent);
    background: #FEF2F2;
    box-shadow: 0 0 0 3px rgba(159, 18, 57, 0.08);
}

/* Multi-select: show checkmark */
.quiz-options.multi .quiz-option .qo-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 2px solid var(--color-border);
    flex-shrink: 0;
    margin-left: auto;
    color: transparent;
    transition: all 0.2s;
}

.quiz-options.multi .quiz-option.selected .qo-check {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: white;
}

.quiz-options.multi .quiz-option.selected .qo-check svg {
    stroke: white;
    width: 13px;
    height: 13px;
}

.qo-icon {
    width: 38px;
    height: 38px;
    background: var(--color-surface);
    border: 1px solid var(--color-border-lt);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-text-head);
    transition: background 0.2s, border-color 0.2s;
}

.qo-icon svg {
    width: 18px;
    height: 18px;
}

.quiz-option.selected .qo-icon {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: white;
}

/* Color variants */
.qo-green { background: #D1FAE5 !important; border-color: #6EE7B7 !important; color: #065F46 !important; }
.qo-yellow { background: #FEF3C7 !important; border-color: #FCD34D !important; color: #92400E !important; }
.qo-orange { background: #FFEDD5 !important; border-color: #FDBA74 !important; color: #9A3412 !important; }
.qo-red { background: #FEE2E2 !important; border-color: #FCA5A5 !important; color: #991B1B !important; }

.qo-text {
    flex: 1;
    min-width: 0;
}

.qo-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-head);
    margin-bottom: 2px;
}

.qo-sub {
    display: block;
    font-size: 12px;
    color: var(--color-text-micro);
    line-height: 1.4;
}

.qo-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    white-space: nowrap;
    background: var(--color-primary-bg);
    border: 1px solid var(--color-border-lt);
    color: var(--color-text-micro);
    flex-shrink: 0;
}

.qo-badge.best {
    background: #ECFDF5;
    border-color: #6EE7B7;
    color: #065F46;
}

.qo-badge.warning {
    background: #FFEDD5;
    border-color: #FDBA74;
    color: #9A3412;
}

@media (max-width: 640px) {
    /* Compress outer layout */
    .quiz-section { padding: 20px 0 !important; }
    .quiz-intro { margin-bottom: 12px !important; }
    .quiz-intro-badge, .quiz-intro-sub { display: none !important; }
    .quiz-intro-title { font-size: 22px !important; margin-bottom: 0; }
    
    /* Compress card internals */
    .quiz-progress-wrap { padding: 14px 16px 0 !important; }
    .quiz-step { padding: 12px 16px 16px !important; }
    .quiz-step-icon { display: none !important; }
    .quiz-question { font-size: 16px !important; margin-bottom: 4px !important; }
    .quiz-hint { margin-bottom: 12px !important; }
    
    /* Options wrapper & items */
    .quiz-options { max-height: 46vh !important; margin-bottom: 16px !important; }
    .quiz-option { padding: 8px 10px !important; gap: 8px !important; border-width: 1px !important; }
    .qo-icon { width: 26px !important; height: 26px !important; }
    .qo-icon svg { width: 14px !important; height: 14px !important; }
    .qo-label { font-size: 12px !important; margin-bottom: 1px !important; }
    .qo-sub { font-size: 10px !important; line-height: 1.2 !important; }
    
    /* Button tweaks */
    .quiz-nav { margin-top: 0 !important; }
    .quiz-btn { padding: 12px 10px !important; font-size: 14px !important; flex: 1; justify-content: center; }
    .quiz-btn-back { padding: 12px 14px !important; }
    
    /* ─── Result Screen: full mobile overhaul ─── */
    .quiz-result { padding: 16px 14px !important; }
    
    /* Score row: circle + verdict side-by-side, NOT stacked */
    .qr-score-wrap {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        text-align: left !important;
        gap: 14px !important;
        margin-bottom: 14px !important;
    }
    .qr-circle { width: 72px !important; height: 72px !important; flex-shrink: 0 !important; }
    .qr-circle svg { width: 72px !important; height: 72px !important; }
    .qr-pct { font-size: 17px !important; }
    .qr-pct-label { font-size: 8px !important; }
    .qr-verdict-badge { font-size: 9px !important; padding: 3px 10px !important; margin-bottom: 6px !important; }
    .qr-verdict-title { font-size: 15px !important; margin-bottom: 3px !important; }
    .qr-verdict-desc { font-size: 11px !important; line-height: 1.35 !important; }
    
    /* Details: keep 2-col grid to save vertical space */
    .qr-details { grid-template-columns: 1fr 1fr !important; gap: 6px !important; margin-bottom: 12px !important; }
    .qr-detail-card { padding: 8px 10px !important; }
    .qr-detail-label { font-size: 9px !important; margin-bottom: 2px !important; gap: 3px !important; }
    .qr-detail-label svg { width: 10px !important; height: 10px !important; }
    .qr-detail-value { font-size: 12px !important; }
    
    /* Recommendations */
    .qr-reco-box { padding: 12px !important; margin-bottom: 12px !important; }
    .qr-reco-title { font-size: 9px !important; margin-bottom: 8px !important; }
    .qr-reco-item { gap: 6px !important; margin-bottom: 6px !important; }
    .qr-reco-icon { font-size: 13px !important; }
    .qr-reco-text { font-size: 11px !important; line-height: 1.3 !important; }
    
    /* CTA block */
    .qr-cta { padding: 14px !important; gap: 10px !important; flex-direction: column !important; align-items: flex-start !important; }
    .qr-cta-text { font-size: 12px !important; }
    .qr-cta-text b { font-size: 14px !important; margin-bottom: 2px !important; }
    .qr-cta-btns { width: 100% !important; }
    .qr-cta-btns .cta-btn { flex: 1 !important; text-align: center !important; padding: 12px 16px !important; font-size: 13px !important; }
    .quiz-restart { padding: 10px 12px !important; font-size: 11px !important; }
}

/* ─── Buttons ─── */
.quiz-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.quiz-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-accent);
    color: white;
    border: none;
    border-radius: var(--radius-button);
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, opacity 0.2s;
    letter-spacing: 0.03em;
    flex-shrink: 0;
}

.quiz-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s;
}

.quiz-btn:hover:not(:disabled) {
    background: var(--color-accent-lt);
    transform: translateX(2px);
}

.quiz-btn:hover:not(:disabled) svg {
    transform: translateX(3px);
}

.quiz-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
}

.quiz-step-1 .quiz-btn {
    margin-top: 4px;
}

.quiz-btn-final {
    background: linear-gradient(135deg, var(--color-accent) 0%, #BE123C 100%);
    padding: 16px 32px;
    font-size: 16px;
}

.quiz-btn-back {
    background: transparent;
    border: 1.5px solid var(--color-border);
    color: var(--color-text-body);
    border-radius: var(--radius-button);
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.quiz-btn-back:hover {
    border-color: var(--color-text-head);
    color: var(--color-text-head);
}

/* ─── Result Screen ─── */
.quiz-result {
    padding: 36px 32px 40px !important;
}

@media (max-width: 640px) {
    .quiz-result {
        padding: 24px 20px 32px !important;
    }
}

.qr-score-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.qr-circle {
    position: relative;
    width: 110px;
    height: 110px;
    flex-shrink: 0;
}

.qr-circle svg {
    transform: rotate(-90deg);
}

.qr-circle-bg {
    fill: none;
    stroke: var(--color-border-lt);
    stroke-width: 8;
}

.qr-circle-fill {
    fill: none;
    stroke: var(--color-success);
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dashoffset 1.2s var(--ease-premium);
}

.qr-circle-fill.medium {
    stroke: #F59E0B;
}

.qr-circle-fill.low {
    stroke: var(--color-accent);
}

.qr-circle-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.qr-pct {
    font-size: 24px;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--color-text-head);
    line-height: 1;
}

.qr-pct-label {
    font-size: 9px;
    font-weight: 600;
    color: var(--color-text-micro);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.qr-verdict-wrap {
    flex: 1;
}

.qr-verdict-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: var(--radius-pill);
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.qr-verdict-badge.high { background: #D1FAE5; color: #065F46; border: 1px solid #6EE7B7; }
.qr-verdict-badge.medium { background: #FEF3C7; color: #92400E; border: 1px solid #FCD34D; }
.qr-verdict-badge.low { background: #FEE2E2; color: #991B1B; border: 1px solid #FCA5A5; }

.qr-verdict-title {
    font-family: var(--font-heading);
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--color-text-head);
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.qr-verdict-desc {
    font-size: 14px;
    color: var(--color-text-body);
    line-height: 1.65;
}

/* ─── Result Details ─── */
.qr-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}

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

.qr-detail-card {
    background: var(--color-primary-bg);
    border: 1px solid var(--color-border-lt);
    border-radius: var(--radius-card);
    padding: 16px;
}

.qr-detail-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-micro);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.qr-detail-label svg {
    width: 12px;
    height: 12px;
    stroke: var(--color-accent);
}

.qr-detail-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-head);
    line-height: 1.4;
}

/* ─── Recommendations Box ─── */
.qr-reco-box {
    background: var(--color-primary-bg);
    border: 1px solid var(--color-border-lt);
    border-radius: var(--radius-card);
    padding: 20px;
    margin-bottom: 24px;
}

.qr-reco-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-micro);
    margin-bottom: 14px;
}

.qr-reco-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 10px;
}

.qr-reco-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 1px;
    color: #E11D48;
}
.qr-reco-icon svg {
    width: 18px;
    height: 18px;
    stroke: #E11D48;
    display: block;
}

.qr-reco-text {
    font-size: 13px;
    color: var(--color-text-body);
    line-height: 1.5;
}

/* ─── Result CTA ─── */
.qr-cta {
    background: var(--color-text-head);
    border-radius: var(--radius-card);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.qr-cta-text {
    flex: 1;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    line-height: 1.5;
}

.qr-cta-text b {
    color: white;
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.qr-cta-btns {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.quiz-restart {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.6);
    border-radius: var(--radius-button);
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.quiz-restart:hover {
    border-color: rgba(255,255,255,0.5);
    color: white;
}

/* (mobile quiz overrides consolidated into single block above) */

/* ─── Quiz Inline Lead Form ─── */
.qlf-wrap {
    animation: qlfFadeIn 0.4s ease;
    padding: 4px 0;
}
@keyframes qlfFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.qlf-header {
    text-align: center;
    margin-bottom: 20px;
}

.qlf-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E11D48, #BE123C);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.qlf-icon svg {
    width: 22px;
    height: 22px;
    stroke: white;
    fill: none;
}

.qlf-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.qlf-subtitle {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
}

.qlf-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.qlf-field {
    position: relative;
}

.qlf-input {
    width: 100%;
    padding: 14px 16px;
    padding-left: 44px;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    color: #ffffff;
    font-size: 14px;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    -webkit-appearance: none;
}

.qlf-input::placeholder {
    color: rgba(255,255,255,0.35);
}

.qlf-input:focus {
    border-color: #E11D48;
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.15);
    background: rgba(255,255,255,0.08);
}

.qlf-input.error {
    border-color: #EF4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

/* ISO Badge for country picker (replaces emoji flags) */
.qlf-iso-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    padding: 1px 4px;
    min-width: 26px;
    line-height: 1.4;
    font-family: var(--font-body);
}
.qlf-iso-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 3px;
    padding: 1px 4px;
    min-width: 24px;
    line-height: 1.4;
    font-family: var(--font-body);
    flex-shrink: 0;
}

/* ─── Custom Phone Country Picker ─── */
.qlf-field-phone {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    overflow: visible;
    transition: border-color 0.2s, box-shadow 0.2s;
    position: relative;
}
.qlf-field-phone:focus-within {
    border-color: #E11D48;
    box-shadow: 0 0 0 3px rgba(225,29,72,0.15);
}
.qlf-field-phone.error-border {
    border-color: #EF4444;
    box-shadow: 0 0 0 3px rgba(239,68,68,0.15);
}
.qlf-flag-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 12px;
    height: 100%;
    min-height: 50px;
    background: none;
    border: none;
    border-right: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    cursor: pointer;
    white-space: nowrap;
    font-size: 14px;
    font-family: var(--font-body);
    transition: background 0.15s;
    border-radius: 0;
    flex-shrink: 0;
}
.qlf-flag-btn:hover { background: rgba(255,255,255,0.07); }
#qlf-flag-emoji { font-size: 18px; line-height: 1; }
#qlf-dial-code { font-size: 13px; opacity: 0.85; }
.qlf-phone-input {
    flex: 1;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 12px 12px 0 !important;
    padding-left: 14px !important;
    min-width: 0;
}
.qlf-phone-input:focus { box-shadow: none !important; border: none !important; }

/* Dropdown */
.qlf-country-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 280px;
    background: #0f1b2d;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);
    z-index: 9999;
    overflow: hidden;
}
.qlf-country-search-wrap {
    padding: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.qlf-country-search {
    width: 100%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    color: #fff;
    font-size: 13px;
    padding: 8px 12px;
    outline: none;
    font-family: var(--font-body);
    box-sizing: border-box;
}
.qlf-country-search::placeholder { color: rgba(255,255,255,0.35); }
.qlf-country-list {
    list-style: none;
    margin: 0;
    padding: 6px 0;
    max-height: 220px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.2) transparent;
}
.qlf-country-list::-webkit-scrollbar { width: 4px; }
.qlf-country-list::-webkit-scrollbar-track { background: transparent; }
.qlf-country-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 2px; }
.qlf-country-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    cursor: pointer;
    transition: background 0.12s;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
}
.qlf-country-item:hover, .qlf-country-item.active { background: rgba(255,255,255,0.09); }
.qlf-country-item.active .qlf-ci-name { color: #fff; font-weight: 600; }
.qlf-ci-flag { font-size: 17px; flex-shrink: 0; }
.qlf-ci-name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.qlf-ci-code { color: rgba(255,255,255,0.45); font-size: 12px; flex-shrink: 0; }

@media (max-width: 640px) {
    .qlf-country-dropdown { width: 100%; left: 0; right: 0; }
    .qlf-country-list { max-height: 180px; }
}


.qlf-field-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    stroke: rgba(255,255,255,0.4);
    fill: none;
    pointer-events: none;
}

.qlf-optional {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
}

.qlf-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 15px 24px;
    background: linear-gradient(135deg, #E11D48 0%, #BE123C 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.03em;
    margin-top: 4px;
}

.qlf-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.35);
}

.qlf-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.qlf-submit svg {
    width: 18px;
    height: 18px;
    animation: spin 1s linear infinite;
}

.qlf-privacy {
    text-align: center;
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.qlf-privacy svg {
    width: 12px;
    height: 12px;
    stroke: rgba(255,255,255,0.35);
    fill: none;
    flex-shrink: 0;
}

.qlf-back-link {
    text-align: center;
    margin-top: 6px;
}

.qlf-back-link button {
    background: none;
    border: none;
    color: rgba(255,255,255,0.4);
    font-size: 12px;
    cursor: pointer;
    text-decoration: underline;
    font-family: var(--font-body);
}

.qlf-back-link button:hover {
    color: rgba(255,255,255,0.7);
}

/* ─── Quiz Lead Form: Success State ─── */
.qlf-success {
    text-align: center;
    animation: qlfFadeIn 0.5s ease;
    padding: 16px 0;
}

.qlf-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #059669, #10B981);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    animation: qlfPulse 0.6s ease;
}

@keyframes qlfPulse {
    0%   { transform: scale(0.3); opacity: 0; }
    50%  { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.qlf-success-icon svg {
    width: 30px;
    height: 30px;
    stroke: white;
    stroke-width: 2.5;
    fill: none;
}

.qlf-success-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.qlf-success-text {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.qlf-success-text b {
    color: #ffffff;
}

.qlf-success-details {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 16px;
    text-align: left;
    margin-bottom: 16px;
}

.qlf-success-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.qlf-success-detail + .qlf-success-detail {
    border-top: 1px solid rgba(255,255,255,0.08);
}

.qlf-success-detail svg {
    width: 16px;
    height: 16px;
    stroke: #10B981;
    fill: none;
    flex-shrink: 0;
}

/* Mobile overrides for quiz lead form */
@media (max-width: 640px) {
    .qlf-wrap { padding: 0; }
    .qlf-header { margin-bottom: 16px; }
    .qlf-icon { width: 40px; height: 40px; }
    .qlf-icon svg { width: 18px; height: 18px; }
    .qlf-title { font-size: 17px; }
    .qlf-subtitle { font-size: 12px; }
    .qlf-input { padding: 12px 14px 12px 40px; font-size: 16px; }
    .qlf-field-icon { left: 12px; width: 16px; height: 16px; }
    .qlf-submit { padding: 14px 20px; font-size: 14px; }
    .qlf-success-icon { width: 52px; height: 52px; }
    .qlf-success-icon svg { width: 24px; height: 24px; }
    .qlf-success-title { font-size: 17px; }
    .qlf-success-text { font-size: 12px; }
}


/* ═══════════════════════════════════════════════════════════
   BLOCK 4.5 — TEAM / ABOUT SECTION
   ═══════════════════════════════════════════════════════════ */

.team-section {
    background: var(--color-bg);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border-lt), transparent);
}

/* ─── Headline ── */
.team-headline {
    font-family: var(--font-display);
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 700;
    color: var(--color-text-head);
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.team-headline-accent {
    color: var(--color-accent);
}

/* ─── Story ── */
.team-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 56px;
    border-left: 3px solid var(--color-accent);
    padding-left: 24px;
}

.team-story p {
    font-size: 15px;
    color: var(--color-text-body);
    line-height: 1.75;
    margin: 0;
}

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

/* ─── Stats ── */
.team-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--color-border-lt);
    border: 1px solid var(--color-border-lt);
    border-radius: var(--radius-card);
    overflow: hidden;
    margin-bottom: 64px;
}

.ts-item {
    background: var(--color-primary-bg);
    padding: 28px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    transition: background 0.2s;
}

.ts-item:hover {
    background: var(--color-card-bg);
}

.ts-num {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    letter-spacing: -0.03em;
}

.ts-unit {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-head);
    margin-top: 2px;
}

.ts-label {
    font-size: 11px;
    color: var(--color-text-micro);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

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

/* ─── Team Grid ── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 56px;
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.team-card {
    background: var(--color-primary-bg);
    border: 1px solid var(--color-border-lt);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.12);
    border-color: var(--color-accent);
}

.team-avatar {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--color-card-bg);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.5s ease;
}

.team-card:hover .team-avatar img {
    transform: scale(1.05);
}

/* Initials avatar */
.team-avatar-initials {
    background: var(--tc, #0F172A);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-avatar-initials span {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 800;
    color: rgba(255,255,255,0.85);
    letter-spacing: -0.02em;
}

.team-card-body {
    padding: 16px;
}

.team-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text-head);
    margin-bottom: 3px;
    line-height: 1.2;
}

.team-role {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 10px;
}

.team-bio {
    font-size: 12.5px;
    color: var(--color-text-body);
    line-height: 1.6;
    margin-bottom: 12px;
}

.team-creds {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.team-cred {
    font-size: 10.5px;
    color: var(--color-text-micro);
    background: var(--color-card-bg);
    border: 1px solid var(--color-border-lt);
    border-radius: 20px;
    padding: 3px 9px;
    white-space: nowrap;
}

/* ─── Founder Quote ── */
.team-quote {
    position: relative;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    border: 1px solid rgba(255,255,255,0.06);
    border-left: 4px solid var(--color-accent);
    border-radius: var(--radius-card);
    padding: 40px 48px;
    margin: 0 0 56px;
}

.team-quote-icon {
    width: 40px;
    height: 30px;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.team-quote p {
    font-family: var(--font-display);
    font-size: clamp(15px, 2vw, 19px);
    font-style: italic;
    color: rgba(255,255,255,0.9);
    line-height: 1.65;
    margin: 0 0 16px;
}

.team-quote cite {
    font-size: 12.5px;
    color: rgba(255,255,255,0.45);
    font-style: normal;
    letter-spacing: 0.05em;
}

@media (max-width: 600px) {
    .team-quote {
        padding: 28px 24px;
    }
}

/* ─── Trust Row ── */
.team-trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.team-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--color-primary-bg);
    border: 1px solid var(--color-border-lt);
    border-radius: var(--radius-card);
}

.team-trust-icon {
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.team-trust-text {
    font-size: 12.5px;
    color: var(--color-text-body);
    line-height: 1.5;
    font-weight: 500;
}

.team-trust-text small {
    font-size: 11px;
    color: var(--color-text-micro);
    font-weight: 400;
}

@media (max-width: 900px) {
    .team-trust-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .team-trust-row {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════════
   П2 — HERO SPLIT LAYOUT + ANIMATED FLOATING CARD
   ═══════════════════════════════════════════════════════════════ */

/* Hero 2-column split */
.hero-content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    min-height: calc(100dvh - 72px);
    padding: 100px 24px 80px;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

/* Override: when split layout active, inner stretches full width */
.hero-content-split .hero-inner {
    width: 100%;
}

/* RIGHT COLUMN — Visual Container */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
}

/* Glow behind the cards */
.hero-visual-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(159,18,57,0.18) 0%, rgba(10,17,40,0) 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Fade-left animation */
.fade-left {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s var(--ease-premium), transform 0.7s var(--ease-premium);
}
.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Main chargeback card */
.hero-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
}

.hero-card-main {
    width: 100%;
    max-width: 380px;
    padding: 24px;
    animation: float-card 6s ease-in-out infinite;
    box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06);
}

@keyframes float-card {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

/* Card Header */
.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.hero-card-bank {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-card-bank-logo {
    width: 40px;
    height: 24px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.hero-card-bank-name {
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    font-family: var(--font-body);
}

.hero-card-bank-sub {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    font-family: var(--font-body);
}

.hero-card-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-card-status--approved {
    background: rgba(5,150,105,0.2);
    border: 1px solid rgba(5,150,105,0.4);
    color: #6EE7B7;
}

/* Amount */
.hero-card-amount {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 6px;
}

.hero-card-label {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    font-family: var(--font-body);
    margin-bottom: 20px;
}

/* Meta grid */
.hero-card-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 16px;
}

.hero-card-meta-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-card-meta-key {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    font-family: var(--font-body);
}

.hero-card-meta-val {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    font-family: var(--font-body);
}

/* Footer */
.hero-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-card-ref {
    font-size: 11px;
    font-family: 'Courier New', monospace;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.02em;
}

.hero-card-date {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    font-family: var(--font-body);
}

/* Mini floating cards */
.hero-card-mini {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    min-width: 190px;
    animation: float-card 6s ease-in-out infinite;
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.hero-card-mini--top {
    top: -20px;
    right: -40px;
    animation-delay: -2s;
    animation-duration: 5s;
}

.hero-card-mini--bot {
    bottom: -20px;
    left: -40px;
    animation-delay: -4s;
    animation-duration: 7s;
}

.hero-mini-label {
    font-size: 10px;
    color: rgba(255,255,255,0.45);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-mini-val {
    font-size: 13px;
    font-weight: 700;
    color: #FFFFFF;
    font-family: var(--font-body);
}

/* Mobile: hide visual on small screens */
@media (max-width: 960px) {
    .hero-content-split {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 100px 24px 60px;
    }
    .hero-visual {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════════════
   П4 — TEAM SECTION BACKGROUND UPGRADE
   ═══════════════════════════════════════════════════════════════ */

/* Override plain white team section with blue-tinted gradient */
.team-section {
    background: linear-gradient(160deg, #f2f6fd 0%, #eaf0fa 100%) !important;
    border-top: 1px solid rgba(15,23,42,0.07);
    border-bottom: 1px solid rgba(15,23,42,0.07);
}

/* Team card photos — ensure all avatars render identically */
.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* ═══════════════════════════════════════════════════════════════
   П5 — BANK CONFLICT SECTION: LEFT ACCENT BAR
   ═══════════════════════════════════════════════════════════════ */

/* Add left red accent stripe to bank conflict section */
.bank-conflict-section {
    position: relative;
}

.bank-conflict-section::after {
    content: '';
    position: absolute;
    left: 0; top: 15%; bottom: 15%;
    width: 3px;
    background: linear-gradient(180deg, transparent, var(--color-accent), transparent);
    border-radius: 0 2px 2px 0;
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════
   П6 — QUIZ: COLOR FIXES FOR DARK BACKGROUND
   ═══════════════════════════════════════════════════════════════ */

/* Make quiz section heading readable on dark bg */
.quiz-intro-title {
    color: #FFFFFF !important;
}

.quiz-intro .section-subtitle,
.quiz-intro p {
    color: rgba(255,255,255,0.65) !important;
}

/* Quiz card on dark needs lighter border */
.quiz-card {
    background: rgba(255,255,255,0.04) !important;
    border-color: rgba(255,255,255,0.1) !important;
}

.quiz-question {
    color: #FFFFFF !important;
}

.quiz-hint {
    color: rgba(255,255,255,0.55) !important;
}

.quiz-option {
    background: rgba(255,255,255,0.04) !important;
    border-color: rgba(255,255,255,0.1) !important;
    color: rgba(255,255,255,0.85) !important;
}

.quiz-option:hover {
    background: rgba(255,255,255,0.08) !important;
    border-color: rgba(159,18,57,0.5) !important;
}

.quiz-option.selected {
    background: rgba(159,18,57,0.15) !important;
    border-color: #BE123C !important;
    color: #FFFFFF !important;
}

.qo-label {
    color: rgba(255,255,255,0.85) !important;
}

.qo-sub {
    color: rgba(255,255,255,0.45) !important;
}

.quiz-progress-label {
    color: rgba(255,255,255,0.45) !important;
}

.qo-icon {
    background: rgba(255,255,255,0.05) !important;
    border-color: rgba(255,255,255,0.1) !important;
    color: rgba(255,255,255,0.8) !important;
}

/* Result screen overrides for dark bg */
.qr-verdict-title,
.qr-pct {
    color: #FFFFFF !important;
}

.qr-verdict-desc,
.qr-pct-label {
    color: rgba(255,255,255,0.7) !important;
}

.qr-circle-bg {
    stroke: rgba(255,255,255,0.1) !important;
}

.qr-detail-card {
    background: rgba(255,255,255,0.04) !important;
    border-color: rgba(255,255,255,0.1) !important;
}

.qr-detail-label {
    color: rgba(255,255,255,0.5) !important;
}

.qr-detail-value {
    color: #FFFFFF !important;
}

.qr-reco-box {
    background: rgba(255,255,255,0.04) !important;
    border-color: rgba(255,255,255,0.1) !important;
}

.qr-reco-title {
    color: rgba(255,255,255,0.5) !important;
}

.qr-reco-text {
    color: rgba(255,255,255,0.85) !important;
}

.qr-cta {
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
}

.qr-cta-text {
    color: rgba(255,255,255,0.7) !important;
}

.qr-cta-text b {
    color: #FFFFFF !important;
}

/* ═══════════════════════════════════════════════════════════════
   HERO CASES CAROUSEL — 5-slide auto-rotating switcher
   ═══════════════════════════════════════════════════════════════ */

.hero-cases-slider {
    position: relative;
    width: 100%;
    max-width: 380px;
}

/* All cases hidden by default */
.hero-case {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
    transition: opacity 0.45s var(--ease-premium), transform 0.45s var(--ease-premium);
    pointer-events: none;
    position: absolute;
    top: 0; left: 0;
    width: 100%;
}

/* Only active case is visible */
.hero-case.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    position: relative;
}

/* Keep slider height stable — height of the tallest card */
.hero-cases-slider {
    min-height: 280px;
}

/* Dot indicators */
.hero-cases-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 16px;
}

.hero-case-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    flex-shrink: 0;
}

.hero-case-dot.active {
    background: var(--color-accent-lt);
    transform: scale(1.4);
}

.hero-case-dot:hover {
    background: rgba(255,255,255,0.5);
}

