﻿/**
 * Industry Listing Page Styles
 * COMPLETE FIXED VERSION - All Mobile Issues Resolved
 * @version 3.1
 */

/* ==========================================
   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;
}

/* ==========================================
   BREADCRUMB
   ========================================== */
.sample-breadcrumb {
    background: #f8f9fc;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.sample-breadcrumb-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 14px;
    color: #666;
}

.sample-breadcrumb a {
    color: #1f295e;
    text-decoration: none;
}

.sample-breadcrumb a:hover {
    text-decoration: underline;
}

.sample-breadcrumb-sep {
    margin: 0 8px;
    color: #999;
}

.sample-breadcrumb-current {
    color: #888;
}

/* Mobile Back Link - Shows only on mobile */
.sample-mobile-back {
    display: none;
}

/* ==========================================
   HERO SECTION - Seattle City Page Style
   ========================================== */
.industry-hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 15px 0 30px;
    border-bottom: 1px solid #e2e8f0;
}

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

.sample-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0;
}

/* Google Reviews Badge - Simple (image already has stars) */
.industry-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    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;
}

.industry-hero-badge img {
    height: 20px;
    width: auto;
}

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

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

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

.industry-hero-competition a,
.industry-hero-competition .competition-number {
    color: #02c153;
    text-decoration: none;
}

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

/* Rejected/Overlooked Line - Bolder */
.industry-hero-rejected {
    font-family: AvertaPEBold, sans-serif;
    font-size: 17px;
    color: #1f295e;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.industry-hero-rejected .text-green,
.text-green {
    color: #02c153;
}

/* Mobile break - hidden on desktop */
.mobile-break {
    display: none;
}

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

/* CTA Buttons - Smaller to fit on one line */
.industry-hero-cta {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
}

.industry-hero-cta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 8px;
    font-family: AvertaPEBold, sans-serif;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s ease;
    gap: 8px;
    white-space: nowrap;
}

.industry-hero-cta .btn-listen {
    background: #1f295e;
    border: 2px solid #1f295e;
    color: #fff;
}

.industry-hero-cta .btn-listen:hover {
    background: #2a3a7d;
    border-color: #2a3a7d;
}

.industry-hero-cta .btn-listen svg {
    stroke: #fff;
    width: 18px;
    height: 18px;
}

.industry-hero-cta .btn-primary {
    background: #02c153;
    border: 2px solid #02c153;
    color: #fff;
}

.industry-hero-cta .btn-primary:hover {
    background: #01a347;
    border-color: #01a347;
}

.industry-hero-cta .btn-secondary {
    background: #fff;
    border: 2px solid #1f295e;
    color: #1f295e;
}

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

/* Hero Right - Image Area */
.industry-hero-right {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0;
}

.industry-hero-image-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* HERO PREVIEW */
.industry-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 340px;
}

.industry-preview-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.industry-preview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.industry-preview-card img {
    width: 100%;
    height: auto;
    display: block;
}

.industry-preview-title {
    padding: 10px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #1f295e;
    text-align: center;
    background: #f8f9fa;
    border-top: 1px solid #eee;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sample-view-full {
    font-family: AvertaPESemiBold, sans-serif;
    font-size: 15px;
    color: #02c153;
    text-decoration: none;
}

.sample-view-full:hover {
    text-decoration: underline;
}

/* ==========================================
   WHAT MAKES STRONG SECTION
   ========================================== */
.sample-glance-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #1f295e 0%, #2a3a7d 100%);
}

.sample-glance-inner {
    max-width: 900px;
    margin: 0 auto;
}

.sample-glance-box {
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.15);
}

.sample-glance-box h2 {
    font-size: 28px;
    color: #fff;
    margin: 0 0 12px 0;
}

.sample-glance-summary {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin: 0 0 24px 0;
}

.sample-glance-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.sample-glance-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #fff;
}

.sample-glance-icon {
    font-size: 24px;
    flex-shrink: 0;
}

/* ==========================================
   SAMPLES GRID SECTION
   ========================================== */
.industry-samples-section {
    padding: 80px 20px;
    background: #fff;
}

.industry-samples-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.sample-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.sample-section-header h2 {
    font-size: 32px;
    color: #1f295e;
    margin: 0 0 12px 0;
}

.sample-section-answer {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.industry-samples-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.industry-filter-group,
.industry-sort-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.industry-filter-group label,
.industry-sort-group label {
    font-weight: 600;
    color: #666;
    font-size: 14px;
}

.industry-filter-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.industry-filter-btn:hover {
    border-color: #1f295e;
    color: #1f295e;
}

.industry-filter-btn.active {
    background: #1f295e;
    border-color: #1f295e;
    color: #fff;
}

.industry-sort-group select {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    background: #fff;
}

.industry-samples-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.industry-sample-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
}

.industry-sample-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-color: #1f295e;
}

.industry-sample-image {
    aspect-ratio: 8.5 / 11;
    overflow: hidden;
    background: #f8f9fa;
}

.industry-sample-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.industry-sample-placeholder {
    aspect-ratio: 8.5 / 11;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #adb5bd;
}

.industry-sample-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid #eee;
}

.industry-sample-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: #1f295e;
    margin: 0;
    line-height: 1.3;
}

.industry-sample-cta {
    font-size: 14px;
    color: #02c153;
    font-weight: 600;
}

.industry-sample-card:hover .industry-sample-cta {
    text-decoration: underline;
}

.industry-sample-card.no-image .industry-sample-content {
    padding: 20px;
    border-top: none;
}

.industry-sample-card.no-image h3 {
    font-size: 18px;
}

/* ==========================================
   RELATED INDUSTRIES - BROWSE BY INDUSTRY
   ========================================== */
.sample-related-industries {
    margin-top: 60px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 16px;
    text-align: center;
}

.sample-related-industries h3 {
    font-size: 20px;
    color: #1f295e;
    margin: 0 0 25px 0;
}

.sample-related-industries ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.sample-related-industries li {
    margin: 0;
}

.sample-related-industries a {
    color: #1f295e;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 30px;
    transition: all 0.2s ease;
    display: inline-block;
    background: #fff;
    border: 1px solid #e2e8f0;
}

.sample-related-industries a:hover {
    background: #1f295e;
    color: #fff;
    border-color: #1f295e;
}

/* ==========================================
   PROOF SECTION - SEATTLE STYLE
   ========================================== */
.sample-proof-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.sample-proof-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.sample-proof-badge {
    display: inline-block;
    padding: 10px 24px;
    background: #1f295e;
    color: #fff;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.sample-proof-inner h2 {
    font-size: 42px;
    color: #1f295e;
    margin-bottom: 16px;
    line-height: 1.2;
}

.sample-proof-inner h2 .text-green {
    color: #02c153;
}

.sample-proof-intro {
    font-size: 20px;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto 8px;
}

.sample-proof-intro em {
    font-style: italic;
    color: #1f295e;
}

/* Quote intro styling */
.sample-proof-quote-intro {
    font-size: 20px;
    color: #4a5568;
    text-align: center;
    margin-bottom: 8px;
}

.sample-proof-quote-text {
    font-size: 20px;
    color: #1f295e;
    font-style: italic;
    text-align: center;
    margin-bottom: 40px;
}

/* PROOF CARDS - Match Seattle .city-proof-grid */
.sample-proof-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: left;
    margin-bottom: 48px;
    margin-top: 40px;
}

.sample-proof-card {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
}

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

.sample-proof-card.highlighted {
    border: 2px solid #02c153;
    background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%);
}

.sample-proof-num {
    font-size: 18px;
    font-weight: 700;
    color: #02c153;
    margin-right: 6px;
}

.sample-proof-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1f295e;
    margin: 0 0 12px 0;
    line-height: 1.3;
    display: inline;
}

.sample-proof-card p {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.6;
    margin: 12px 0 0 0;
    flex-grow: 1;
}

/* Quote inside card - Match Seattle's .city-proof-question */
.sample-proof-quote {
    display: block;
    background: #f8fafc;
    border-left: 3px solid #02c153;
    padding: 10px 14px;
    font-size: 13px;
    color: #1f295e;
    font-style: italic;
    border-radius: 0 8px 8px 0;
    margin-top: 16px;
}

/* ==========================================
   VIDEO TESTIMONIAL SECTION
   ========================================== */
.sample-video-section {
    padding: 80px 20px;
    background: #f8f9fc;
}

.sample-video-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.sample-video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.sample-video-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1f295e;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.sample-video-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.sample-video-thumbnail {
    position: relative;
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    aspect-ratio: 16 / 9;
    background: #000;
}

.sample-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.sample-video-thumbnail:hover img {
    transform: scale(1.03);
}

.sample-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f295e;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.sample-video-thumbnail:hover .sample-video-play {
    background: #02c153;
    color: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

.sample-video-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
}

/* ==========================================
   JOB MARKET SECTION
   ========================================== */
.sample-market-section {
    background: linear-gradient(135deg, #1f295e 0%, #2a3a7d 100%);
    padding: 80px 20px;
    color: #fff;
}

.sample-market-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.sample-market-section .sample-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.sample-market-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.sample-market-section .sample-section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
}

.sample-market-section .sample-section-answer {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* JOB MARKET STATS */
.sample-market-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 50px;
}

.sample-market-stat-box {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #eee;
}

.sample-market-stat-num {
    display: block;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.sample-market-stat-num.green {
    color: #02c153;
}

.sample-market-stat-label {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* COMPETITION CHARTS */
.sample-competition-charts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.sample-competition-chart {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #eee;
}

.sample-competition-chart h3 {
    font-size: 15px;
    font-weight: 600;
    color: #1f295e;
    margin: 0 0 24px 0;
}

.sample-competition-chart .chart-bars {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sample-competition-chart .chart-bar-row {
    display: grid;
    grid-template-columns: 140px 1fr 50px;
    align-items: center;
    gap: 12px;
}

.sample-competition-chart .chart-bar-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sample-competition-chart .chart-bar-track {
    height: 12px;
    background: #f0f0f0;
    border-radius: 6px;
    overflow: hidden;
}

.sample-competition-chart .chart-bar-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 0.5s ease;
}

.sample-competition-chart .chart-bar-fill.hard {
    background: linear-gradient(90deg, #e74c3c, #c0392b);
}

.sample-competition-chart .chart-bar-fill.easy {
    background: linear-gradient(90deg, #02c153, #019a43);
}

.sample-competition-chart .chart-bar-value {
    font-size: 14px;
    font-weight: 700;
    color: #1f295e;
    text-align: right;
}

.sample-chart-source {
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin: 20px 0 40px;
}

/* COMPETITION MATH */
.sample-competition-math {
    background: rgba(0,0,0,0.2);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.sample-math-intro {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin: 0 0 20px;
}

.sample-math-equation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.sample-math-part {
    background: rgba(255,255,255,0.15);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.sample-math-part.result {
    background: #02c153;
    color: #fff;
}

.sample-math-op {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.sample-math-text {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin: 0 0 10px;
}

.sample-math-highlight {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 25px;
}

.sample-competition-math .btn-white {
    background: #fff;
    color: #1f295e;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}

.sample-competition-math .btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* TOP CITIES */
.sample-cities-section {
    max-width: 900px;
    margin: 0 auto 40px;
}

.sample-cities-section h3 {
    font-size: 18px;
    color: #fff;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
}

.sample-cities-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.sample-city-card {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.15);
}

.sample-city-card .city-name {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.sample-city-card .city-competition {
    display: block;
    font-size: 15px;
    color: #02c153;
    font-weight: 700;
    margin-bottom: 4px;
}

.sample-city-card .city-jobs {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

/* ==========================================
   EMPLOYERS SECTION
   ========================================== */
.sample-employers-section {
    padding: 50px 20px;
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.sample-employers-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.sample-employers-title {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.sample-employers-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px 50px;
}

.sample-employer-text {
    font-size: 16px;
    font-weight: 600;
    color: #555;
    padding: 10px 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

/* ==========================================
   ATS / HOW IT WORKS SECTION
   ========================================== */
.sample-ats-section {
    padding: 80px 20px;
    background: #fff;
}

.sample-ats-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.sample-ats-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 50px 0;
    text-align: left;
}

.sample-ats-step {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sample-ats-step-num {
    width: 48px;
    height: 48px;
    background: #02c153;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.sample-ats-step-content h4 {
    font-size: 17px;
    color: #1f295e;
    margin: 0 0 8px 0;
}

.sample-ats-step-content p {
    font-size: 14px;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

.sample-ats-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.sample-ats-cta .btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sample-ats-cta .btn-primary {
    background: #02c153;
    color: #fff;
}

.sample-ats-cta .btn-primary:hover {
    background: #01a347;
}

.sample-ats-cta .btn-outline {
    background: #fff;
    border: 2px solid #1f295e;
    color: #1f295e;
}

.sample-ats-cta .btn-outline:hover {
    background: #1f295e;
    color: #fff;
}

/* ==========================================
   RECRUITERS SECTION - SEATTLE STYLE
   ========================================== */
.sample-recruiters-section {
    background: linear-gradient(135deg, #f8f9fc 0%, #e8eef6 100%);
    padding: 80px 20px;
}

.sample-recruiters-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.sample-recruiters-header {
    text-align: center;
    margin-bottom: 50px;
}

.sample-recruiters-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1f295e;
    margin: 0 0 16px 0;
}

.sample-recruiters-header p {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.sample-recruiters-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.sample-recruiters-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f295e;
    margin: 0 0 16px 0;
}

.sample-recruiters-info > p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.recruiter-types {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.recruiter-types li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #333;
}

.recruiter-types li svg {
    flex-shrink: 0;
}

.sample-recruiters-table-wrap {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.sample-recruiters-table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
}

.sample-recruiters-table-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1f295e;
    margin: 0;
}

.recruiter-total-badge {
    background: #e8f5e9;
    color: #02c153;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
}

.sample-recruiters-table {
    width: 100%;
    border-collapse: collapse;
}

.sample-recruiters-table thead th {
    text-align: left;
    padding: 14px 24px;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #f8f9fc;
    border-bottom: 1px solid #eee;
}

.sample-recruiters-table tbody td {
    padding: 16px 24px;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

.sample-recruiters-table tbody tr:last-child td {
    border-bottom: none;
}

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

.recruiter-agency-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.recruiter-name {
    font-weight: 600;
    color: #1f295e;
}

.recruiter-specialty {
    font-size: 13px;
    color: #888;
}

.recruiter-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1f295e, #2a3a7d);
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}

.recruiters-table-footer {
    padding: 16px 24px;
    font-size: 14px;
    color: #666;
    background: #f8f9fc;
    margin: 0;
}

.recruiters-table-footer a {
    color: #1f295e;
    font-weight: 600;
}

/* Featured Recruiters with Addresses */
.featured-recruiters {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 24px 0;
}

.featured-recruiter-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f8f9fc;
    border-radius: 12px;
    padding: 16px 20px;
    border: 1px solid #e5e7eb;
}

.featured-recruiter-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1f295e, #2a3a7d);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.featured-recruiter-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.featured-recruiter-name {
    font-weight: 700;
    font-size: 16px;
    color: #1f295e;
}

.featured-recruiter-address {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* ==========================================
   CTA BANNER
   ========================================== */
.sample-cta-banner {
    background: linear-gradient(135deg, #1f295e 0%, #2a3a7d 100%);
    padding: 50px 20px;
}

.sample-cta-banner-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.sample-cta-banner-content h3 {
    font-size: 28px;
    color: #fff;
    margin: 0 0 8px 0;
}

.sample-cta-banner-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

.sample-cta-banner-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sample-cta-banner-actions .btn-white {
    background: #02c153;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sample-cta-banner-actions .btn-white:hover {
    background: #01a347;
    transform: translateY(-2px);
}

.sample-cta-or {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.sample-cta-phone-white {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}

.sample-cta-phone-white:hover {
    text-decoration: underline;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.sample-faq-section {
    padding: 80px 20px;
    background: #fff;
}

.sample-faq-inner {
    max-width: 800px;
    margin: 0 auto;
}

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

.sample-faq-header h2 {
    font-size: 32px;
    color: #1f295e;
    margin: 0;
}

.sample-faq-item {
    border-bottom: 1px solid #eee;
}

.sample-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 17px;
    font-weight: 600;
    color: #1f295e;
    cursor: pointer;
    margin: 0;
}

.sample-faq-icon {
    font-size: 24px;
    color: #02c153;
    transition: transform 0.2s ease;
}

.sample-faq-item.active .sample-faq-icon {
    transform: rotate(45deg);
}

.sample-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.sample-faq-item.active .sample-faq-answer {
    max-height: 500px;
}

.sample-faq-answer div {
    padding: 0 0 20px 0;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.sample-faq-answer p {
    margin: 0 0 12px 0;
}

.sample-faq-answer p:last-child {
    margin-bottom: 0;
}

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

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

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    z-index: 10;
}

.video-modal-close:hover {
    color: #02c153;
}

#videoContainer {
    width: 100%;
    height: 100%;
}

#videoContainer iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================
   RESPONSIVE - TABLET (1200px)
   ========================================== */
@media (max-width: 1200px) {
    .industry-samples-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .sample-proof-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sample-cities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================
   RESPONSIVE - TABLET (1024px)
   ========================================== */
@media (max-width: 1024px) {
    .sample-hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .sample-hero-content {
        text-align: center;
        align-items: center;
    }
    
    .industry-hero-badge {
        justify-content: center;
    }
    
    .industry-hero-right {
        display: none;
    }
    
    .industry-samples-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .sample-proof-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sample-cities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .sample-market-stats-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .sample-market-stat-num {
        font-size: 36px;
    }
    
    .sample-proof-inner h2 {
        font-size: 32px;
    }
    
    .sample-recruiters-layout {
        grid-template-columns: 1fr;
    }
    
    .recruiter-types {
        grid-template-columns: 1fr 1fr;
    }
    
    .sample-ats-process {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sample-glance-points {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   RESPONSIVE - TABLET (900px)
   ========================================== */
@media (max-width: 900px) {
    .industry-samples-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .sample-competition-charts {
        grid-template-columns: 1fr;
    }
    
    .sample-proof-cards {
        grid-template-columns: 1fr 1fr;
    }
    
    .sample-cities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .chart-bar-row {
        grid-template-columns: 120px 1fr 40px;
    }
}

/* ==========================================
   RESPONSIVE - MOBILE (768px)
   ========================================== */
@media (max-width: 768px) {
    
    /* Show mobile break */
    .mobile-break {
        display: block;
    }
    
    /* ------------------------------------------
       MOBILE BACK LINK
       ------------------------------------------ */
    .sample-mobile-back {
        display: block;
        background: #f8f9fc;
        border-bottom: 1px solid #eee;
        padding: 12px 20px;
    }
    
    .sample-mobile-back a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #1f295e;
        font-family: AvertaPESemiBold, sans-serif;
        font-size: 14px;
        text-decoration: none;
    }
    
    .sample-mobile-back a:hover {
        text-decoration: underline;
    }
    
    .sample-mobile-back a svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }
    
    /* ------------------------------------------
       HERO SECTION - MOBILE
       ------------------------------------------ */
    .industry-hero {
        padding: 10px 20px 25px;
    }
    
    .sample-hero-inner {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 15px 20px 0 20px;
    }
    
    .sample-hero-content {
        text-align: center;
        align-items: center;
    }
    
    /* Google Reviews Badge - Green pill border like main page */
    .industry-hero-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: #fff;
        border: 2px solid #02c153;
        border-radius: 50px;
        padding: 12px 24px;
        font-size: 16px;
        color: #1f295e;
        font-family: AvertaPESemiBold, sans-serif;
        margin-bottom: 20px;
    }
    
    .industry-hero-badge img {
        height: 20px;
        width: auto;
    }
    
    /* Eyebrow */
    .industry-hero-eyebrow {
        font-size: 13px;
        font-family: AvertaPESemiBold, sans-serif;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #1f295e;
        margin-bottom: 16px;
    }
    
    .industry-hero-headline {
        font-size: 28px;
    }
    
    .industry-hero-competition {
        font-size: 18px;
    }
    
    /* Rejected text */
    .industry-hero-rejected {
        font-size: 20px;
        font-family: AvertaPEBold, sans-serif;
        text-transform: none;
        letter-spacing: 0;
        line-height: 1.3;
    }
    
    /* Ensure green text stays green */
    .industry-hero-rejected .text-green,
    .text-green {
        color: #02c153 !important;
    }
    
    .industry-hero-tagline {
        font-size: 20px;
        font-family: AvertaPEBold, sans-serif;
        margin-bottom: 24px;
    }
    
    /* CTA Buttons - Full width stacked */
    .industry-hero-cta {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 380px;
        gap: 12px;
    }
    
    .industry-hero-cta .btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    
    /* Listen button - Dark blue filled */
    .industry-hero-cta .btn-listen {
        background: #1f295e;
        border: 2px solid #1f295e;
        color: #fff;
        order: 1;
    }
    
    .industry-hero-cta .btn-listen svg {
        width: 20px;
        height: 20px;
        stroke: #fff;
    }
    
    /* Take Our Quiz - Green filled */
    .industry-hero-cta .btn-primary {
        background: #02c153;
        border: 2px solid #02c153;
        color: #fff;
        order: 2;
    }
    
    /* Let's Talk - White with green border */
    .industry-hero-cta .btn-secondary {
        background: #fff;
        border: 2px solid #02c153;
        color: #02c153;
        order: 3;
    }
    
    .industry-hero-right {
        display: none;
    }
    
    /* Breadcrumb */
    .sample-breadcrumb-inner {
        font-size: 13px;
    }
    
    /* ------------------------------------------
       WHAT MAKES STRONG SECTION
       ------------------------------------------ */
    .sample-glance-section {
        padding: 30px 15px;
        background: linear-gradient(135deg, #1f295e 0%, #2a3a7d 100%);
    }
    
    .sample-glance-box {
        padding: 25px 20px;
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.15);
    }
    
    .sample-glance-box h2 {
        font-size: 20px;
        color: #fff;
    }
    
    .sample-glance-summary {
        font-size: 14px;
        color: rgba(255,255,255,0.85);
    }
    
    .sample-glance-points {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }
    
    .sample-glance-point {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 14px;
        color: #fff;
    }
    
    .sample-glance-icon {
        font-size: 20px;
        flex-shrink: 0;
    }
    
    /* ------------------------------------------
       SAMPLES SECTION
       ------------------------------------------ */
    .industry-samples-section {
        padding: 40px 15px;
    }
    
    .sample-section-header h2 {
        font-size: 24px;
    }
    
    .sample-section-answer {
        font-size: 15px;
    }
    
    .industry-samples-filters {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        padding: 15px;
        margin-bottom: 25px;
    }
    
    .industry-filter-group {
        flex-wrap: wrap;
    }
    
    .industry-samples-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .industry-sample-card {
        border-radius: 10px;
    }
    
    .industry-sample-card h3 {
        font-size: 13px;
    }
    
    .industry-sample-content {
        padding: 12px;
    }
    
    .industry-sample-cta {
        font-size: 12px;
    }
    
    /* ------------------------------------------
       RELATED INDUSTRIES
       ------------------------------------------ */
    .sample-related-industries {
        margin-top: 40px;
        padding: 30px 20px;
        background: #f8f9fa;
        border-radius: 12px;
        text-align: center;
    }
    
    .sample-related-industries h3 {
        font-size: 18px;
        color: #1f295e;
        margin: 0 0 20px 0;
    }
    
    .sample-related-industries ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .sample-related-industries a {
        display: inline-block;
        color: #1f295e;
        text-decoration: none;
        font-weight: 500;
        font-size: 13px;
        padding: 10px 16px;
        border-radius: 25px;
        background: #fff;
        border: 1px solid #e2e8f0;
        transition: all 0.2s ease;
    }
    
    .sample-related-industries a:hover,
    .sample-related-industries a:active {
        background: #1f295e;
        color: #fff;
        border-color: #1f295e;
    }
    
    /* ------------------------------------------
       PROOF SECTION
       ------------------------------------------ */
    .sample-proof-section {
        padding: 40px 20px;
        background: #f8f9fa;
    }
    
    .sample-proof-badge {
        display: inline-block;
        padding: 10px 20px;
        background: #1f295e;
        color: #fff;
        border-radius: 30px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 16px;
    }
    
    .sample-proof-inner h2 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 16px;
    }
    
    .sample-proof-inner h2 .text-green {
        color: #02c153 !important;
    }
    
    .sample-proof-intro {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .sample-proof-intro em {
        font-style: italic;
        display: block;
        margin-top: 8px;
    }
    
    /* Proof Cards - Stack vertically with card styling */
    .sample-proof-cards {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: 30px;
    }
    
    .sample-proof-card {
        background: #fff;
        padding: 20px;
        border-radius: 12px;
        border: 1px solid #e2e8f0;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    
    .sample-proof-card.highlighted {
        border: 2px solid #02c153;
        background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%);
    }
    
    .sample-proof-num {
        font-size: 16px;
        font-weight: 700;
        color: #02c153;
        display: inline;
    }
    
    .sample-proof-card h3 {
        font-size: 18px;
        font-weight: 700;
        color: #1f295e;
        margin: 0 0 10px 0;
        display: inline;
    }
    
    .sample-proof-card p {
        color: #4a5568;
        font-size: 14px;
        line-height: 1.6;
        margin: 10px 0 0 0;
    }
    
    .sample-proof-quote {
        display: block;
        background: #f8fafc;
        border-left: 3px solid #02c153;
        padding: 10px 14px;
        font-size: 13px;
        color: #1f295e;
        font-style: italic;
        border-radius: 0 8px 8px 0;
        margin-top: 12px;
    }
    
    /* ------------------------------------------
       VIDEO SECTION
       ------------------------------------------ */
    .sample-video-section {
        padding: 40px 20px;
    }
    
    .sample-video-grid {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
    
    .sample-video-content {
        text-align: center;
    }
    
    .sample-video-content h2 {
        font-size: 22px;
    }
    
    .sample-video-content p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    /* ------------------------------------------
       JOB MARKET SECTION
       ------------------------------------------ */
    .sample-market-section {
        padding: 40px 15px;
    }
    
    .sample-market-badge {
        display: inline-block;
        background: rgba(255,255,255,0.15);
        color: #fff;
        font-size: 12px;
        font-weight: 600;
        padding: 8px 16px;
        border-radius: 20px;
        margin-bottom: 16px;
    }
    
    .sample-market-section .sample-section-header h2 {
        font-size: 24px;
        color: #fff;
    }
    
    .sample-market-section .sample-section-answer {
        font-size: 15px;
        color: rgba(255,255,255,0.85);
    }
    
    /* Stats Row - Stack vertically with card styling */
    .sample-market-stats-row {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin: 30px 0;
    }
    
    .sample-market-stat-box {
        background: #fff;
        border-radius: 12px;
        padding: 20px;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    .sample-market-stat-num {
        display: block;
        font-size: 36px;
        font-weight: 700;
        color: #02c153;
        line-height: 1;
        margin-bottom: 8px;
    }
    
    .sample-market-stat-num.green {
        color: #02c153;
    }
    
    .sample-market-stat-label {
        font-size: 14px;
        color: #666;
        line-height: 1.3;
    }
    
    /* Competition Charts */
    .sample-competition-charts {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin: 30px 0;
    }
    
    .sample-competition-chart {
        background: #fff;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    .sample-competition-chart h3 {
        font-size: 14px;
        font-weight: 600;
        color: #1f295e;
        margin: 0 0 16px 0;
    }
    
    .sample-competition-chart .chart-bars {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .sample-competition-chart .chart-bar-row {
        display: grid;
        grid-template-columns: 100px 1fr 40px;
        align-items: center;
        gap: 10px;
    }
    
    .sample-competition-chart .chart-bar-label {
        font-size: 12px;
        font-weight: 600;
        color: #333;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .sample-competition-chart .chart-bar-track {
        height: 10px;
        background: #f0f0f0;
        border-radius: 5px;
        overflow: hidden;
    }
    
    .sample-competition-chart .chart-bar-fill {
        height: 100%;
        border-radius: 5px;
    }
    
    .sample-competition-chart .chart-bar-value {
        font-size: 12px;
        font-weight: 700;
        color: #1f295e;
        text-align: right;
    }
    
    /* Cities Grid */
    .sample-cities-section {
        margin: 30px 0;
    }
    
    .sample-cities-section h3 {
        font-size: 16px;
        color: #fff;
        text-align: center;
        margin-bottom: 16px;
    }
    
    .sample-cities-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .sample-city-card {
        background: rgba(255,255,255,0.1);
        border-radius: 10px;
        padding: 14px 10px;
        text-align: center;
        border: 1px solid rgba(255,255,255,0.15);
    }
    
    .sample-city-card .city-name {
        display: block;
        font-size: 14px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 4px;
    }
    
    .sample-city-card .city-competition {
        display: block;
        font-size: 13px;
        color: #02c153;
        font-weight: 600;
    }
    
    .sample-city-card .city-jobs {
        display: block;
        font-size: 11px;
        color: rgba(255,255,255,0.7);
        margin-top: 2px;
    }
    
    /* Chart source */
    .sample-chart-source {
        font-size: 11px;
        margin: 15px 0 20px;
    }
    
    /* Competition Math */
    .sample-competition-math {
        background: rgba(0,0,0,0.2);
        border-radius: 12px;
        padding: 25px 15px;
        text-align: center;
        margin-top: 30px;
    }
    
    .sample-math-intro {
        font-size: 14px;
    }
    
    .sample-math-equation {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin: 20px 0;
    }
    
    .sample-math-part {
        background: rgba(255,255,255,0.15);
        padding: 12px 16px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        color: #fff;
    }
    
    .sample-math-part.result {
        background: #02c153;
    }
    
    .sample-math-op {
        font-size: 18px;
        font-weight: 700;
        color: #fff;
    }
    
    .sample-math-text {
        font-size: 14px;
    }
    
    .sample-math-highlight {
        font-size: 16px;
    }
    
    .sample-competition-math .btn-white {
        width: 100%;
        text-align: center;
    }
    
    /* ------------------------------------------
       EMPLOYERS SECTION
       ------------------------------------------ */
    .sample-employers-section {
        padding: 30px 20px;
    }
    
    .sample-employers-title {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .sample-employers-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .sample-employer-text {
        font-size: 13px;
        padding: 12px;
        background: #f8f9fa;
        border-radius: 8px;
        text-align: center;
    }
    
    /* ------------------------------------------
       ATS / HOW IT WORKS SECTION
       ------------------------------------------ */
    .sample-ats-section {
        padding: 40px 20px;
    }
    
    .sample-ats-inner .sample-section-header h2 {
        font-size: 22px;
    }
    
    .sample-ats-process {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin: 30px 0;
    }
    
    .sample-ats-step {
        display: flex;
        flex-direction: row;
        gap: 15px;
        align-items: flex-start;
    }
    
    .sample-ats-step-num {
        width: 40px;
        height: 40px;
        background: #02c153;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        font-weight: 700;
        flex-shrink: 0;
    }
    
    .sample-ats-step-content h4 {
        font-size: 16px;
        margin: 0 0 6px 0;
        color: #1f295e;
    }
    
    .sample-ats-step-content p {
        font-size: 14px;
        margin: 0;
        color: #555;
    }
    
    .sample-ats-cta {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 30px;
    }
    
    .sample-ats-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    /* ------------------------------------------
       RECRUITERS SECTION
       ------------------------------------------ */
    .sample-recruiters-section {
        padding: 40px 20px;
    }
    
    .sample-recruiters-header h2 {
        font-size: 24px;
    }
    
    .sample-recruiters-header p {
        font-size: 15px;
    }
    
    .sample-recruiters-layout {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .sample-recruiters-info h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    /* Recruiter Types List */
    .recruiter-types {
        list-style: none;
        padding: 0;
        margin: 20px 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .recruiter-types li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        color: #333;
    }
    
    .recruiter-types li svg {
        flex-shrink: 0;
        width: 18px;
        height: 18px;
    }
    
    /* Featured Recruiter Cards */
    .featured-recruiters {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin: 20px 0;
    }
    
    .featured-recruiter-card {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        background: #f8f9fc;
        border-radius: 10px;
        padding: 14px;
        border: 1px solid #e5e7eb;
    }
    
    .featured-recruiter-avatar {
        width: 44px;
        height: 44px;
        background: linear-gradient(135deg, #1f295e, #2a3a7d);
        color: #fff;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 700;
        flex-shrink: 0;
    }
    
    .featured-recruiter-info {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
    
    .featured-recruiter-name {
        font-weight: 700;
        font-size: 15px;
        color: #1f295e;
    }
    
    .featured-recruiter-address {
        font-size: 13px;
        color: #666;
        line-height: 1.4;
    }
    
    /* Recruiters Table */
    .sample-recruiters-table-wrap {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.08);
        overflow: hidden;
    }
    
    .sample-recruiters-table-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px;
        border-bottom: 1px solid #eee;
    }
    
    .sample-recruiters-table-header h4 {
        font-size: 16px;
        font-weight: 700;
        color: #1f295e;
        margin: 0;
    }
    
    .recruiter-total-badge {
        background: #e8f5e9;
        color: #02c153;
        font-size: 12px;
        font-weight: 600;
        padding: 4px 10px;
        border-radius: 20px;
    }
    
    .sample-recruiters-table thead th {
        text-align: left;
        padding: 12px 16px;
        font-size: 11px;
        font-weight: 600;
        color: #666;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        background: #f8f9fc;
        border-bottom: 1px solid #eee;
    }
    
    .sample-recruiters-table tbody td {
        padding: 12px 16px;
        font-size: 13px;
        color: #333;
        border-bottom: 1px solid #f0f0f0;
        vertical-align: middle;
    }
    
    .recruiter-avatar {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }
    
    .recruiter-name {
        font-size: 13px;
    }
    
    .recruiter-specialty {
        font-size: 11px;
    }
    
    .recruiters-table-footer {
        padding: 12px 16px;
        font-size: 12px;
    }
    
    /* ------------------------------------------
       CTA BANNER
       ------------------------------------------ */
    .sample-cta-banner {
        padding: 30px 20px;
    }
    
    .sample-cta-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .sample-cta-banner-content h3 {
        font-size: 20px;
    }
    
    .sample-cta-banner-content p {
        font-size: 15px;
    }
    
    .sample-cta-banner-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .sample-cta-banner-actions .btn-white {
        width: 100%;
    }
    
    /* ------------------------------------------
       FAQ SECTION
       ------------------------------------------ */
    .sample-faq-section {
        padding: 40px 20px;
    }
    
    .sample-faq-header h2 {
        font-size: 22px;
    }
    
    .sample-faq-question {
        font-size: 15px;
        padding: 16px 0;
    }
    
    .sample-faq-answer div {
        font-size: 14px;
    }
}

/* ==========================================
   SMALL MOBILE (480px and below)
   ========================================== */
@media (max-width: 480px) {
    
    .industry-hero-headline {
        font-size: 24px;
    }
    
    .industry-hero-competition {
        font-size: 16px;
    }
    
    .industry-hero-rejected {
        font-size: 18px;
    }
    
    .industry-hero-tagline {
        font-size: 18px;
    }
    
    .industry-hero-badge {
        font-size: 14px;
        padding: 10px 18px;
    }
    
    .sample-market-stat-num {
        font-size: 32px;
    }
    
    .sample-competition-chart .chart-bar-row {
        grid-template-columns: 80px 1fr 35px;
    }
    
    .sample-competition-chart .chart-bar-label {
        font-size: 11px;
    }
    
    .sample-related-industries a {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .sample-proof-inner h2 {
        font-size: 20px;
    }
    
    .sample-proof-card {
        padding: 16px;
    }
    
    .sample-proof-card h3 {
        font-size: 16px;
    }
}

/* ==========================================
   HIDE STICKY FOOTER BAR ON MOBILE
   ========================================== */
@media (max-width: 768px) {
    .sticky-footer-cta,
    .sticky-cta-bar,
    .mobile-sticky-cta,
    .sample-sticky-cta,
    [class*="sticky"][class*="footer"],
    [class*="sticky"][class*="cta"] {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        opacity: 0 !important;
    }
    
    body {
        padding-bottom: 0 !important;
    }
}
/* Google Review Badge for Industry Pages */
.sample-hero .city-hero-badge,
.industry-hero .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;
}

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