*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; font-weight: 400; color: rgba(255,255,255,0.88); line-height: 1.6; background: #080b09; }

:root {
    --bg:           #0a0b0d;
    --bg-mid:       #111316;
    --bg-card:      #161a1e;
    --bg-raised:    #1c2126;
    --lime:         #aaff00;
    --lime-light:   #c4ff4d;
    --lime-dim:     rgba(170,255,0,0.1);
    --lime-glow:    rgba(170,255,0,0.2);
    --gold:         #ffd700;
    --silver:       #c0c0c0;
    --bronze:       #cd7f32;
    --warn:         #ff9800;
    --white:        #ffffff;
    --text:         rgba(255,255,255,0.9);
    --text-dim:     rgba(255,255,255,0.55);
    --text-muted:   rgba(255,255,255,0.35);
    --border:       rgba(170,255,0,0.12);
    --border-hover: rgba(170,255,0,0.35);
    --shadow:       0 4px 24px rgba(0,0,0,0.7);
    --shadow-lime:  0 8px 32px rgba(170,255,0,0.3);
    --radius:       6px;
    --font-display: 'Archivo', 'Arial Narrow', sans-serif;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 2px;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, color 0.15s, transform 0.12s, box-shadow 0.12s, border-color 0.15s;
    border: 2px solid transparent;
}
.btn-primary {
    background: var(--lime);
    color: #0a0b0d;
    border-color: var(--lime);
}
.btn-primary:hover {
    background: #fff;
    color: #0a0b0d;
    transform: translate(-2px,-2px);
    box-shadow: 4px 4px 0 var(--lime);
    border-color: #fff;
}
.btn-outline {
    background: transparent;
    color: var(--lime);
    border-color: rgba(170,255,0,0.5);
}
.btn-outline:hover {
    background: var(--lime);
    border-color: var(--lime);
    color: #0a0b0d;
    transform: translate(-2px,-2px);
    box-shadow: 4px 4px 0 rgba(170,255,0,0.35);
}
.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.25);
}
.btn-ghost:hover {
    border-color: var(--white);
    color: var(--white);
}

/* Spinner */
.btn-spinner {
    width: 18px; height: 18px;
    display: inline-block; vertical-align: middle; margin-right: 6px;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── BRAND LOGO ── */
.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.brand-logo-icon {
    width: 36px; height: 36px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(170,255,0,0.45));
}
.brand-logo-wordmark {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--white);
    white-space: nowrap;
}
.brand-logo-wordmark em { font-style: normal; color: var(--lime); }
.brand-logo--sm .brand-logo-icon { width: 28px; height: 28px; }
.brand-logo--sm .brand-logo-wordmark { font-size: 0.95rem; }

/* ── TOP BAR ── */
#top-bar {
    background: #040705;
    padding: 10px 0;
    border-bottom: 1px solid rgba(170,255,0,0.08);
}
#top-bar .container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
}
.top-tagline {
    font-size: 0.78rem;
    color: var(--text-dim);
    letter-spacing: 0.04em;
}
.top-tagline strong { color: var(--lime); }
.top-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.top-email {
    font-size: 0.84rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
}
.top-email:hover { color: var(--lime); }

/* ── NAVIGATION ── */
#main-nav {
    background: var(--bg);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.8);
    border-bottom: 1px solid rgba(170,255,0,0.12);
}
#main-nav .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.nav-logo { text-decoration: none; flex-shrink: 0; }
.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    padding: 10px 14px;
    display: block;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.15s;
    white-space: nowrap;
    position: relative;
}
.nav-menu > li > a::after {
    content: '';
    position: absolute; left: 14px; right: 14px; bottom: 6px;
    height: 2px;
    background: var(--lime);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}
.nav-menu > li > a:hover,
.nav-menu > li > a:focus { color: var(--lime); outline: none; }
.nav-menu > li > a:hover::after,
.nav-menu > li > a:focus::after { transform: scaleX(1); }
.nav-menu > li > a.nav-cta {
    color: #0a0b0d;
    background: var(--lime);
    border-radius: 2px;
    margin-left: 8px;
    padding: 9px 18px;
}
.nav-menu > li > a.nav-cta::after { display: none; }
.nav-menu > li > a.nav-cta:hover {
    background: #fff;
    color: #0a0b0d;
    transform: translate(-2px,-2px);
    box-shadow: 3px 3px 0 var(--lime);
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    background: #0a1209;
    border: 1px solid rgba(170,255,0,0.15);
    border-radius: 8px;
    min-width: 260px;
    display: block;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s, visibility 0.15s;
    transition-delay: 100ms;
    z-index: 1001;
    box-shadow: 0 16px 48px rgba(0,0,0,0.8);
    padding: 8px 0;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0ms;
}
.dropdown-category {
    padding: 10px 16px 4px;
    font-size: 0.67rem;
    font-weight: 700;
    color: rgba(170,255,0,0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.dropdown a {
    display: block;
    padding: 7px 16px 7px 20px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.84rem;
    transition: background 0.15s, color 0.15s;
}
.dropdown a:hover,
.dropdown a:focus { background: rgba(170,255,0,0.12); color: var(--lime); outline: none; }

/* Cities dropdown — 2-column grid */
.dropdown--cities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-width: 380px;
    padding: 10px;
    gap: 1px;
}
.dropdown--cities .dropdown-category { grid-column: 1 / -1; padding: 8px 6px 4px; }
.dropdown--cities a { padding: 6px 10px; border-radius: 4px; }
.dropdown-link-soon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px;
    color: rgba(255,255,255,0.28);
    font-size: 0.84rem;
    cursor: default;
    border-radius: 4px;
}
.soon-badge {
    font-size: 0.6rem;
    font-weight: 700;
    background: rgba(170,255,0,0.1);
    color: rgba(170,255,0,0.45);
    padding: 2px 5px;
    border-radius: 3px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    flex-shrink: 0;
}
.hamburger span {
    display: block;
    width: 25px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
#mobile-menu { display: none; background: #0a1209; border-top: 1px solid rgba(170,255,0,0.1); }
#mobile-menu.open { display: block; }
#mobile-menu .mob-inner { padding: 12px 20px 20px; max-height: 72vh; overflow-y: auto; }
#mobile-menu ul { list-style: none; }
#mobile-menu ul li a {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s;
}
#mobile-menu ul li a:hover { color: var(--lime); }
.mob-cat-head {
    display: block;
    color: rgba(170,255,0,0.55);
    font-size: 0.67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 12px 0 3px;
}
.mob-sub { padding-left: 14px !important; font-weight: 400 !important; font-size: 0.84rem !important; color: rgba(255,255,255,0.55) !important; }
.mob-city-live { color: var(--lime) !important; font-weight: 700 !important; }

/* ── HERO ── */
#hero {
    background:
        radial-gradient(ellipse at 65% 40%, rgba(170,255,0,0.06) 0%, transparent 50%),
        linear-gradient(160deg, #070809 0%, #0a0b0d 60%, #0c0f0d 100%);
    padding: 100px 0 88px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
#hero::before {
    content: '☣';
    position: absolute;
    right: -40px;
    top: -60px;
    font-size: 500px;
    color: rgba(170,255,0,0.022);
    pointer-events: none;
    line-height: 1;
    z-index: 0;
}
/* hazard stripe top edge */
#hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: repeating-linear-gradient(
        -45deg,
        var(--lime) 0 6px,
        #0a0b0d 6px 14px
    );
    opacity: 0.55;
}
.hero-inner { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; }
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #0a0b0d;
    background: var(--lime);
    border-radius: 2px;
    padding: 5px 14px;
    margin-bottom: 28px;
}
#hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 0.95;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}
#hero h1 em { font-style: normal; color: var(--lime); }
.hero-sub {
    font-size: clamp(0.97rem, 1.6vw, 1.1rem);
    color: var(--text-dim);
    margin-bottom: 40px;
    line-height: 1.72;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 48px; }
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 24px 32px;
    background: rgba(170,255,0,0.05);
    border: 1px solid rgba(170,255,0,0.12);
    border-radius: 14px;
    max-width: 600px;
    margin: 0 auto;
}
.hero-stat {
    flex: 1;
    text-align: center;
}
.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(170,255,0,0.15);
    flex-shrink: 0;
}
.hero-stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--lime);
    line-height: 1;
    letter-spacing: -0.02em;
}
.hero-stat-label { font-size: 0.73rem; color: var(--text-muted); margin-top: 4px; letter-spacing: 0.03em; }

/* ── SECTION COMMON ── */
.section-alt { background: var(--bg-mid); }
.section-raised { background: var(--bg-card); }

section { padding: 80px 0; }
section + section { border-top: 1px solid rgba(170,255,0,0.06); }

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 10px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
    line-height: 1.0;
    text-transform: uppercase;
}
.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--lime), var(--lime-light));
    border-radius: 2px;
    margin: 14px 0 0;
}
.section-title.centered::after { margin: 14px auto 0; }
.section-title.centered { text-align: center; }
.section-intro {
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 680px;
}
.section-intro.centered { text-align: center; margin: 0 auto 52px; }
.section-intro.left { margin-bottom: 36px; }

/* Editorial prose */
.prose { max-width: 900px; }
.prose p { color: var(--text-dim); font-size: 0.97rem; line-height: 1.78; margin-bottom: 18px; }
.prose p:last-child { margin-bottom: 0; }
.prose h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin: 32px 0 12px;
    padding-top: 24px;
    border-top: 1px solid rgba(170,255,0,0.08);
}
.prose h3:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.prose ul { margin: 0 0 18px 0; list-style: none; }
.prose ul li {
    position: relative;
    padding-left: 20px;
    color: var(--text-dim);
    font-size: 0.97rem;
    line-height: 1.75;
    margin-bottom: 8px;
}
.prose ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--lime);
    font-size: 0.75rem;
    top: 3px;
}

/* Info cards */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.info-card {
    background: var(--bg-card);
    border: 1px solid rgba(170,255,0,0.12);
    border-radius: 4px;
    padding: 28px 24px;
    transition: border-color 0.18s, box-shadow 0.18s;
}
.info-card:hover { border-color: rgba(170,255,0,0.25); box-shadow: 0 4px 24px rgba(170,255,0,0.08); }
.info-card-icon {
    width: 44px; height: 44px;
    border-radius: 2px;
    background: var(--lime-dim);
    border: 1px solid rgba(170,255,0,0.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--lime);
    margin-bottom: 16px;
}
.info-card-icon svg { width: 20px; height: 20px; }
.info-card h3 { font-size: 0.98rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.info-card p { font-size: 0.87rem; color: var(--text-dim); line-height: 1.65; }

/* ── METHODOLOGY (how we ranked) ── */
.method-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 36px;
}
.method-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 20px 16px;
    text-align: center;
}
.method-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px; height: 32px;
    border-radius: 2px;
    background: var(--lime-dim);
    border: 1px solid rgba(170,255,0,0.25);
    color: var(--lime);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.method-item h4 { font-size: 0.88rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.method-item p { font-size: 0.78rem; color: var(--text-dim); line-height: 1.6; }

/* ── RANKING CARDS ── */
#rankings { padding: 80px 0; }
.rankings-header { margin-bottom: 52px; }

.rank-card {
    display: flex;
    gap: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 32px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.18s, box-shadow 0.18s;
}
.rank-card:hover { border-color: rgba(170,255,0,0.3); box-shadow: 0 8px 40px rgba(170,255,0,0.08); }
.rank-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: rgba(170,255,0,0.12);
}
.rank-1::before { background: linear-gradient(90deg, var(--gold), #ffec6e); }
.rank-2::before { background: linear-gradient(90deg, var(--silver), #e8e8e8); }
.rank-3::before { background: linear-gradient(90deg, var(--bronze), #e8a96d); }

.rank-left { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.rank-badge {
    width: 60px; height: 60px;
    border-radius: 2px;
    background: var(--lime-dim);
    border: 2px solid rgba(170,255,0,0.3);
    color: var(--lime);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.rank-1 .rank-badge { background: rgba(255,215,0,0.15); border-color: rgba(255,215,0,0.5); color: var(--gold); box-shadow: 0 4px 20px rgba(255,215,0,0.25); }
.rank-2 .rank-badge { background: rgba(192,192,192,0.12); border-color: rgba(192,192,192,0.4); color: var(--silver); box-shadow: 0 4px 20px rgba(192,192,192,0.15); }
.rank-3 .rank-badge { background: rgba(205,127,50,0.15); border-color: rgba(205,127,50,0.45); color: var(--bronze); box-shadow: 0 4px 20px rgba(205,127,50,0.2); }

.rank-content { flex: 1; min-width: 0; }
.rank-company {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    line-height: 1.05;
}
.rank-best-for {
    display: inline-block;
    font-size: 0.83rem;
    color: var(--text-dim);
    background: rgba(170,255,0,0.08);
    border: 1px solid rgba(170,255,0,0.15);
    border-radius: 6px;
    padding: 6px 14px;
    margin-bottom: 18px;
}
.rank-best-for strong { color: var(--lime); }
.rank-body p {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.75;
    margin-bottom: 14px;
}
.rank-body p:last-child { margin-bottom: 0; }
.rank-body h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    margin: 20px 0 8px;
}
.rank-body h4:first-child { margin-top: 0; }

/* Expandable details */
.rank-details {
    margin-top: 16px;
    border-top: 1px solid rgba(170,255,0,0.08);
    padding-top: 16px;
}
.rank-details summary {
    cursor: pointer;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--lime);
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
    user-select: none;
    outline: none;
}
.rank-details summary::after { content: ' ▾'; }
.rank-details[open] summary::after { content: ' ▴'; }
.rank-details-body { padding-top: 16px; }
.rank-details-body p {
    font-size: 0.93rem;
    color: var(--text-dim);
    line-height: 1.75;
    margin-bottom: 14px;
}
.rank-details-body h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    margin: 18px 0 8px;
}

/* ── CITY GRID ── */
#cities { padding: 80px 0; }
.city-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 40px;
}
.city-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 18px 16px;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
a.city-card:hover {
    border-color: rgba(170,255,0,0.45);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(170,255,0,0.12);
}
.city-card--active {
    border-color: rgba(170,255,0,0.35);
    background: rgba(170,255,0,0.06);
}
.city-card--soon { cursor: default; opacity: 0.5; }
.city-name {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}
a.city-card .city-name { color: var(--lime); }
.city-meta {
    font-size: 0.73rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}
a.city-card .city-meta { color: rgba(170,255,0,0.6); }

/* ── GET LISTED FORM ── */
#get-listed { padding: 80px 0; }
.get-listed-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}
.get-listed-left h2 { margin-bottom: 16px; }
.get-listed-left h2::after { display: block; }
.get-listed-left p { color: var(--text-dim); font-size: 0.97rem; line-height: 1.75; margin-bottom: 16px; }
.get-listed-checks { list-style: none; margin-top: 24px; }
.get-listed-checks li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-dim);
    margin-bottom: 10px;
}
.get-listed-checks li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--lime); }

.listing-form-card {
    background: var(--white);
    border-radius: 2px;
    padding: 36px 32px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.6), 4px 4px 0 var(--lime);
    position: relative;
    overflow: hidden;
}
.listing-form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: repeating-linear-gradient(
        -45deg,
        var(--lime) 0 5px,
        #0a0b0d 5px 11px
    );
}
.listing-form-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 900;
    color: #0a0b0d;
    margin-bottom: 5px;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}
.form-sub { font-size: 0.86rem; color: #6b7280; margin-bottom: 22px; }

/* Form fields */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-full { grid-column: 1 / -1; }
label { display: block; font-weight: 600; font-size: 0.84rem; margin-bottom: 5px; color: #374151; }
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #d1d5db;
    border-radius: 0;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    color: #111;
    background: #f9fafb;
    transition: border-color 0.15s, box-shadow 0.15s;
}
input:focus, textarea:focus {
    outline: none;
    border-color: #aaff00;
    background: var(--white);
    box-shadow: 3px 3px 0 rgba(170,255,0,0.35);
}
textarea { resize: vertical; min-height: 110px; }
.honeypot-field { display: none !important; visibility: hidden; }
.form-submit { grid-column: 1 / -1; text-align: center; margin-top: 4px; }
.form-submit .btn { width: 100%; padding: 14px; font-size: 1rem; }
#form-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 12px 16px;
    border-radius: 7px;
    font-weight: 600;
    font-size: 0.92rem;
    display: none;
}
#form-message.success { background: #d1fae5; color: #065f46; display: block; }
#form-message.error   { background: #fee2e2; color: #991b1b; display: block; }

/* ── CHECK BEFORE HIRING ── */
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 36px;
}
.check-item {
    display: flex;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 22px 20px;
}
.check-icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    border-radius: 2px;
    background: var(--lime-dim);
    border: 1px solid rgba(170,255,0,0.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--lime);
}
.check-icon svg { width: 18px; height: 18px; }
.check-item h4 { font-size: 0.93rem; font-weight: 700; color: var(--white); margin-bottom: 5px; }
.check-item p  { font-size: 0.86rem; color: var(--text-dim); line-height: 1.65; }

/* ── FINAL THOUGHTS / CLOSING ── */
#closing {
    padding: 80px 0;
    text-align: center;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(170,255,0,0.06) 0%, transparent 60%),
        var(--bg);
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-inner .section-title::after { margin: 14px auto 0; }
.closing-inner p { color: var(--text-dim); font-size: 1rem; line-height: 1.78; margin-bottom: 18px; }

/* ── FOOTER ── */
#footer {
    background: #040705;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.4fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(170,255,0,0.08);
}
.footer-col h4 {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--lime);
    display: inline-block;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.footer-col p { font-size: 0.86rem; margin-bottom: 8px; line-height: 1.65; }
.footer-col > a:not(.brand-logo):not(.btn) {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.86rem;
    display: block;
    margin-bottom: 6px;
    transition: color 0.18s, padding-left 0.18s;
}
.footer-col > a:not(.brand-logo):not(.btn):hover { color: var(--lime); padding-left: 4px; }
.footer-logo { margin-bottom: 14px; }
.footer-email { font-size: 0.84rem; }
.footer-email a { color: var(--lime); text-decoration: none; }
.footer-email a:hover { color: var(--lime-light); }

.footer-contact-line {
    display: flex; align-items: flex-start;
    gap: 10px; font-size: 0.86rem;
    color: rgba(255,255,255,0.6); margin-bottom: 12px;
}
.footer-contact-line svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; color: var(--lime); }
.footer-contact-line a { color: var(--white); text-decoration: none; font-weight: 600; }
.footer-contact-line a:hover { color: var(--lime); }

/* Social icons */
.social-icons { display: flex; gap: 8px; margin-top: 14px; margin-bottom: 12px; }
.social-icon {
    display: flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; flex-shrink: 0; border-radius: 7px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.65);
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
    text-decoration: none;
}
.social-icon svg { width: 15px; height: 15px; display: block; }
.si-facebook:hover { background: #1877F2; border-color: #1877F2; color: #fff; transform: translateY(-2px); }
.si-x:hover        { background: #000;    border-color: #333;    color: #fff; transform: translateY(-2px); }
.si-linkedin:hover { background: #0A66C2; border-color: #0A66C2; color: #fff; transform: translateY(-2px); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 18px 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.32);
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { color: rgba(255,255,255,0.32); text-decoration: none; transition: color 0.2s; }
.footer-legal-links a:hover { color: rgba(255,255,255,0.65); }

/* ── BREADCRUMB ── */
.breadcrumb-bar {
    background: var(--bg-mid);
    border-bottom: 1px solid rgba(170,255,0,0.08);
    padding: 12px 0;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.83rem;
    color: var(--text-muted);
}
.breadcrumb li { display: flex; align-items: center; }
.breadcrumb li:not(:last-child)::after {
    content: '\203a';
    margin: 0 8px;
    color: var(--text-muted);
}
.breadcrumb a { color: var(--lime); text-decoration: none; }
.breadcrumb a:hover { color: var(--lime-light); }

/* ── FADE IN ── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── BACK TO TOP ── */
#back-to-top {
    position: fixed;
    bottom: 28px; right: 28px; z-index: 999;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--lime);
    color: var(--bg);
    border: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 18px rgba(170,255,0,0.5);
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    transform: translateY(10px);
}
#back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
#back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(170,255,0,0.6); }
#back-to-top svg { width: 19px; height: 19px; }

/* ── LEGAL PAGES ── */
.legal-hero {
    background: var(--bg-mid);
    padding: 60px 0 48px;
    border-bottom: 1px solid rgba(170,255,0,0.08);
}
.legal-hero h1 { font-size: 2rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.legal-hero p { color: var(--text-dim); font-size: 0.88rem; }
.legal-body { padding: 60px 0 80px; }
.legal-body-inner { max-width: 820px; }
.legal-body h2 {
    font-size: 0.84rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--lime);
    margin: 40px 0 10px; padding-top: 24px;
    border-top: 1px solid rgba(170,255,0,0.1);
}
.legal-body h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal-body p { font-size: 0.95rem; color: rgba(255,255,255,0.68); line-height: 1.78; margin-bottom: 12px; }
.legal-body ul { margin: 0 0 14px 20px; }
.legal-body ul li { font-size: 0.95rem; color: rgba(255,255,255,0.68); line-height: 1.78; }
.legal-body a { color: var(--lime); text-decoration: underline; }
.legal-body strong { color: rgba(255,255,255,0.9); }

/* ── HAZARD STRIPE ACCENT ── */

/* 1. Section background texture — very subtle diagonal on alt sections */
.hazard-stripe {
    background: repeating-linear-gradient(
        -45deg,
        transparent, transparent 14px,
        rgba(170,255,0,0.03) 14px, rgba(170,255,0,0.03) 28px
    );
}

/* 2. Nav bottom — thin 3px diagonal strip across sticky bar */
#main-nav {
    border-bottom: none;
}
#main-nav::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: repeating-linear-gradient(
        -45deg,
        rgba(170,255,0,0.35) 0 3px,
        transparent 3px 9px
    );
    pointer-events: none;
    z-index: 1;
}

/* 3. Rank #1 card — vertical hazard stripe on left edge */
.rank-1::after {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 6px;
    background: repeating-linear-gradient(
        180deg,
        var(--gold) 0 7px,
        rgba(255,215,0,0.08) 7px 14px
    );
    pointer-events: none;
}

/* 4. Section eyebrow — tiny hazard chip before each label */
.section-eyebrow::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 11px;
    background: repeating-linear-gradient(
        -45deg,
        var(--lime) 0 3px,
        transparent 3px 7px
    );
    flex-shrink: 0;
    border-radius: 1px;
    vertical-align: middle;
    margin-right: 2px;
}

/* 5. Footer top border — replaces solid border-top */
#footer {
    border-top: none;
}
#footer::before {
    content: '';
    display: block;
    height: 4px;
    background: repeating-linear-gradient(
        -45deg,
        rgba(170,255,0,0.5) 0 4px,
        rgba(4,7,5,1) 4px 10px
    );
}

/* ── RESPONSIVE ── */
@media (max-width: 1080px) {
    .method-grid { grid-template-columns: repeat(3, 1fr); }
    .city-grid   { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
    .get-listed-inner   { grid-template-columns: 1fr; gap: 40px; }
    .info-grid          { grid-template-columns: repeat(2, 1fr); }
    .city-grid          { grid-template-columns: repeat(3, 1fr); }
    .checklist-grid     { grid-template-columns: 1fr; }
    .footer-top         { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 860px) {
    .nav-menu           { display: none; }
    .hamburger          { display: flex; }
    .rank-card          { flex-direction: column; gap: 20px; }
    .rank-left          { flex-direction: row; align-items: center; }
}
@media (max-width: 640px) {
    #top-bar .container { flex-direction: column; text-align: center; gap: 6px; }
    .hero-stats         { flex-wrap: wrap; gap: 16px; padding: 18px 20px; }
    .hero-stat-divider  { display: none; }
    .hero-btns          { flex-direction: column; align-items: center; }
    .form-grid          { grid-template-columns: 1fr; }
    .form-full          { grid-column: 1; }
    .form-submit        { grid-column: 1; }
    #form-message       { grid-column: 1; }
    .info-grid          { grid-template-columns: 1fr; }
    .method-grid        { grid-template-columns: repeat(2, 1fr); }
    .city-grid          { grid-template-columns: repeat(2, 1fr); }
    .footer-top         { grid-template-columns: 1fr; }
    section             { padding: 56px 0; }
}
@media (max-width: 440px) {
    .dropdown--cities   { grid-template-columns: 1fr; min-width: 240px; }
    .city-grid          { grid-template-columns: repeat(2, 1fr); }
    .hero-stat-number   { font-size: 1.3rem; }
}
