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

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    --bg: #0F172A;
    --block: #1E293B;
    --block2: #273449;
    --block3: #162032;
    --accent: #F97316;
    --accent-light: #FDBA74;
    --accent-glow: rgba(249,115,22,0.25);
    --text: #F8FAFC;
    --muted: #CBD5E1;
    --muted2: #94A3B8;
    --button: #EA580C;
    --line: #334155;
    --line2: rgba(255,255,255,0.06);
    --glass: rgba(30,41,59,0.7);
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 20px 50px rgba(0,0,0,0.4);
    --shadow-sm: 0 8px 24px rgba(0,0,0,0.25);
    --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul, ol { padding-left: 22px; }

/* ===== LAYOUT ===== */
.container { width: min(1180px, 94%); margin: 0 auto; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(32px, 5vw, 54px); line-height: 1.1; font-weight: 900; margin-bottom: 20px; letter-spacing: -0.5px; }
h2 { font-size: clamp(24px, 3.5vw, 36px); line-height: 1.2; font-weight: 800; margin-bottom: 20px; letter-spacing: -0.3px; }
h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
p { color: var(--muted); line-height: 1.8; }
p + p { margin-top: 12px; }
li { color: var(--muted); line-height: 1.8; margin-bottom: 4px; }
strong { color: var(--text); }

/* ===== HEADER ===== */
header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(15,23,42,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line2);
}
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; gap: 16px; }
.logo img { height: 50px; width: auto; max-width: 160px; object-fit: contain; }
nav ul { display: flex; gap: 4px; list-style: none; align-items: center; flex-wrap: wrap; }
nav a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 7px 13px;
    border-radius: 8px;
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}
nav a:hover, nav a.active { color: var(--accent-light); background: rgba(249,115,22,0.1); }
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    color: var(--text);
    transition: background var(--transition);
    flex-shrink: 0;
}
.mobile-toggle:hover { background: var(--block); }
.hamburger-icon { display: block; width: 24px; height: 2px; background: currentColor; position: relative; }
.hamburger-icon::before, .hamburger-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: currentColor;
    left: 0;
    transition: transform var(--transition);
}
.hamburger-icon::before { top: -7px; }
.hamburger-icon::after { top: 7px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--button) 0%, var(--accent) 100%);
    color: #fff;
    padding: 13px 24px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    margin: 4px 6px 4px 0;
    box-shadow: 0 8px 20px rgba(234,88,12,0.3);
    transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
    letter-spacing: 0.2px;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(234,88,12,0.4); }
.btn:active { transform: translateY(0); }
.btn.secondary {
    background: var(--block2);
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
    border: 1px solid var(--line);
}
.btn.secondary:hover { background: var(--block); box-shadow: 0 8px 20px rgba(0,0,0,0.3); }
.btn.outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent-light);
    box-shadow: none;
}
.btn.outline:hover { background: var(--accent-glow); }
.btn-lg { padding: 16px 32px; font-size: 16px; }

/* ===== HERO ===== */
.hero {
    padding: 80px 0 72px;
    background: radial-gradient(ellipse 70% 60% at top right, rgba(249,115,22,0.18), transparent),
                radial-gradient(ellipse 50% 40% at 10% 80%, rgba(253,186,116,0.08), transparent),
                var(--bg);
    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='%23F97316' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; }
.hero img {
    border-radius: 20px;
    border: 1px solid var(--line2);
    box-shadow: var(--shadow);
    transition: transform 0.4s ease;
}
.hero img:hover { transform: scale(1.02) rotate(0.5deg); }
.hero-text p { font-size: 17px; margin-bottom: 28px; max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 4px; }
.hero-img {
    display: flex;
    justify-content: center;
}
/* ===== BADGE ===== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(249,115,22,0.12);
    color: var(--accent-light);
    border: 1px solid rgba(253,186,116,0.3);
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.badge::before { content: '🔥'; }

/* ===== CARDS ===== */
.card {
    background: linear-gradient(145deg, var(--block) 0%, var(--block3) 100%);
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--line2);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(249,115,22,0.2); }
.card-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--line2);
    border-radius: var(--radius);
    padding: 28px;
}

/* ===== GRIDS ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

/* ===== TABLES ===== */
.rank-table {
    background: var(--block);
    border-radius: var(--radius);
    overflow-x: auto;
    border: 1px solid var(--line2);
    box-shadow: var(--shadow-sm);
    -webkit-overflow-scrolling: touch;
}
table { width: 100%; border-collapse: collapse; min-width: 680px; }
thead th {
    background: linear-gradient(135deg, rgba(234,88,12,0.9), rgba(249,115,22,0.8));
    color: #fff;
    text-align: left;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
td, th { padding: 14px 16px; border-bottom: 1px solid var(--line); vertical-align: middle; }
tbody tr { transition: background var(--transition); }
tbody tr:hover { background: rgba(249,115,22,0.04); }
tbody tr:last-child td { border-bottom: none; }
.rank-num {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--button), var(--accent));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    color: #fff;
}

/* ===== NOTICE / ALERT ===== */
.notice {
    background: rgba(15,23,42,0.8);
    border-left: 4px solid var(--accent);
    padding: 18px 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-top: 20px;
    color: var(--muted2);
    font-size: 14px;
    line-height: 1.7;
}
.notice strong { color: var(--accent-light); }
.info-box {
    background: rgba(249,115,22,0.08);
    border: 1px solid rgba(249,115,22,0.2);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin: 16px 0;
}

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header p { color: var(--muted); max-width: 600px; margin: 0 auto; font-size: 16px; }
.section-label {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

/* ===== FAQ ACCORDION ===== */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
    background: var(--block);
    border: 1px solid var(--line2);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(249,115,22,0.3); }
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    color: var(--text);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    transition: background var(--transition);
}
.faq-question:hover { background: rgba(249,115,22,0.04); }
.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(249,115,22,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--accent-light);
    transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); color: #fff; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
}
.faq-answer-inner { padding: 0 24px 20px; color: var(--muted); line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ===== REGISTRATION STEPS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card {
    position: relative;
    background: linear-gradient(145deg, var(--block), var(--block3));
    border: 1px solid var(--line2);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: transform var(--transition), border-color var(--transition);
}
.step-card:hover { transform: translateY(-6px); border-color: rgba(249,115,22,0.3); }
.step-num {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--button), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    color: #fff;
    box-shadow: 0 4px 12px rgba(234,88,12,0.4);
}
.step-svg { width: 80px; height: 80px; margin: 20px auto 16px; }
.step-card h3 { font-size: 16px; margin-bottom: 8px; }
.step-card p { font-size: 14px; }

/* ===== PAYMENT METHOD CARDS ===== */
.payment-card {
    background: var(--block);
    border: 1px solid var(--line2);
    border-radius: var(--radius);
    padding: 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform var(--transition), border-color var(--transition);
}
.payment-card:hover { transform: translateY(-3px); border-color: rgba(249,115,22,0.25); }
.payment-icon { font-size: 28px; flex-shrink: 0; }
.payment-info h3 { font-size: 16px; margin-bottom: 4px; }
.payment-info p { font-size: 14px; }
.payment-tag {
    display: inline-block;
    background: rgba(249,115,22,0.1);
    color: var(--accent-light);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 700;
    margin-top: 6px;
}

/* ===== STAT BOXES ===== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-box {
    background: var(--block);
    border: 1px solid var(--line2);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
}
.stat-num { font-size: 34px; font-weight: 900; color: var(--accent); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 13px; color: var(--muted2); font-weight: 600; }

/* ===== FORMS ===== */
form label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
    margin-bottom: 6px;
    margin-top: 16px;
}
form label:first-child { margin-top: 0; }
form input,
form textarea,
form select {
    width: 100%;
    padding: 13px 16px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--line);
    background: var(--block3);
    color: var(--text);
    font-family: inherit;
    font-size: 14px;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}
form input:focus,
form textarea:focus,
form select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(249,115,22,0.15);
}
form input::placeholder,
form textarea::placeholder { color: var(--muted2); }
form select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 44px; }
form textarea { resize: vertical; min-height: 140px; }
.form-success { display: none; background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.3); border-radius: var(--radius-sm); padding: 16px; color: #4ade80; margin-top: 12px; font-weight: 600; }

/* ===== FOOTER ===== */
footer {
    background: #020617;
    padding: 56px 0 32px;
    margin-top: 40px;
    border-top: 1px solid var(--line2);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand img { height: 38px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--muted2); max-width: 260px; }
.footer-col h4 { color: var(--text); font-weight: 700; margin-bottom: 14px; font-size: 14px; }
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { color: var(--muted2); text-decoration: none; font-size: 14px; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--accent-light); }
.footer-bottom { border-top: 1px solid var(--line2); padding-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; justify-content: center; }
.footer-bottom p { color: var(--muted2); font-size: 13px; }
.footer-notice { background: rgba(249,115,22,0.06); border: 1px solid rgba(249,115,22,0.15); border-radius: var(--radius-sm); padding: 16px 20px; margin-top: 24px; color: var(--muted2); font-size: 13px; line-height: 1.7; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(2,6,23,0.97);
    backdrop-filter: blur(12px);
    padding: 20px 0;
    display: none;
    z-index: 9999;
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 32px rgba(0,0,0,0.5);
}
.cookie-content {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}
.cookie-text strong { color: var(--accent-light); }
.cookie-text p { font-size: 14px; margin-top: 4px; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 10000;
    padding: 20px;
    overflow-y: auto;
}
.cookie-box {
    width: min(680px, 96%);
    margin: 60px auto;
    background: var(--block);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.cookie-box h2 { margin-bottom: 12px; }
.cookie-box p { margin-bottom: 20px; }
.cookie-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line2);
}
.cookie-option:last-of-type { border-bottom: none; margin-bottom: 16px; }
.cookie-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--accent);
    cursor: pointer;
}
.cookie-option-text strong { display: block; color: var(--text); font-size: 14px; margin-bottom: 2px; }
.cookie-option-text span { font-size: 13px; color: var(--muted2); }

/* ===== LEGAL PAGES ===== */
.legal-content { max-width: 820px; }
.legal-content h2 { font-size: 22px; margin: 36px 0 12px; padding-bottom: 8px; border-bottom: 1px solid var(--line2); }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { margin-bottom: 14px; }
.legal-content ul { margin-bottom: 14px; }
.legal-toc { background: var(--block); border: 1px solid var(--line2); border-radius: var(--radius-sm); padding: 20px 24px; margin-bottom: 36px; }
.legal-toc h3 { font-size: 15px; margin-bottom: 10px; }
.legal-toc ol { font-size: 14px; }
.legal-toc a { color: var(--accent-light); text-decoration: none; }
.legal-toc a:hover { text-decoration: underline; }
.cookie-table-wrap { overflow-x: auto; border-radius: var(--radius-sm); margin: 16px 0; }
.cookie-table { min-width: 500px; }
.cookie-table th { font-size: 12px; }
.cookie-table td { font-size: 13px; }

/* ===== MELBET PAGE ===== */
.melbet-hero-badge { background: rgba(249,115,22,0.12); color: var(--accent-light); border: 1px solid rgba(253,186,116,0.3); display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 999px; font-weight: 700; font-size: 12px; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 18px; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pros, .cons { border-radius: var(--radius); padding: 24px; }
.pros { background: rgba(34,197,94,0.07); border: 1px solid rgba(34,197,94,0.2); }
.cons { background: rgba(239,68,68,0.07); border: 1px solid rgba(239,68,68,0.2); }
.pros h3 { color: #4ade80; }
.cons h3 { color: #f87171; }
.pros li::marker { color: #4ade80; }
.cons li::marker { color: #f87171; }
.cta-box {
    background: linear-gradient(135deg, rgba(234,88,12,0.15), rgba(249,115,22,0.08));
    border: 1px solid rgba(249,115,22,0.3);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
}
.cta-box h2 { margin-bottom: 12px; }
.cta-box p { max-width: 560px; margin: 0 auto 24px; }

/* ===== HIGHLIGHT LIST ===== */
.check-list { list-style: none; padding: 0; }
.check-list li { padding: 8px 0 8px 28px; position: relative; color: var(--muted); border-bottom: 1px solid var(--line2); }
.check-list li:last-child { border-bottom: none; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ===== ABOUT PAGE ===== */
.team-card { text-align: center; }
.team-avatar { width: 64px; height: 64px; background: linear-gradient(135deg, var(--button), var(--accent)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 14px; }

/* ===== UTILITY ===== */
.text-accent { color: var(--accent-light); }
.text-center { text-align: center; }
.text-muted { color: var(--muted2); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.fw-bold { font-weight: 700; }
.divider { border: none; border-top: 1px solid var(--line2); margin: 40px 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
    .hero-grid,
    .grid-3,
    .grid-2,
    .steps-grid,
    .pros-cons { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hero { padding: 52px 0 44px; }
    .hero img { max-height: 280px; object-fit: cover; }
    .section { padding: 52px 0; }

    /* Mobile nav */
    nav {
        display: none;
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        background: rgba(2,6,23,0.97);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--line);
        padding: 16px 5%;
        z-index: 1000;
    }
    nav.active { display: block; }
    nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
    nav a { padding: 12px 16px; border-radius: 8px; display: block; }
    .mobile-toggle { display: flex; align-items: center; justify-content: center; }

    .cookie-content { flex-direction: column; align-items: flex-start; }
    .cookie-actions { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .cta-box { padding: 28px 20px; }
    table { font-size: 13px; }
    td, th { padding: 10px 12px; }
}

@media (max-width: 480px) {
    .grid-4 { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    h1 { font-size: 28px; }
    h2 { font-size: 22px; }
    .btn { padding: 11px 18px; font-size: 13px; }
    .btn-lg { padding: 13px 22px; font-size: 14px; }
    .card { padding: 20px; }
    .step-card { padding: 28px 16px 20px; }
    .logo img { height: 36px; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 8px 20px rgba(234,88,12,0.3); }
    50% { box-shadow: 0 8px 32px rgba(234,88,12,0.55); }
}
.hero-text > * { animation: fadeInUp 0.6s ease both; }
.hero-text > *:nth-child(1) { animation-delay: 0.1s; }
.hero-text > *:nth-child(2) { animation-delay: 0.2s; }
.hero-text > *:nth-child(3) { animation-delay: 0.3s; }
.btn:not(.secondary):not(.outline) { animation: pulse-glow 3s ease infinite; }
.btn:hover { animation: none; }

/* ===== SCROLL INDICATOR ===== */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--button);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(234,88,12,0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
    z-index: 9000;
    font-size: 18px;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-3px); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--muted2);
    padding: 12px 0;
    flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted2); text-decoration: none; transition: color var(--transition); }
.breadcrumb a:hover { color: var(--accent-light); }
.breadcrumb-sep { color: var(--line); }
