/* ====================================================
   PlayAlberta-casinos.ca — Design System
   Brand: Navy #003087 / Gold #C8A634 / White
   ==================================================== */

:root {
    --navy: #003087;
    --navy-dark: #001a5c;
    --navy-mid: #0a2d6e;
    --gold: #C8A634;
    --gold-light: #e8c84a;
    --gold-dark: #9d7f1f;
    --white: #ffffff;
    --off-white: #f0f4fd;
    --text: #0d1b3e;
    --text-dim: #5a6d99;
    --surface: #0b1f55;
    --surface-2: #112366;
    --border: rgba(200, 166, 52, 0.25);
    --green: #00a651;
    --red: #d62b2b;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 8px 32px rgba(0, 48, 135, 0.3);
    --shadow-gold: 0 4px 20px rgba(200, 166, 52, 0.4);
    --transition: 0.25s ease;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: #f0f4fd;
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    font-family: inherit;
}

/* Skip link */
.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: -1;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    padding: 12px 24px;
    background: var(--gold);
    color: var(--navy-dark);
    font-weight: 700;
    border-radius: 8px;
    z-index: 9999;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.site-header {
    background: var(--navy-dark);
    border-bottom: 2px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 16px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-play {
    font-size: 18px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.5px;
}

.logo-alberta {
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Desktop Nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold);
    background: rgba(200, 166, 52, 0.1);
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.btn-login {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: var(--transition);
}

.btn-login:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-play {
    background: var(--gold);
    color: var(--navy-dark);
    font-weight: 700;
    font-size: 14px;
    padding: 9px 20px;
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
    border: none;
    box-shadow: var(--shadow-gold);
}

.btn-play:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(200, 166, 52, 0.5);
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    padding: 8px;
    color: var(--white);
    font-size: 20px;
    line-height: 1;
}

.hamburger:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: var(--navy-dark);
    border-bottom: 2px solid var(--gold);
    padding: 16px 20px 20px;
    position: sticky;
    top: 68px;
    z-index: 99;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    padding: 10px 12px;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-nav a:hover {
    color: var(--gold);
    background: rgba(200, 166, 52, 0.1);
}

.mobile-nav-cta {
    display: block;
    margin-top: 8px;
    text-align: center;
    background: var(--gold);
    color: var(--navy-dark);
    font-weight: 700;
    font-size: 15px;
    padding: 12px;
    border-radius: 10px;
    box-shadow: var(--shadow-gold);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #0a4da0 100%);
    min-height: 520px;
    display: flex;
    align-items: center;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    padding: 80px 0 64px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 166, 52, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 680px;
}

.hero h1 span {
    color: var(--gold);
}

.hero-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    max-width: 580px;
    margin-bottom: 36px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-dark);
    font-weight: 700;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 12px;
    border: none;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(200, 166, 52, 0.5);
}

.btn-secondary {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 28px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 12px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Hero Stars / stats */
.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 48px;
}

.hero-stat {
    text-align: left;
}

.hero-stat-value {
    font-size: 28px;
    font-weight: 900;
    color: var(--gold);
}

.hero-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 2px;
}

/* ===== RATING BANNER ===== */
.rating-banner {
    background: var(--navy);
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.rating-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-stars {
    font-size: 18px;
    color: var(--gold);
    letter-spacing: 2px;
}

.rating-score {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
}

.rating-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.rating-tag {
    background: rgba(0, 166, 81, 0.15);
    border: 1px solid var(--green);
    color: var(--green);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
}

/* ===== SECTIONS ===== */
.section {
    padding: 72px 0;
}

.section-alt {
    background: var(--white);
}

.section-dark {
    background: var(--navy-dark);
}

.section-navy {
    background: var(--navy);
}

.section-head {
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    background: rgba(200, 166, 52, 0.12);
    border: 1px solid var(--border);
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.section-head h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--navy-dark);
    line-height: 1.2;
}

.section-dark .section-head h2,
.section-navy .section-head h2 {
    color: var(--white);
}

.section-head p {
    color: var(--text-dim);
    font-size: 17px;
    margin-top: 10px;
    max-width: 600px;
}

.section-dark .section-head p,
.section-navy .section-head p {
    color: rgba(255, 255, 255, 0.65);
}

/* ===== SCORE CARD ===== */
.score-card {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: center;
    box-shadow: var(--shadow);
}

.score-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 5px solid var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: rgba(200, 166, 52, 0.08);
    box-shadow: var(--shadow-gold);
}

.score-number {
    font-size: 52px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.score-max {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.score-rows {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.score-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.score-row-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    width: 140px;
    flex-shrink: 0;
}

.score-bar-track {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    overflow: hidden;
}

.score-bar-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 100px;
    transition: width 1s ease;
}

.score-row-val {
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    width: 36px;
    text-align: right;
}

/* ===== CARDS GRID ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid #e0e8f8;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(0, 48, 135, 0.07);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 48, 135, 0.15);
    border-color: var(--gold);
}

.card-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 8px;
}

.card p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
}

.card-dark {
    background: var(--surface);
    border-color: var(--border);
    color: var(--white);
}

.card-dark h3 {
    color: var(--gold);
}

.card-dark p {
    color: rgba(255, 255, 255, 0.65);
}

.card-dark:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

/* ===== TABLE ===== */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0, 48, 135, 0.1);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    background: var(--white);
}

.data-table th {
    background: var(--navy);
    color: var(--white);
    padding: 14px 18px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-align: left;
    white-space: nowrap;
}

.data-table th:first-child {
    border-radius: var(--radius) 0 0 0;
}

.data-table th:last-child {
    border-radius: 0 var(--radius) 0 0;
}

.data-table td {
    padding: 13px 18px;
    color: var(--text);
    border-bottom: 1px solid #e8edf8;
    vertical-align: middle;
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table tr:hover td {
    background: #f6f9ff;
}

.data-table tr.highlight td {
    background: rgba(200, 166, 52, 0.06);
    font-weight: 600;
}

.check {
    color: var(--green);
    font-size: 18px;
}

.cross {
    color: var(--red);
    font-size: 18px;
}

.badge-gold {
    background: rgba(200, 166, 52, 0.15);
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 100px;
}

.badge-green {
    background: rgba(0, 166, 81, 0.12);
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 100px;
}

/* ===== CHART CANVAS ===== */
.chart-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid #e0e8f8;
    box-shadow: 0 2px 12px rgba(0, 48, 135, 0.07);
    min-width: 0;
}

.chart-card-dark {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    min-width: 0;
}

.chart-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 20px;
}

.chart-title-light {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.chart-container {
    position: relative;
    width: 100%;
    height: 350px;
}

@media (max-width: 768px) {
    .chart-container {
        height: 280px;
    }

    .chart-card,
    .chart-card-dark {
        padding: 20px 16px;
    }

    .chart-title,
    .chart-title-light {
        font-size: 14px;
        margin-bottom: 12px;
    }
}

/* ===== PROMO BANNER ===== */
.promo-banner {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
}

.promo-banner::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.08'%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");
}

.promo-banner-content {
    position: relative;
    z-index: 1;
}

.promo-banner h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--navy-dark);
    margin-bottom: 12px;
}

.promo-banner p {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 28px;
}

.promo-banner .btn-navy {
    display: inline-block;
    background: var(--navy-dark);
    color: var(--white);
    font-weight: 700;
    font-size: 17px;
    padding: 15px 38px;
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.promo-banner .btn-navy:hover {
    background: var(--navy);
    transform: translateY(-2px);
}

/* ===== FAQ ===== */
.faq-item {
    border: 1px solid #e0e8f8;
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-q {
    width: 100%;
    background: var(--white);
    border: none;
    text-align: left;
    padding: 18px 22px;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-q:hover {
    background: #f6f9ff;
    color: var(--navy);
}

.faq-q.open {
    color: var(--navy);
    background: #f6f9ff;
}

.faq-icon {
    font-size: 18px;
    transition: transform 0.3s;
    color: var(--gold);
}

.faq-q.open .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    display: none;
    padding: 0 22px 18px;
    font-size: 15px;
    color: var(--text-dim);
    border-top: 1px solid #e8edf8;
}

.faq-a.open {
    display: block;
}

/* ===== SEO ARTICLE ===== */
.seo-article {
    max-width: 900px;
    margin: 0 auto;
}

.seo-article h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin: 40px 0 16px;
}

.seo-article h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin: 28px 0 12px;
}

.seo-article p {
    font-size: 15.5px;
    color: #374163;
    margin-bottom: 16px;
    line-height: 1.75;
}

.seo-article .text-link {
    color: var(--navy);
    font-weight: 600;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.seo-article .text-link:hover {
    color: var(--gold);
    border-color: var(--gold);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 24px;
}

.breadcrumb a {
    color: var(--navy);
    font-weight: 500;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    color: var(--text-dim);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden;
}

.page-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

.page-hero-inner {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--navy-dark);
    border-top: 2px solid var(--border);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 12px;
    line-height: 1.6;
    max-width: 260px;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 8px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-warn {
    background: rgba(200, 166, 52, 0.06);
    border-top: 1px solid var(--border);
    padding: 20px 0;
    margin-top: 48px;
    text-align: center;
}

.footer-warn p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    max-width: 860px;
    margin: 0 auto 6px;
}

.footer-warn a {
    color: var(--gold);
}

.footer-bottom {
    padding: 16px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

/* ===== MISC UTILS ===== */
.text-gold {
    color: var(--gold);
}

.text-white {
    color: var(--white);
}

.text-center {
    text-align: center;
}

.mt-8 {
    margin-top: 8px;
}

.mt-16 {
    margin-top: 16px;
}

.mt-24 {
    margin-top: 24px;
}

.mt-32 {
    margin-top: 32px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-32 {
    margin-bottom: 32px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
    min-width: 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    min-width: 0;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.grid-2>div,
.grid-3>div,
.grid-4>div {
    min-width: 0;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--gold);
    color: var(--navy-dark);
    font-size: 11px;
    font-weight: 900;
    border-radius: 6px;
    flex-shrink: 0;
}

/* ===== STARS RATING ===== */
.stars {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 2px;
}

.stars-sm {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 1px;
}

/* ===== STEPS ===== */
.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step {
    display: flex;
    gap: 24px;
    position: relative;
    padding-bottom: 32px;
}

.step:last-child {
    padding-bottom: 0;
}

.step-num {
    width: 44px;
    height: 44px;
    background: var(--navy);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: var(--gold);
    flex-shrink: 0;
}

.step::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 46px;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.step:last-child::before {
    display: none;
}

.step-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 6px;
}

.step-body p {
    font-size: 14px;
    color: var(--text-dim);
}

/* ===== FORM ===== */
.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    max-width: 480px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e8f8;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text);
    background: var(--off-white);
    transition: var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--navy);
    background: var(--white);
}

.form-input::placeholder {
    color: var(--text-dim);
}

.form-submit {
    width: 100%;
    padding: 14px;
    background: var(--navy);
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit:hover {
    background: var(--navy-mid);
    transform: translateY(-1px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .score-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .score-circle {
        margin-bottom: 8px;
    }
}

@media (max-width: 768px) {

    .main-nav,
    .btn-login {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: 400px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-desc {
        font-size: 16px;
    }

    .hero-stats {
        gap: 20px;
    }

    .section {
        padding: 48px 0;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .promo-banner {
        padding: 36px 24px;
    }

    .promo-banner h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .form-card {
        padding: 28px 20px;
    }

    .data-table {
        font-size: 13px;
    }

    .data-table td,
    .data-table th {
        padding: 10px 12px;
    }
}