/* ========================
   DESIGN TOKENS
   ======================== */
@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg-color: #0A0A0A;
    --bg-secondary: #111111;
    --card-bg: #161616;
    --card-bg-hover: #1E1E1E;
    --text-color: #F5F5F5;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;
    --accent-color: #FFD700;
    --accent-glow: rgba(255, 215, 0, 0.25);
    --accent-light: #FFE44D;
    --accent-text: #111111;
    --danger-color: #EF4444;
    --danger-bg: rgba(239, 68, 68, 0.1);
    --warning-color: #F59E0B;
    --warning-bg: rgba(245, 158, 11, 0.1);
    --success-color: #10B981;
    --border-color: #222222;
    --border-accent: rgba(255, 107, 0, 0.3);
    --font-heading: 'Unbounded', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1200px;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-xl: 40px;
    --shadow-glow: 0 0 40px rgba(255, 107, 0, 0.15);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================
   RESET & BASE
   ======================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ========================
   UTILITIES
   ======================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
    line-height: 1.7;
}
.orange-text { color: var(--accent-color); }
.text-center { text-align: center; }
.spacer-40 { height: 40px; }
.spacer-64 { height: 64px; }

.fade-in-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================
   BUTTONS
   ======================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color);
    color: var(--accent-text);
    padding: 16px 36px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 107, 0, 0.4);
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text-color);
    padding: 15px 35px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}
.btn-secondary:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-3px);
}
.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #111111;
    padding: 15px 35px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid rgba(0,0,0,0.35);
    transition: var(--transition);
}
.btn-outline-white:hover {
    border-color: #111111;
    background: rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

/* ========================
   HEADER
   ======================== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 24px;
}
.logo {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: -0.02em;
    flex-shrink: 0;
}
.logo span { color: var(--accent-color); }
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-desktop a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-desktop a:hover { color: var(--text-color); }
.header-cta {
    background: var(--accent-color);
    color: var(--accent-text);
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    flex-shrink: 0;
}
.header-cta:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}
/* Кнопка «Получить расчёт» в шапке (class="cta-btn") */
.header-inner > .cta-btn,
.mobile-menu > .cta-btn {
    background: var(--accent-color);
    color: var(--accent-text) !important;
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}
.header-inner > .cta-btn:hover,
.mobile-menu > .cta-btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-color);
    border-radius: 2px;
    transition: var(--transition);
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 32px 24px;
    background: rgba(10,10,10,0.98);
    border-top: 1px solid var(--border-color);
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
}
.mobile-menu.active { display: flex; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 20px; width: 100%; }
.mobile-menu nav a {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
}
.mobile-menu nav a:hover { color: var(--text-color); }

/* ========================
   HERO
   ======================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,215,0,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 80% 80%, rgba(255,215,0,0.06) 0%, transparent 60%),
        var(--bg-color);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,215,0,0.12);
    border: 1px solid rgba(255,215,0,0.3);
    color: var(--accent-color);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}
.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.hero-accent {
    font-size: clamp(1.2rem, 2.8vw, 2rem);
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--accent-color);
    margin-bottom: 24px;
    line-height: 1.3;
}
.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 620px;
    margin-bottom: 40px;
}
.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
}
.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ========================
   LAW ALERT
   ======================== */
.law-alert {
    background: linear-gradient(135deg, rgba(255,215,0,0.08) 0%, rgba(255,215,0,0.03) 100%);
    border: 1px solid rgba(255,215,0,0.35);
    border-radius: var(--radius-md);
    padding: 24px 32px;
    margin: 0 0 48px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.law-alert-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.law-alert-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 8px;
}
.law-alert-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.law-alert-text strong { color: var(--text-color); }

/* ========================
   SOLUTIONS (БОЛИ)
   ======================== */
.solutions {
    padding: 100px 0;
    background: var(--bg-secondary);
}
.pains-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.pain-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: var(--transition);
}
.pain-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}
.pain-card.solution {
    border-color: rgba(255,215,0,0.25);
    background: linear-gradient(135deg, rgba(255,215,0,0.05) 0%, var(--card-bg) 100%);
}
.pain-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
}
.pain-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.4;
}
.pain-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pain-card ul li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
}
.pain-card ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--text-muted);
}
.pain-card.solution ul li::before { color: var(--accent-color); }

/* ========================
   LAW SECTION
   ======================== */
.law-section {
    padding: 100px 0;
    background: var(--bg-color);
}
.law-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.law-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}
.law-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}
.law-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    background: var(--card-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}
.law-item:hover {
    border-color: rgba(255,215,0,0.35);
    background: var(--card-bg-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.law-item-date {
    background: rgba(255,215,0,0.15);
    border: 1px solid rgba(255,215,0,0.35);
    color: var(--accent-color);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 2px;
}
.law-item-content h4 {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.law-item-content p {
    font-size: 0.88rem;
    color: var(--text-color);
    line-height: 1.5;
}
.law-penalties {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.penalty-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px;
    text-align: center;
    transition: var(--transition);
}
.penalty-card:hover { border-color: rgba(255,215,0,0.5); transform: translateY(-3px); }
.penalty-amount {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 8px;
}
.penalty-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}
.penalty-badge {
    display: inline-block;
    background: rgba(255,215,0,0.15);
    border: 1px solid rgba(255,215,0,0.4);
    color: var(--accent-color);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
}

/* ========================
   CALCULATOR
   ======================== */
.calculator-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}
.calculator-wrap {
    max-width: 860px;
    margin: 0 auto;
}
.calculator-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 48px;
    position: relative;
    overflow: hidden;
}
.calculator-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
}
.calc-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.calc-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
}
.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 28px;
}
.calc-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 10px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.calc-field input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    height: 4px;
    background: var(--border-color);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    margin-bottom: 10px;
}
.calc-field input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255,215,0,0.4);
    transition: box-shadow 0.2s;
}
.calc-field input[type="range"]::-webkit-slider-thumb:hover {
    box-shadow: 0 0 16px rgba(255,215,0,0.6);
}
.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.range-value {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 6px;
}
.calc-select {
    width: 100%;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239CA3AF' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}
.calc-select:focus { border-color: var(--accent-color); }

.calc-result {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px;
    margin-top: 8px;
}
.calc-result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 16px;
    flex-wrap: wrap;
}
.calc-result-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.calc-result-value {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}
.calc-result-unit {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    color: var(--text-secondary);
    padding-left: 4px;
}
.calc-result-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}
.calc-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
}
.calc-bar-label { color: var(--text-secondary); flex-shrink: 0; }
.calc-bar-track {
    flex: 1;
    height: 6px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}
.calc-bar-fill {
    height: 100%;
    background: var(--accent-color);
    border-radius: 4px;
    transition: width 0.6s cubic-bezier(0.4,0,0.2,1);
}
.calc-bar-val { font-weight: 600; min-width: 48px; text-align: right; }

.calc-warning {
    display: none;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    line-height: 1.5;
    margin-top: 16px;
}
.calc-warning.warning {
    background: var(--warning-bg);
    border: 1px solid rgba(245,158,11,0.3);
    color: var(--warning-color);
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.calc-warning.danger {
    background: var(--danger-bg);
    border: 1px solid rgba(255,215,0,0.35);
    color: var(--accent-color);
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.calc-cta {
    margin-top: 28px;
    text-align: center;
}
.calc-cta-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 12px;
}

/* ========================
   TYPES (виды вывесок)
   ======================== */
.types-section {
    padding: 100px 0;
    background: var(--bg-color);
}
.types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.type-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
}
.type-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}
.type-letter {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
}
.type-letter-front {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.8),
        0 0 25px rgba(255, 107, 0, 0.4),
        0px 2px 0px #444, 0px 4px 0px #222;
}
.type-letter-halo {
    color: #1a1a1a;
    text-shadow: 
        0 0 25px rgba(255, 107, 0, 0.9), 
        0 0 50px rgba(255, 150, 0, 0.6);
}
.type-letter-edge {
    color: #1a1a1a;
    text-shadow: 
        -2px -2px 8px rgba(0, 200, 255, 0.9),
        2px 2px 8px rgba(0, 200, 255, 0.9),
        -2px 2px 8px rgba(0, 200, 255, 0.9),
        2px -2px 8px rgba(0, 200, 255, 0.9);
}
.type-letter-combo {
    color: #ffffff;
    text-shadow: 
        0 0 12px rgba(255, 255, 255, 0.8),
        0 0 30px rgba(255, 0, 200, 0.8),
        0 0 60px rgba(150, 0, 255, 0.6);
}
.type-card h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}
.type-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 24px;
    flex-grow: 1;
}
.type-price {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: auto;
}

/* ========================
   PROCESS
   ======================== */
.process {
    padding: 100px 0;
    background: var(--bg-secondary);
}
.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
}
.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    align-items: flex-start;
    position: relative;
}
.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 38px;
    top: 56px;
    bottom: -24px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-color) 0%, var(--border-color) 100%);
}
.timeline-number {
    width: 56px;
    height: 56px;
    background: var(--card-bg);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(255,215,0,0.2);
    margin: 0 auto;
}
.timeline-content {
    padding: 4px 0 48px;
}
.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-color);
}
.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.timeline-content .timeline-tag {
    display: inline-block;
    background: rgba(255,215,0,0.1);
    color: var(--accent-color);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 100px;
    margin-top: 10px;
}

/* ========================
   GALLERY
   ======================== */
.gallery {
    padding: 100px 0;
    background: var(--bg-color);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}
.gallery-grid img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: transform 0.3s, filter 0.3s, box-shadow 0.3s;
}
.gallery-grid img:hover {
    transform: scale(1.04);
    filter: brightness(1.15);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.gallery-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: var(--radius-sm);
    background: var(--card-bg);
    border: 1px dashed var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
}
.gallery-placeholder:hover { border-color: var(--accent-color); }
.gallery-placeholder-icon { font-size: 2rem; opacity: 0.4; }
.gallery-placeholder-label { font-size: 0.75rem; color: var(--text-muted); text-align: center; }

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}
.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
}
.lightbox-close {
    position: fixed;
    top: 20px;
    right: 24px;
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
    opacity: 0.7;
    transition: opacity 0.2s;
    z-index: 10000;
    line-height: 1;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
    opacity: 0.6;
    transition: opacity 0.2s;
    padding: 16px;
    z-index: 10000;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }

/* ========================
   PRICING
   ======================== */
.pricing {
    padding: 100px 0;
    background: var(--bg-secondary);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}
.pricing-card.popular {
    border: 2px solid var(--accent-color);
    background: rgba(255, 107, 53, 0.05);
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}
.pricing-card.popular:hover {
    box-shadow: 0 16px 40px rgba(255, 107, 53, 0.25);
}
.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--accent-text);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 100px;
    white-space: nowrap;
}
.pricing-type {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}
.pricing-price {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1;
    margin-bottom: 4px;
}
.pricing-price span { color: var(--accent-color); }
.pricing-per {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}
.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    flex-grow: 1;
}
.pricing-features li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.pricing-features li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 1.1rem;
}
.pricing-card a {
    display: inline-block;
    padding: 14px 24px;
    background: var(--accent-color);
    color: var(--accent-text);
    border-radius: 10px;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 600;
}
.pricing-card a:hover {
    background: #ff5722;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

/* ========================
   ABOUT
   ======================== */
.about {
    padding: 100px 0;
    background: var(--bg-color);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-photo {
    position: relative;
}
.about-photo-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-photo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
}
.about-photo-placeholder span { font-size: 4rem; }
.about-photo-placeholder p { font-size: 0.9rem; }
.about-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--accent-color);
    color: var(--accent-text);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 8px 32px rgba(255,215,0,0.3);
}
.about-badge-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}
.about-badge-label { font-size: 0.75rem; font-weight: 600; opacity: 0.9; }
.about-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}
.about-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.about-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}
.about-fact {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 20px;
}
.about-fact-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-color);
}
.about-fact-label {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* ========================
   CTA SECTION
   ======================== */
.cta-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}
.cta-card {
    background: #FFD700;
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.04'%3E%3Ccircle cx='40' cy='40' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #111111;
    margin-bottom: 16px;
    line-height: 1.2;
}
.cta-card p {
    color: rgba(0,0,0,0.7);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.btn-white {
    background: #111111;
    color: #FFD700;
    padding: 18px 44px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
}
.btn-white:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
    background: #222222;
}
.cta-note {
    color: rgba(0,0,0,0.55);
    font-size: 0.85rem;
    margin-top: 20px;
}

/* ========================
   FOOTER
   ======================== */
.footer {
    background: var(--bg-color);
    border-top: 1px solid var(--border-color);
    padding: 56px 0 28px;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand .logo { margin-bottom: 12px; font-size: 1.2rem; }
.footer-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 260px;
}
.footer-col h4 {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    margin-bottom: 16px;
}
.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col ul li a {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--text-color); }
.footer-col .footer-contact-item {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.footer-col .footer-contact-item a {
    color: var(--accent-color);
    transition: opacity 0.2s;
}
.footer-col .footer-contact-item a:hover { opacity: 0.8; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    gap: 16px;
    flex-wrap: wrap;
}
.footer-copy { font-size: 0.82rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 0.82rem; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--text-color); }

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
    .types-grid { grid-template-columns: repeat(2, 1fr); }
    .pains-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .law-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-desktop { display: none; }
    .burger { display: flex; }
    .header-cta { display: none; }
    .hero { padding: 120px 0 60px; }
    .hero-stats { gap: 24px; }
    .hero-cta-group { flex-direction: column; align-items: flex-start; }
    .calc-grid { grid-template-columns: 1fr; }
    .types-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-card { padding: 48px 28px; }
    .about-facts { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; }
    .about-badge { bottom: 12px; right: 12px; }
    .calculator-card { padding: 28px 20px; }
    .calc-result-value { font-size: 2.5rem; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section-title { font-size: 1.5rem; }
    .hero h1 { font-size: 1.8rem; }
    .types-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
}

/* ===================== ACCESSIBILITY: focus-visible ===================== */
/* Keyboard navigation focus ring — visible for keyboard, hidden for mouse */
:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 3px;
    border-radius: 3px;
}
:focus:not(:focus-visible) {
    outline: none;
}
/* Buttons and CTAs */
.cta-btn:focus-visible,
.btn:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 4px;
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.2);
}
/* Nav links */
.nav-desktop a:focus-visible,
.mobile-menu a:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 4px;
    border-radius: 4px;
}
/* Cards */
.blog-card:focus-visible,
.type-card:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}
/* Skip to content (screen readers) */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--accent-color);
    color: var(--accent-text);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    z-index: 9999;
    transition: top 0.2s;
}
.skip-to-content:focus-visible {
    top: 16px;
}
