﻿/* ==========================================
   HOMEPAGE CSS v3.3 - STANDALONE
   Mobile-first responsive design
   
   FILE LOCATION: /asset/css/templates/homepage.css
   
   FIXES v3.3:
   - Changed overflow-x: hidden to clip (fixes sticky header)
   
   FIXES v3.2:
   - Mobile hero buttons now stack properly
   - Listen button icon inline with text
   - Hero image hidden on mobile
   - All three buttons full width and stacked
   ========================================== */

/* ==========================================
   FONT FACE DECLARATIONS
   ========================================== */
@font-face {
    font-family: 'AvertaPE';
    src: url('/asset/fonts/AvertaPE-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'AvertaPESemiBold';
    src: url('/asset/fonts/AvertaPE-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'AvertaPEBold';
    src: url('/asset/fonts/AvertaPE-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ==========================================
   BASE RESETS & UTILITIES
   ========================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    overflow-x: clip;
    max-width: 100%;
}

body { 
    font-family: AvertaPE, sans-serif; 
}

.city-page-bg, .homepage-bg { 
    background-color: #f8f9fa; 
    min-height: 100vh; 
}

.mobile-break { display: none; }
.desktop-break { display: inline; }
p strong { font-family: AvertaPEBold, sans-serif; }
.highlight { color: #47BB5C; }

/* ==========================================
   GOOGLE REVIEW BADGE
   ========================================== */
.google-review-badge,
.city-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    color: #166534;
    font-family: AvertaPESemiBold, sans-serif;
    margin-bottom: 14px;
}

.google-review-badge img,
.city-hero-badge img {
    height: 20px;
    width: auto;
}

/* ==========================================
   HERO SECTION - DESKTOP
   ========================================== */
.city-hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 35px 0 45px;
    border-bottom: 1px solid #e2e8f0;
}

.city-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    align-items: center;
}

.city-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.city-hero-eyebrow {
    font-family: AvertaPESemiBold, sans-serif;
    font-size: 15px;
    color: #1f295e;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.city-hero-headline {
    font-family: AvertaPEBold, sans-serif;
    font-size: 48px;
    color: #1f295e;
    line-height: 1.1;
    margin-bottom: 14px;
}

.city-hero-headline .highlight {
    color: #47BB5C;
    display: block;
}

.city-hero-competition {
    font-family: AvertaPESemiBold, sans-serif;
    font-size: 22px;
    color: #4a5568;
    margin-bottom: 14px;
}

.city-hero-competition a {
    color: #47BB5C;
    text-decoration: none;
}

.city-hero-tagline {
    font-family: AvertaPEBold, sans-serif;
    font-size: 28px;
    color: #1f295e;
    margin-bottom: 28px;
}

/* ==========================================
   HERO CTA BUTTONS - DESKTOP
   ========================================== */
.city-hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Listen button - HIDDEN on desktop, shown on mobile */
.city-btn-listen-mobile {
    display: none;
}

/* Standard buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: AvertaPEBold, sans-serif;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #47BB5C;
    color: #fff;
    padding: 18px 42px;
    border-radius: 8px;
    font-size: 18px;
}

.btn-primary:hover {
    background: #01a347;
    color: #fff;
}

.btn-secondary {
    background: #fff;
    color: #1f295e;
    padding: 18px 42px;
    border-radius: 8px;
    font-size: 18px;
    border: 2px solid #1f295e;
}

.btn-secondary:hover {
    background: #1f295e;
    color: #fff;
}

.btn-lg {
    padding: 18px 42px;
    font-size: 18px;
}

.btn-white {
    background: #fff;
    color: #1f295e;
    padding: 16px 36px;
    border-radius: 8px;
    font-size: 17px;
}

.btn-white:hover {
    background: #47BB5C;
    color: #fff;
}

/* ==========================================
   HERO IMAGE (Desktop)
   ========================================== */
.city-hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.city-hero-image-wrap {
    position: relative;
    display: inline-block;
}

.city-hero-image {
    max-width: 100%;
    height: auto;
    max-height: 420px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.city-hero-listen-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 12px 20px;
    border-radius: 30px;
    font-family: AvertaPESemiBold, sans-serif;
    font-size: 15px;
    color: #1f295e;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: all 0.2s;
    white-space: nowrap;
}

.city-hero-listen-overlay:hover {
    background: #1f295e;
    color: #fff;
}

.city-listen-icon-circle {
    width: 32px;
    height: 32px;
    background: #47BB5C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* ==========================================
   SECTIONS - General
   ========================================== */
.city-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 20px;
}

.city-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.city-section-header h2 {
    font-family: AvertaPEBold, sans-serif;
    font-size: 40px;
    color: #1f295e;
    margin-bottom: 16px;
    line-height: 1.2;
}

.city-section-header p {
    font-family: AvertaPE, sans-serif;
    font-size: 19px;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ATS Subhead styling */
.city-ats-subhead {
    font-family: AvertaPE, sans-serif;
    font-size: 19px;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.city-ats-subhead-2 {
    margin-top: 0 !important;
}

.city-ats-num {
    display: none;
}

/* CTA Block */
.city-cta-block {
    text-align: center;
    margin-top: 48px;
    padding-top: 32px;
}

.city-cta-headline {
    font-family: AvertaPEBold, sans-serif;
    font-size: 32px;
    color: #1f295e;
    margin: 0 0 8px 0;
}

.city-cta-subhead {
    font-family: AvertaPE, sans-serif;
    font-size: 20px;
    color: #4a5568;
    margin: 0 0 24px 0;
}

/* ==========================================
   PROBLEM SECTION
   ========================================== */
.city-problem-list {
    max-width: 900px;
    margin: 0 auto;
}

.city-problem-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: #fff;
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.2s;
}

.city-problem-item:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.city-problem-icon-inline {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #47BB5C 0%, #00a344 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.city-problem-icon-inline svg {
    width: 26px;
    height: 26px;
    color: #fff;
}

.city-problem-content h3 {
    font-family: AvertaPEBold, sans-serif;
    font-size: 22px;
    color: #1f295e;
    margin-bottom: 8px;
}

.city-problem-content p {
    font-family: AvertaPE, sans-serif;
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* ==========================================
   IMPACT SECTION
   ========================================== */
.city-impact-section {
    background: #fff;
    padding: 70px 0;
    border-bottom: 1px solid #e2e8f0;
}

.city-impact-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.city-impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.city-impact-content h2 {
    font-family: AvertaPEBold, sans-serif;
    font-size: 40px;
    color: #1f295e;
    line-height: 1.2;
    margin-bottom: 20px;
}

.city-impact-content > p {
    font-family: AvertaPE, sans-serif;
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 28px;
}

.city-impact-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.city-impact-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.city-impact-check {
    width: 28px;
    height: 28px;
    background: #47BB5C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.city-impact-check svg {
    width: 16px;
    height: 16px;
    color: #fff;
}

.city-impact-point strong {
    display: block;
    font-family: AvertaPESemiBold, sans-serif;
    font-size: 18px;
    color: #1f295e;
    margin-bottom: 4px;
}

.city-impact-point span {
    font-family: AvertaPE, sans-serif;
    font-size: 16px;
    color: #4a5568;
    line-height: 1.5;
}

.city-impact-cta {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

/* Before/After Examples */
.city-examples-full {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid #e2e8f0;
}

.city-examples-header {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e2e8f0;
}

.city-ex-bad-label {
    font-family: AvertaPEBold, sans-serif;
    font-size: 14px;
    color: #e57373;
    text-transform: uppercase;
    text-align: center;
}

.city-ex-arrow {
    font-size: 20px;
    color: #47BB5C;
    text-align: center;
    font-weight: bold;
}

.city-ex-good-label {
    font-family: AvertaPEBold, sans-serif;
    font-size: 14px;
    color: #47BB5C;
    text-transform: uppercase;
    text-align: center;
}

.city-example-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.city-ex-bad {
    font-family: AvertaPE, sans-serif;
    font-size: 14px;
    color: #e57373;
    text-decoration: line-through;
    padding: 10px 14px;
    background: #fef2f2;
    border-radius: 8px;
    border-left: 3px solid #fecaca;
}

.city-ex-good {
    font-family: AvertaPESemiBold, sans-serif;
    font-size: 14px;
    color: #166534;
    padding: 10px 14px;
    background: #f0fdf4;
    border-radius: 8px;
    border-left: 3px solid #47BB5C;
}

/* ==========================================
   PROOF SECTION
   ========================================== */
.city-proof-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.city-proof-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.city-proof-header {
    text-align: center;
    margin-bottom: 48px;
}

.city-proof-badge {
    display: inline-block;
    background: #1f295e;
    color: #fff;
    font-family: AvertaPESemiBold, sans-serif;
    font-size: 13px;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.city-proof-header h2 {
    font-family: AvertaPEBold, sans-serif;
    font-size: 42px;
    color: #1f295e;
    margin-bottom: 16px;
    line-height: 1.2;
}

.city-proof-quote-intro {
    font-family: AvertaPE, sans-serif;
    font-size: 20px;
    color: #4a5568;
    text-align: center;
    margin-bottom: 8px;
}

.city-proof-quote-text {
    font-family: AvertaPE, sans-serif;
    font-size: 20px;
    color: #1f295e;
    font-style: italic;
    text-align: center;
}

.city-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.city-proof-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.2s;
}

.city-proof-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.city-proof-card.featured {
    background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%);
    border: 2px solid #47BB5C;
}

.city-proof-card h3 {
    font-family: AvertaPEBold, sans-serif;
    font-size: 18px;
    color: #1f295e;
    margin-bottom: 12px;
    line-height: 1.3;
}

.city-proof-num {
    color: #47BB5C;
    margin-right: 4px;
}

.city-proof-card p {
    font-family: AvertaPE, sans-serif;
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 14px;
}

.city-proof-question {
    background: #f8fafc;
    border-left: 3px solid #47BB5C;
    padding: 10px 14px;
    font-family: AvertaPE, sans-serif;
    font-size: 13px;
    color: #1f295e;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

/* Proof Result Box */
.city-proof-result-new {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    background: linear-gradient(135deg, #1f295e 0%, #2d3a6e 100%);
    border-radius: 20px;
    overflow: hidden;
}

.city-proof-result-left {
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.city-proof-result-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.city-proof-result-icon {
    width: 52px;
    height: 52px;
    background: rgba(2, 193, 83, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.city-proof-result-icon svg {
    color: #47BB5C;
}

.city-proof-result-left h3 {
    font-family: AvertaPEBold, sans-serif;
    font-size: 28px;
    color: #fff;
    margin: 0;
}

.city-proof-result-left p {
    font-family: AvertaPE, sans-serif;
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.city-proof-result-right {
    background: #fff;
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.city-proof-quote-card {
    position: relative;
    text-align: center;
    margin-bottom: 28px;
}

.city-proof-headline {
    font-family: AvertaPESemiBold, sans-serif;
    font-size: 22px;
    color: #1f295e;
    margin: 0 0 8px 0;
}

.city-quote-highlight {
    font-family: AvertaPEBold, sans-serif;
    font-size: 24px;
    color: #47BB5C;
    margin-top: 8px;
}

.city-proof-video-thumb {
    margin-top: 20px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.city-proof-video-thumb a {
    display: block;
    position: relative;
}

.city-proof-video-thumb img {
    width: 100%;
    max-width: 320px;
    display: block;
}

.city-proof-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(2, 193, 83, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.city-proof-video-label {
    display: block;
    text-align: center;
    padding: 12px;
    background: #1f295e;
    color: #fff;
    font-family: AvertaPESemiBold, sans-serif;
    font-size: 14px;
}

/* ==========================================
   HOW IT WORKS
   ========================================== */
.city-howitworks {
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
    padding: 70px 0;
}

.city-howitworks-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.city-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.city-step-card {
    text-align: center;
    position: relative;
}

.city-step-card::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -16px;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, #47BB5C, #e2e8f0);
}

.city-step-card:last-child::after {
    display: none;
}

.city-step-number {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 3px solid #47BB5C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: AvertaPEBold, sans-serif;
    font-size: 32px;
    color: #47BB5C;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(2, 193, 83, 0.2);
}

.city-step-title {
    font-family: AvertaPEBold, sans-serif;
    font-size: 20px;
    color: #1f295e;
    margin-bottom: 10px;
}

.city-step-desc {
    font-family: AvertaPE, sans-serif;
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.city-listen-inline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1f295e;
    color: #fff;
    padding: 16px 32px;
    border-radius: 8px;
    font-family: AvertaPEBold, sans-serif;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.2s;
}

.city-listen-inline:hover {
    background: #47BB5C;
    color: #fff;
}

/* ==========================================
   RESUME SAMPLES SECTION
   ========================================== */
.city-samples-section {
    background: #fff;
    padding: 70px 0;
}

.city-samples-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.city-resume-interactive {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 0;
    align-items: start;
}

.city-resume-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.city-resume-header h2 {
    font-family: AvertaPEBold, sans-serif;
    font-size: 36px;
    color: #1f295e;
    line-height: 1.2;
    margin-bottom: 12px;
}

.city-resume-header p {
    font-family: AvertaPE, sans-serif;
    font-size: 17px;
    color: #718096;
    line-height: 1.5;
}

.city-resume-dropdown {
    display: none;
}

.city-resume-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.city-resume-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 14px 18px;
    cursor: pointer;
    transition: all 0.2s;
}

.city-resume-list-item:hover {
    border-color: #47BB5C;
    background: #fafffe;
}

.city-resume-list-item.active {
    border-color: #47BB5C;
    background: linear-gradient(135deg, #f0fdf4 0%, #fff 100%);
}

.city-rli-content h4 {
    font-family: AvertaPESemiBold, sans-serif;
    font-size: 17px;
    color: #1f295e;
    margin: 0 0 3px 0;
}

.city-rli-companies {
    display: block;
    font-family: AvertaPE, sans-serif;
    font-size: 14px;
    color: #718096;
}

.city-resume-preview {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.city-nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.city-nav-arrow:hover {
    border-color: #47BB5C;
    background: #f0fdf4;
}

.city-nav-arrow svg {
    width: 20px;
    height: 20px;
    color: #1f295e;
}

.city-preview-frame {
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    line-height: 0;
}

.city-preview-frame img {
    max-height: 580px;
    width: auto;
    display: block;
}

/* Competition badges */
.competition-badge {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 6px;
    font-family: AvertaPESemiBold, sans-serif;
    font-size: 13px;
    white-space: nowrap;
}

.competition-badge.high {
    background: #fee2e2;
    color: #b91c1c;
}

.competition-badge.medium {
    background: #fef3c7;
    color: #b45309;
}

.competition-badge.low {
    background: #d1fae5;
    color: #047857;
}

.city-competition-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    font-size: 12px;
}

.legend-item {
    display: flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
}

.legend-item.high {
    background: #fee2e2;
    color: #b91c1c;
}

.legend-item.medium {
    background: #fef3c7;
    color: #b45309;
}

.legend-item.low {
    background: #d1fae5;
    color: #047857;
}

/* Industry links */
.city-samples-industries {
    padding: 32px;
    background: #f8fafc;
    border-radius: 12px;
    margin-top: 40px;
}

.city-samples-industries h4 {
    font-family: AvertaPESemiBold, sans-serif;
    font-size: 18px;
    color: #1f295e;
    margin-bottom: 18px;
    text-align: center;
}

.city-industry-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.city-industry-link {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 10px 18px;
    border-radius: 30px;
    font-family: AvertaPESemiBold, sans-serif;
    font-size: 14px;
    color: #1f295e;
    text-decoration: none;
    transition: all 0.2s;
}

.city-industry-link:hover {
    background: #47BB5C;
    color: #fff;
    border-color: #47BB5C;
}

/* Samples difference section */
.city-samples-difference {
    background: linear-gradient(135deg, #1f295e 0%, #2d3a6e 100%);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin: 40px 0;
}

.city-samples-diff-content h3 {
    font-family: AvertaPEBold, sans-serif;
    font-size: 24px;
    color: #fff;
    margin-bottom: 16px;
}

.city-samples-diff-content p {
    font-family: AvertaPE, sans-serif;
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin: 0 0 8px 0;
}

.city-samples-diff-content .city-diff-line1 {
    font-family: AvertaPESemiBold, sans-serif;
    font-size: 18px;
    color: #fff;
    margin-bottom: 6px;
}

.city-samples-diff-content .city-diff-line2 {
    font-family: AvertaPEBold, sans-serif;
    font-size: 20px;
    color: #47BB5C;
    margin-bottom: 16px;
}

.city-samples-diff-cta {
    flex-shrink: 0;
}

/* ==========================================
   HOMEPAGE MARKETS SECTION
   ========================================== */
.homepage-markets-section {
    background: #f8f9fa;
    padding: 70px 0;
}

.homepage-markets-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.homepage-competitive-titles,
.homepage-industries,
.homepage-cities-compact {
    margin-bottom: 48px;
}

.homepage-competitive-titles h3,
.homepage-industries h3,
.homepage-cities-compact h3 {
    font-family: AvertaPEBold, sans-serif;
    font-size: 24px;
    color: #1f295e;
    margin-bottom: 20px;
    text-align: center;
}

.homepage-titles-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.homepage-title-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 20px;
    min-width: 240px;
    flex: 0 0 auto;
    text-decoration: none;
    transition: all 0.2s;
}

.homepage-title-card:hover {
    border-color: #47BB5C;
    box-shadow: 0 4px 12px rgba(2, 193, 83, 0.15);
}

.homepage-title-name {
    font-family: AvertaPESemiBold, sans-serif;
    font-size: 15px;
    color: #1f295e;
}

.homepage-industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.homepage-industry-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #1f295e;
    border-radius: 50px;
    padding: 12px 24px;
    text-decoration: none;
    transition: all 0.2s;
    color: #fff;
}

.homepage-industry-pill:hover {
    background: #47BB5C;
}

.homepage-industry-jobs {
    font-family: AvertaPESemiBold, sans-serif;
    font-size: 13px;
    color: #47BB5C;
    background: rgba(255,255,255,0.15);
    padding: 4px 10px;
    border-radius: 20px;
}

.homepage-industry-pill:hover .homepage-industry-jobs {
    color: #fff;
    background: rgba(255,255,255,0.2);
}

.homepage-cities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.homepage-city-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 10px 20px;
    text-decoration: none;
    transition: all 0.2s;
    font-family: AvertaPESemiBold, sans-serif;
    font-size: 14px;
    color: #1f295e;
}

.homepage-city-pill:hover {
    border-color: #47BB5C;
    background: #f0fdf4;
}

.homepage-city-pill span {
    font-family: AvertaPE, sans-serif;
    font-size: 12px;
    color: #718096;
}

.homepage-city-pill.view-all {
    background: #47BB5C;
    color: #fff;
    border-color: #47BB5C;
}

/* Competition callout */
.city-competition-callout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    padding: 28px 40px;
    background: linear-gradient(135deg, #fef2f2 0%, #fff5f5 100%);
    border: 2px solid #fecaca;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s;
}

.city-competition-callout:hover {
    border-color: #f87171;
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.15);
}

.callout-context {
    font-family: AvertaPE, sans-serif;
    font-size: 19px;
    color: #4a5568;
    text-align: center;
}

.callout-math-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 16px;
}

.callout-math {
    font-family: AvertaPESemiBold, sans-serif;
    font-size: 22px;
    color: #1f295e;
}

.callout-multiply,
.callout-equals {
    font-size: 24px;
    color: #a0aec0;
    font-weight: 400;
}

.callout-result {
    font-family: AvertaPEBold, sans-serif;
    font-size: 26px;
    color: #dc2626;
}

.callout-context-end {
    font-family: AvertaPE, sans-serif;
    font-size: 19px;
    color: #4a5568;
    text-align: center;
}

.city-market-source {
    text-align: center;
    margin-top: 32px;
    font-family: AvertaPE, sans-serif;
    font-size: 13px;
    color: #a0aec0;
    font-style: italic;
}

/* ==========================================
   DISTRIBUTION SECTION
   ========================================== */
.city-distribution-section {
    background: #f8f9fa;
    padding: 70px 0;
}

.city-distribution-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.city-distribution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.city-distribution-content h3 {
    font-family: AvertaPEBold, sans-serif;
    font-size: 24px;
    color: #1f295e;
    margin-bottom: 16px;
}

.city-distribution-content p {
    font-family: AvertaPE, sans-serif;
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
}

.city-distribution-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
}

.city-dist-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.city-dist-check {
    width: 24px;
    height: 24px;
    background: #47BB5C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.city-dist-check svg {
    width: 14px;
    height: 14px;
    color: #fff;
}

.city-dist-feature span {
    font-family: AvertaPE, sans-serif;
    font-size: 16px;
    color: #4a5568;
}

.city-recruiter-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.city-recruiter-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px;
}

.city-rc-avatar {
    width: 44px;
    height: 44px;
    background: #1f295e;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: AvertaPEBold, sans-serif;
    font-size: 14px;
    color: #fff;
    flex-shrink: 0;
}

.city-rc-info h4 {
    font-family: AvertaPESemiBold, sans-serif;
    font-size: 15px;
    color: #1f295e;
    margin: 0 0 4px 0;
}

.city-rc-info p {
    font-family: AvertaPE, sans-serif;
    font-size: 13px;
    color: #718096;
    margin: 0;
    line-height: 1.4;
}

/* Recruiter table */
.city-recruiter-box {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.city-recruiter-header {
    background: #1f295e;
    color: #fff;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.city-recruiter-header h4 {
    font-family: AvertaPEBold, sans-serif;
    font-size: 18px;
    margin: 0;
    color: #fff;
}

.city-recruiter-count {
    background: #47BB5C;
    padding: 6px 14px;
    border-radius: 20px;
    font-family: AvertaPESemiBold, sans-serif;
    font-size: 14px;
}

.city-recruiter-table {
    width: 100%;
    border-collapse: collapse;
}

.city-recruiter-table th {
    text-align: left;
    font-family: AvertaPESemiBold, sans-serif;
    font-size: 13px;
    color: #718096;
    text-transform: uppercase;
    padding: 14px 20px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.city-recruiter-table td {
    padding: 14px 20px;
    font-family: AvertaPE, sans-serif;
    font-size: 15px;
    color: #4a5568;
    border-bottom: 1px solid #f0f0f0;
}

.city-recruiter-table tr:last-child td {
    border-bottom: none;
}

.city-recruiter-name {
    display: flex;
    align-items: center;
    gap: 12px;
}

.city-recruiter-avatar {
    width: 36px;
    height: 36px;
    background: #1f295e;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: AvertaPEBold, sans-serif;
    font-size: 12px;
    color: #fff;
}

.city-recruiter-company {
    font-family: AvertaPESemiBold, sans-serif;
    color: #1f295e;
}

.city-recruiter-footer {
    padding: 16px 20px;
    background: #f8fafc;
    text-align: center;
    font-family: AvertaPE, sans-serif;
    font-size: 14px;
    color: #718096;
}

.city-recruiter-footer a {
    color: #47BB5C;
    font-weight: 600;
    text-decoration: none;
}

/* ==========================================
   GUARANTEE SECTION
   ========================================== */
.city-guarantee-section {
    background: linear-gradient(135deg, #1f295e 0%, #2d3a6e 100%);
    padding: 70px 0;
}

.city-guarantee-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.city-guarantee-badge {
    display: inline-block;
    background: #47BB5C;
    color: #fff;
    font-family: AvertaPEBold, sans-serif;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.city-guarantee-inner h2 {
    font-family: AvertaPEBold, sans-serif;
    font-size: 40px;
    color: #fff;
    margin-bottom: 20px;
}

.city-guarantee-inner p {
    font-family: AvertaPE, sans-serif;
    font-size: 19px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 16px;
}

.city-guarantee-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 32px 0;
    flex-wrap: wrap;
}

.city-guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.city-guarantee-item svg {
    width: 24px;
    height: 24px;
    color: #47BB5C;
}

.city-guarantee-item span {
    font-family: AvertaPESemiBold, sans-serif;
    font-size: 17px;
    color: #fff;
}

.city-guarantee-cta {
    margin-top: 32px;
}

/* ==========================================
   REVIEWS SECTION
   ========================================== */
.city-reviews-section {
    background: #f8fafc;
    padding: 80px 0;
}

.city-reviews-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.city-reviews-header {
    text-align: center;
    margin-bottom: 40px;
}

.city-reviews-header h2 {
    font-family: AvertaPEBold, sans-serif;
    font-size: 40px;
    color: #1f295e;
    margin-bottom: 12px;
}

.city-reviews-header p {
    font-family: AvertaPE, sans-serif;
    font-size: 18px;
    color: #718096;
}

/* ==========================================
   VIDEOS & LOGOS
   ========================================== */
.city-videos-section {
    background: #1f295e;
    padding: 80px 0;
}

.city-videos-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.city-videos-header {
    text-align: center;
    margin-bottom: 48px;
}

.city-videos-header h2 {
    font-family: AvertaPEBold, sans-serif;
    font-size: 40px;
    color: #fff;
    margin-bottom: 16px;
}

.city-videos-header p {
    font-family: AvertaPE, sans-serif;
    font-size: 18px;
    color: rgba(255,255,255,0.8);
}

.city-videos-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.city-video-item {
    position: relative;
    width: 300px;
    border-radius: 12px;
    overflow: hidden;
}

.city-video-item img {
    width: 100%;
    display: block;
}

.city-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px !important;
    height: 50px !important;
    opacity: 0.9;
    transition: opacity 0.2s, transform 0.2s;
}

.city-video-item:hover .city-video-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.city-logos-section {
    background: #1f295e;
    padding: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.city-logos-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.city-logos-title {
    font-family: AvertaPEBold, sans-serif;
    font-size: 28px;
    color: #fff;
    margin-bottom: 40px;
}

.city-logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 48px 70px;
}

.city-logos-grid img {
    height: 65px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.city-logos-grid img:hover {
    opacity: 1;
}

/* ==========================================
   TRUST SECTION
   ========================================== */
.homepage-trust-section {
    background: #fff;
    padding: 60px 0;
    border-top: 1px solid #e2e8f0;
}

.homepage-trust-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.homepage-trust-stat {
    text-align: center;
}

.homepage-trust-number {
    font-family: AvertaPEBold, sans-serif;
    font-size: 42px;
    color: #1f295e;
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.homepage-trust-label {
    font-family: AvertaPE, sans-serif;
    font-size: 14px;
    color: #718096;
    display: block;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.city-faq-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 70px 20px;
}

.city-faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.city-faq-header h2 {
    font-family: AvertaPEBold, sans-serif;
    font-size: 40px;
    color: #1f295e;
}

.city-faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    overflow: hidden;
}

.city-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 28px;
    cursor: pointer;
    font-family: AvertaPESemiBold, sans-serif;
    font-size: 20px;
    color: #1f295e;
    transition: background 0.2s;
}

.city-faq-question:hover {
    background: #f8fafc;
}

.city-faq-icon {
    font-size: 28px;
    color: #47BB5C;
    font-weight: bold;
    transition: transform 0.2s;
}

.city-faq-item.open .city-faq-icon {
    transform: rotate(45deg);
}

.city-faq-answer {
    display: none;
    padding: 0 28px 26px;
}

.city-faq-item.open .city-faq-answer {
    display: block;
}

.city-faq-answer p {
    font-family: AvertaPE, sans-serif;
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
    margin: 0 0 16px;
}

.city-faq-answer a {
    color: #47BB5C;
    font-weight: 600;
    text-decoration: none;
}

/* ==========================================
   VIDEO MODAL
   ========================================== */
.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}

.video-modal-overlay.active {
    display: flex;
}

.video-modal-content {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 20px;
    max-width: 700px;
    width: 90%;
    position: relative;
}

.video-modal-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: #47BB5C;
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-title {
    color: #fff;
    text-align: center;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    font-family: AvertaPESemiBold, sans-serif;
}

.video-modal-body {
    position: relative;
    padding-top: 56.25%;
}

.video-modal-body iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* ==========================================
   RESPONSIVE - TABLET (1024px)
   ========================================== */
@media (max-width: 1024px) {
    .city-hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .city-hero-content {
        text-align: center;
        align-items: center;
    }
    
    .city-hero-image {
        max-height: 350px;
        margin: 0 auto;
    }
    
    .city-impact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .city-proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .city-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .city-step-card::after {
        display: none;
    }
    
    .city-samples-difference {
        flex-direction: column;
        text-align: center;
    }
    
    .city-distribution-grid {
        grid-template-columns: 1fr;
    }
    
    .city-resume-interactive {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   RESPONSIVE - MOBILE (768px)
   ========================================== */
@media (max-width: 768px) {
    .mobile-break { display: block; }
    .desktop-break { display: none; }
    
    /* HERO */
    .city-hero {
        padding: 30px 20px 40px;
    }
    
    .city-hero-inner {
        display: flex;
        flex-direction: column;
        gap: 24px;
        padding: 0;
    }
    
    .city-hero-content {
        text-align: center;
        align-items: center;
        width: 100%;
        padding: 0;
    }
    
    .city-hero-eyebrow {
        font-size: 13px;
        white-space: nowrap;
        letter-spacing: 1px;
    }
    
    .city-hero-headline {
        font-size: 32px;
        line-height: 1.15;
        margin-bottom: 12px;
    }
    
    .city-hero-headline .highlight {
        display: block;
        white-space: nowrap;
    }
    
    .city-hero-competition {
        font-size: 20px;
        margin-bottom: 10px;
        padding: 0 10px;
    }
    
    .city-hero-tagline {
        font-size: 22px;
        margin-bottom: 24px;
        padding: 0 10px;
    }
    
    /* CTA BUTTONS */
    .city-hero-cta {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 340px;
        gap: 12px;
        align-items: stretch;
    }
    
    .city-btn-listen-mobile {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 16px 24px;
        background: #1f295e;
        color: #fff;
        border-radius: 8px;
        font-family: AvertaPEBold, sans-serif;
        font-size: 16px;
        text-decoration: none;
        order: 1;
    }
    
    .city-btn-listen-mobile svg {
        flex-shrink: 0;
        width: 22px;
        height: 22px;
    }
    
    .city-btn-listen-mobile svg path {
        stroke: #47BB5C;
    }
    
    .city-hero-cta .btn-primary {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
        order: 2;
    }
    
    .city-hero-cta .btn-secondary {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
        background: #fff;
        border: 2px solid #47BB5C;
        color: #47BB5C;
        order: 3;
    }
    
    .city-hero-cta .btn-secondary:hover {
        background: #47BB5C;
        color: #fff;
    }
    
    .city-hero-right {
        display: none !important;
    }
    
    .city-hero-listen-overlay {
        display: none !important;
    }
    
    /* SECTIONS */
    .city-section {
        padding: 50px 20px;
    }
    
    .city-section-header h2 {
        font-size: 28px;
    }
    
    .city-problem-item {
        flex-direction: column;
        gap: 8px;
        padding: 20px;
    }
    
    .city-problem-icon-inline {
        display: none;
    }
    
    .city-problem-content h3 {
        font-size: 20px;
        margin-bottom: 6px;
    }
    
    .city-problem-content p {
        font-size: 15px;
    }
    
    .city-ats-subhead {
        text-align: left;
        padding-left: 20px;
    }
    
    .city-ats-subhead-2 {
        margin-top: 16px !important;
    }
    
    .city-ats-num {
        display: inline;
        font-weight: bold;
        color: #47BB5C;
        margin-right: 4px;
    }
    
    .city-impact-content h2 {
        font-size: 28px;
    }
    
    .city-example-row {
        grid-template-columns: 1fr;
        gap: 12px;
        display: none;
    }
    
    .city-examples-header + .city-example-row {
        display: grid;
    }
    
    .city-examples-full {
        padding: 20px;
    }
    
    .city-ex-bad,
    .city-ex-good {
        font-size: 15px;
        padding: 14px 16px;
    }
    
    .city-impact-cta {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .city-impact-cta .btn-primary,
    .city-impact-cta .btn-secondary {
        width: auto;
        min-width: 200px;
        padding: 14px 28px;
        text-align: center;
    }
    
    .city-proof-header h2 {
        font-size: 28px;
    }
    
    .city-proof-header {
        text-align: center;
    }
    
    .city-proof-quote-intro,
    .city-proof-quote-text {
        text-align: left;
        padding-left: 20px;
    }
    
    .city-proof-quote-card {
        text-align: left;
        padding: 0 20px;
    }
    
    .city-proof-grid {
        grid-template-columns: 1fr;
    }
    
    .city-proof-result-new {
        grid-template-columns: 1fr;
    }
    
    .city-proof-result-left,
    .city-proof-result-right {
        padding: 32px 24px;
    }
    
    .city-proof-result-left {
        text-align: center;
        align-items: center;
    }
    
    .city-proof-result-header {
        justify-content: center;
    }
    
    .city-proof-result-left h3 {
        font-size: 24px;
    }
    
    .city-steps-grid {
        grid-template-columns: 1fr;
    }
    
    /* Resume samples */
    .city-resume-interactive {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px;
    }
    
    .city-resume-header h2 {
        font-size: 26px;
        text-align: center;
    }
    
    .city-resume-header p {
        text-align: center;
        font-size: 15px;
    }
    
    .city-resume-left {
        order: 1 !important;
    }
    
    .city-resume-preview {
        order: 2 !important;
    }
    
    .city-resume-list {
        display: none !important;
    }
    
    .city-resume-dropdown {
        display: block !important;
        width: 100%;
    }
    
    .city-resume-dropdown select {
        width: 100%;
        padding: 14px 16px;
        font-family: AvertaPESemiBold, sans-serif;
        font-size: 16px;
        color: #1f295e;
        border: 2px solid #47BB5C;
        border-radius: 8px;
        background: #fff;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%231f295e' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        cursor: pointer;
    }
    
    .city-preview-frame img {
        max-height: 450px;
        width: 100%;
        object-fit: contain;
    }
    
    .city-nav-arrow {
        width: 36px;
        height: 36px;
    }
    
    .city-nav-arrow svg {
        width: 18px;
        height: 18px;
    }
    
    .city-samples-industries {
        text-align: center;
    }
    
    .city-samples-industries h4 {
        font-size: 16px;
    }
    
    .city-industry-link {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .city-samples-difference {
        padding: 24px 20px;
        text-align: center;
    }
    
    .city-samples-diff-content h3 {
        font-size: 20px;
    }
    
    .city-samples-diff-content p {
        font-size: 15px;
    }
    
    /* Markets */
    .homepage-competitive-titles h3,
    .homepage-industries h3,
    .homepage-cities-compact h3 {
        font-size: 20px;
    }
    
    .homepage-titles-grid {
        flex-direction: column;
        gap: 8px;
    }
    
    .homepage-title-card {
        min-width: 100%;
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        gap: 8px;
        padding: 12px 16px;
    }
    
    .homepage-industries-grid {
        flex-direction: column;
        gap: 8px;
    }
    
    .homepage-industry-pill {
        width: 100%;
        justify-content: space-between;
        padding: 10px 18px;
        font-size: 14px;
    }
    
    .homepage-cities-list {
        gap: 8px;
        justify-content: center;
    }
    
    .homepage-city-pill {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .city-distribution-features {
        grid-template-columns: 1fr;
    }
    
    .city-guarantee-features {
        flex-direction: column;
        gap: 16px;
    }
    
    .homepage-trust-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .homepage-trust-number {
        font-size: 32px;
    }
    
    .homepage-trust-label {
        font-size: 13px;
    }
    
    .city-faq-header h2 {
        font-size: 28px;
    }
    
    .city-faq-question {
        font-size: 18px;
        padding: 20px;
    }
    
    .city-faq-answer p {
        font-size: 16px;
    }
    
    .city-logos-grid img {
        height: 50px;
    }
    
    .city-reviews-header h2 {
        font-size: 28px;
    }
    
    .city-cta-headline {
        font-size: 24px;
    }
    
    .city-cta-subhead {
        font-size: 18px;
    }
    
    .callout-math {
        font-size: 18px;
    }
    
    .callout-result {
        font-size: 22px;
    }
    
    .callout-context,
    .callout-context-end {
        font-size: 16px;
    }
    
    .competition-badge {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .city-competition-legend {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}

/* ==========================================
   RESPONSIVE - SMALL MOBILE (576px)
   ========================================== */
@media (max-width: 576px) {
    .homepage-trust-inner {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .homepage-trust-number {
        font-size: 28px;
    }
    
    .homepage-industry-pill {
        width: 100%;
        justify-content: space-between;
    }
    
    .homepage-title-card {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .homepage-cities-list {
        flex-direction: column;
        align-items: stretch;
    }
    
    .homepage-city-pill {
        width: 100%;
        justify-content: space-between;
    }
    
    .city-logos-grid img {
        height: 40px;
    }
    
    .city-logos-grid {
        gap: 30px 40px;
    }
}

/* ==========================================
   EXECUTIVE FORMAT BADGE
   ========================================== */
.city-interview-badge-slot {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    min-height: 28px;
}

.city-interview-badge.executive-format {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffd700;
    border: 1px solid #ffd700;
}

.city-hero-competition a.highlight {
    color: #47BB5C;
    text-decoration: none;
}

.city-hero-competition a.highlight:hover {
    text-decoration: underline;
}

/* ========================================
   JOB MARKET SECTION: 912 HEADLINE + MATH BOX
   ======================================== */
.math-section {
    background: #fff;
    padding: 50px 20px 60px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.math-section-inner {
    max-width: 900px;
    margin: 0 auto;
}

.math-headline {
    font-family: AvertaPEBold, sans-serif;
    font-size: 42px;
    color: #1f295e;
    margin-bottom: 8px;
    line-height: 1.2;
}

.math-headline-sub {
    font-family: AvertaPEBold, sans-serif;
    font-size: 28px;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.3;
}

.math-box {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 40px;
    max-width: 700px;
    margin: 0 auto;
}

.math-box-title {
    font-family: AvertaPESemiBold, sans-serif;
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 24px;
}

.math-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.math-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.math-number {
    font-family: AvertaPEBold, sans-serif;
    font-size: 48px;
    color: #1f295e;
    line-height: 1;
}

.math-number.result {
    font-size: 56px;
    color: #47BB5C;
}

.math-label {
    font-family: AvertaPE, sans-serif;
    font-size: 14px;
    color: #718096;
    margin-top: 4px;
}

.math-operator {
    font-family: AvertaPEBold, sans-serif;
    font-size: 32px;
    color: #a0aec0;
}

.math-box-source {
    font-family: AvertaPE, sans-serif;
    font-size: 13px;
    color: #a0aec0;
    margin-top: 24px;
    font-style: italic;
}

.math-box-source a {
    color: #47BB5C;
    text-decoration: none;
}

.math-box-source a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .math-headline {
        font-size: 28px;
    }
    
    .math-headline-sub {
        font-size: 20px;
    }
    
    .math-box {
        padding: 24px 20px;
    }
    
    .math-number {
        font-size: 40px;
    }
    
    .math-number.result {
        font-size: 48px;
    }
    
    .math-operator {
        font-size: 24px;
    }
}