/* ==========================================================================
   Roots Research Private Limited - Premium Design System
   ========================================================================== */

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

:root {
    /* Color Palette - Premium Corporate (Navy, Teal, Gold) */
    --primary: #0f172a;          /* Slate Navy */
    --primary-light: #1e293b;    /* Slate Dark Gray */
    --accent-teal: #0d9488;      /* Deep Teal */
    --accent-teal-light: #14b8a6;/* Bright Teal */
    --accent-gold: #d97706;      /* Amber / Muted Gold */
    --accent-gold-light: #f59e0b;/* Bright Amber */
    
    /* Backgrounds */
    --bg-main: #f8fafc;          /* Off-white / Ice Slate */
    --bg-card: #ffffff;
    --bg-header: rgba(248, 250, 252, 0.8);
    --bg-footer: #0b0f19;        /* Extra Dark Slate */
    
    /* Text Colors */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-white: #ffffff;
    
    /* Borders & Accents */
    --border-color: #e2e8f0;
    --border-light: rgba(255, 255, 255, 0.08);
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -1px rgba(15, 23, 42, 0.03);
    --shadow-lg: 0 10px 25px -5px rgba(15, 23, 42, 0.05), 0 8px 10px -6px rgba(15, 23, 42, 0.03);
    --shadow-xl: 0 25px 50px -12px rgba(15, 23, 42, 0.08);
    --shadow-teal: 0 10px 15px -3px rgba(13, 148, 136, 0.15);
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-accent: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    --gradient-gold: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    --gradient-subtle: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    
    /* Font Stacks */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-title: 'Outfit', var(--font-sans);
    
    /* Layout Configurations */
    --header-height: 80px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --container-max: 1200px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Base Styles & Reset
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Common Layout Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 7rem 0;
    position: relative;
}

/* Background Grid Pattern */
.bg-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(13, 148, 136, 0.05) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    z-index: 0;
    pointer-events: none;
}

/* ==========================================================================
   Typography & Sections
   ========================================================================== */

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
    z-index: 1;
    position: relative;
}

.section-tag {
    font-family: var(--font-title);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-teal);
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: inline-block;
    background-color: rgba(13, 148, 136, 0.08);
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* Accent Highlight */
.text-accent {
    color: var(--accent-teal);
}

.text-gold {
    color: var(--accent-gold);
}

/* ==========================================================================
   Buttons & UI Elements
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background-color: var(--accent-teal);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--accent-teal-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-teal);
}

.btn-secondary {
    background-color: var(--primary);
    color: var(--text-white);
}

.btn-secondary:hover {
    background-color: var(--accent-teal);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--accent-teal);
    color: var(--accent-teal);
    background-color: rgba(13, 148, 136, 0.03);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--text-white);
    color: var(--primary);
}

.btn-white:hover {
    background-color: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.header {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translate(-50%, -40px);
    width: calc(100% - 2rem);
    max-width: var(--container-max);
    height: 70px;
    background-color: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    z-index: 100;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    opacity: 0;
    animation: slideDownHeader 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.header .btn {
    padding: 0.4rem 1.1rem !important;
    font-size: 0.8rem !important;
    border-radius: var(--radius-full) !important;
}

.header.scrolled {
    top: 0.75rem;
    height: 65px;
    background-color: rgba(255, 255, 255, 0.85);
    border-color: rgba(226, 232, 240, 0.8);
    box-shadow: 0 10px 35px -5px rgba(15, 23, 42, 0.1), 0 4px 6px -4px rgba(15, 23, 42, 0.05);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.75rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 42px;
    width: auto;
    display: block;
    transition: all var(--transition-normal);
}

.header.scrolled .logo-img {
    height: 36px;
}

.footer-logo-img {
    height: 52px;
    width: auto;
    display: block;
    margin-bottom: 1.25rem;
    filter: brightness(0) invert(1);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-title);
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-normal);
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-teal-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-teal-light);
    transition: var(--transition-normal);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header.scrolled .nav-link {
    color: var(--text-secondary);
}

.header.scrolled .nav-link:hover, .header.scrolled .nav-link.active {
    color: var(--accent-teal);
}

.header.scrolled .nav-link::after {
    background-color: var(--accent-teal);
}

.nav-actions {
    display: flex;
    align-items: center;
}

/* Mobile Toggle Hamburger */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 110;
}

.mobile-nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-white);
    position: absolute;
    transition: var(--transition-normal);
}

.header.scrolled .mobile-nav-toggle span {
    background-color: var(--primary);
}

.mobile-nav-toggle span:nth-child(1) { top: 0; }
.mobile-nav-toggle span:nth-child(2) { top: 9px; }
.mobile-nav-toggle span:nth-child(3) { top: 18px; }

.mobile-nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.mobile-nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

.mobile-nav-toggle.open span {
    background-color: var(--primary);
}

/* Mobile menu drawer */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-card);
    box-shadow: var(--shadow-xl);
    z-index: 105;
    padding: 6rem 2rem 2rem 2rem;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu ul li a {
    font-family: var(--font-title);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
}

.mobile-menu-actions {
    margin-top: auto;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    z-index: 102;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
}

.overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* ==========================================================================
   Home Hero Section
   ========================================================================== */

.hero {
    background: var(--gradient-hero);
    color: var(--text-white);
    padding: 10rem 0 8rem 0;
    position: relative;
    overflow: hidden;
}

.hero .bg-grid-overlay {
    background-image: radial-gradient(rgba(20, 184, 166, 0.08) 1.5px, transparent 1.5px);
}

.hero::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    background-color: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.2);
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-teal-light);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hero-badge span {
    color: var(--text-white);
}

.hero-title {
    font-size: 3.5rem;
    color: var(--text-white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-title span {
    background: linear-gradient(to right, var(--accent-teal-light), var(--accent-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 2.5rem;
    max-width: 650px;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-svg-illustration {
    width: 100%;
    max-width: 420px;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
    animation: floatAnim 6s ease-in-out infinite;
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* ==========================================================================
   Home Info & Content Sections
   ========================================================================== */

.intro-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text-block {
    position: relative;
}

.intro-image-block {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.intro-image-block svg {
    background-color: var(--primary);
    width: 100%;
    height: auto;
}

/* Stat Grid */
.stat-section {
    background-color: var(--primary);
    color: var(--text-white);
    padding: 5rem 0;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: var(--font-title);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-teal-light);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* Pillars grid */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.pillar-card {
    background-color: var(--bg-card);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: transparent;
    transition: var(--transition-normal);
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.pillar-card:hover::before {
    background-color: var(--accent-teal);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    background-color: rgba(13, 148, 136, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-teal);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.pillar-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.pillar-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.pillar-link {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent-teal);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.pillar-link:hover {
    color: var(--accent-teal-light);
}

.pillar-link svg {
    transition: var(--transition-fast);
}

.pillar-link:hover svg {
    transform: translateX(4px);
}

/* ==========================================================================
   Methodology & Service Details
   ========================================================================== */

.subpage-hero {
    background: var(--gradient-hero);
    color: var(--text-white);
    padding: 7rem 0 5rem 0;
    text-align: center;
}

.subpage-hero .section-tag {
    background-color: rgba(20, 184, 166, 0.1);
    color: var(--accent-teal-light);
    border: 1px solid rgba(20, 184, 166, 0.2);
}

.subpage-hero h1 {
    color: var(--text-white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.subpage-hero p {
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.15rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: center;
}

/* Methodology Details Card */
.methodology-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.methodology-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-teal);
}

.methodology-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.methodology-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(13, 148, 136, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-teal);
    font-size: 1.25rem;
}

.methodology-card-title {
    font-size: 1.25rem;
    color: var(--primary);
}

.methodology-card-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ==========================================================================
   Recruitment Page Details
   ========================================================================== */

.recruitment-audience-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.recruitment-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
    border-bottom: 2px solid rgba(13, 148, 136, 0.2);
    padding-bottom: 0.5rem;
}

.recruitment-list {
    margin-top: 1.5rem;
}

.recruitment-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.recruitment-list li svg {
    color: var(--accent-teal);
    flex-shrink: 0;
}

/* ==========================================================================
   Process Page: Step-by-Step Flow
   ========================================================================== */

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 3rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 1rem;
    width: 2px;
    height: 100%;
    background-color: var(--border-color);
}

.process-step {
    position: relative;
    margin-bottom: 3.5rem;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step-num {
    position: absolute;
    left: calc(-3rem + 2px);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--accent-teal);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 0 0 5px var(--bg-main);
}

.process-step-content {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.process-step-content:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent-teal);
}

.process-step-title {
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.process-step-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ==========================================================================
   Coverage Page / Interactive SVG Map
   ========================================================================== */

.coverage-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.map-container {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.india-map-svg {
    width: 100%;
    max-height: 520px;
}

.map-pin {
    cursor: pointer;
    transition: var(--transition-normal);
}

.map-pin circle {
    fill: var(--accent-teal);
    stroke: var(--text-white);
    stroke-width: 2px;
    transition: var(--transition-normal);
}

.map-pin text {
    font-family: var(--font-title);
    font-size: 11px;
    font-weight: 700;
    fill: var(--primary);
    opacity: 0;
    transition: var(--transition-normal);
    pointer-events: none;
}

.map-pin:hover circle, .map-pin.active circle {
    fill: var(--accent-gold);
    r: 10;
    filter: drop-shadow(0 0 8px rgba(217, 119, 6, 0.6));
}

.map-pin:hover text, .map-pin.active text {
    opacity: 1;
}

.coverage-details {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.coverage-details-hub {
    display: none;
    animation: fadeIn 0.4s ease-in-out forwards;
}

.coverage-details-hub.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.hub-title {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hub-title span {
    font-size: 0.85rem;
    background-color: rgba(13, 148, 136, 0.08);
    color: var(--accent-teal);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

.hub-desc {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.hub-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.hub-spec-item {
    background-color: var(--bg-main);
    padding: 1rem;
    border-radius: var(--radius-sm);
}

.hub-spec-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.hub-spec-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
}

/* ==========================================================================
   Contact Page & Form Layout
   ========================================================================== */

.contact-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
}

.contact-info-panel {
    background-color: var(--primary);
    color: var(--text-white);
    padding: 4rem 3rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.contact-info-panel::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.15) 0%, transparent 70%);
}

.contact-info-panel h3 {
    color: var(--text-white);
    font-size: 1.85rem;
    margin-bottom: 1.5rem;
}

.contact-info-list {
    margin: 2.5rem 0;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-teal-light);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-size: 0.95rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.contact-info-text p {
    font-size: 1.05rem;
    color: var(--text-white);
}

.contact-why-list {
    font-size: 0.85rem;
    color: #94a3b8;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rfq-form-container {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 3.5rem;
    box-shadow: var(--shadow-md);
}

.form-title {
    font-size: 1.85rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.form-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-family: var(--font-title);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1.15rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background-color: #fafafa;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-teal);
    background-color: var(--bg-card);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    margin-top: 1.5rem;
}

/* Form success message */
.form-success-alert {
    display: none;
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #065f46;
    padding: 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 2rem;
    font-weight: 500;
}

/* ==========================================================================
   Home FAQ Accordion & Testimonials
   ========================================================================== */

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

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item.open {
    border-color: var(--accent-teal);
    box-shadow: var(--shadow-sm);
}

.faq-question-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
}

.faq-icon-svg {
    transition: var(--transition-normal);
    color: var(--text-muted);
}

.faq-item.open .faq-icon-svg {
    transform: rotate(180deg);
    color: var(--accent-teal);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-top: 1px solid var(--border-color);
}

/* Conversion CTA Banner */
.cta-banner-section {
    background: var(--gradient-hero);
    color: var(--text-white);
    text-align: center;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-banner-content {
    max-width: 700px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.cta-banner-title {
    font-size: 2.25rem;
    color: var(--text-white);
    margin-bottom: 1.25rem;
}

.cta-banner-desc {
    color: #94a3b8;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */

.footer {
    background-color: var(--bg-footer);
    color: #94a3b8;
    padding: 5rem 0 2rem 0;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h3 {
    font-family: var(--font-title);
    color: var(--text-white);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.footer-logo {
    font-family: var(--font-title);
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1.25rem;
}

.footer-logo span {
    color: var(--accent-teal-light);
    font-weight: 400;
}

.footer-tagline {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-links li {
    margin-bottom: 0.85rem;
}

.footer-links a {
    color: #94a3b8;
}

.footer-links a:hover {
    color: var(--accent-teal-light);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    font-size: 0.85rem;
}

.footer-bottom-links a:hover {
    color: var(--accent-teal-light);
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-grid, .intro-block, .grid-2, .coverage-layout, .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin: 2.5rem 0;
    }
    
    .contact-info-item {
        margin-bottom: 0;
    }
    
    .contact-why-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem 2.5rem;
    }
    
    .hero {
        padding: 8rem 0 5rem 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        margin: 0 auto 2rem auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-visual {
        margin-top: 2rem;
    }
    
    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-item {
        border-right: none;
    }
    
    .stat-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .pillars-grid, .grid-3 {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu, .nav-actions {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .container {
        padding: 0 1.25rem;
    }
    
    .header {
        top: 1rem;
        width: calc(100% - 1.5rem);
        height: 60px;
    }
    
    .header.scrolled {
        top: 0.5rem;
        height: 56px;
    }
    
    .logo-img {
        height: 34px;
    }
    
    .header.scrolled .logo-img {
        height: 30px;
    }
    
    section {
        padding: 4.5rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-grid, .pillars-grid, .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 1.5rem;
    }
    
    .footer-col:first-child {
        grid-column: 1 / -1;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-col:last-child {
        grid-column: 1 / -1;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 2rem;
        margin-top: 0.5rem;
    }
    
    .stat-item:nth-child(odd) {
        border-right: none;
    }
    
    .form-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .rfq-form-container {
        padding: 2rem;
    }
    
    .contact-info-panel {
        padding: 3rem 2rem;
    }
    
    .contact-info-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .contact-why-list {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .subpage-hero h1 {
        font-size: 2rem;
    }
    
    .cta-banner-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.85rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Spin animation for button loading */
.animate-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes slideDownHeader {
    from {
        transform: translate(-50%, -40px);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

@keyframes slideUpFade {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Entrance transitions */
.hero-content {
    opacity: 0;
    animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.hero-visual {
    opacity: 0;
    animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.subpage-hero h1 {
    opacity: 0;
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.subpage-hero p {
    opacity: 0;
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

/* ==========================================================================
   About Page Custom Responsive Adjustments
   ========================================================================== */
.about-card-box {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}

.about-highlight-box {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.about-info-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 3rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.grid-col-span-2 {
    grid-column: span 2;
}

.about-heading-lg {
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.about-heading-md {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.about-lead-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
    .about-card-box {
        padding: 1.75rem 1.25rem;
    }
    
    .about-highlight-box {
        padding: 1.75rem 1.25rem;
    }
    
    .about-info-card {
        padding: 2rem 1.5rem;
    }
    
    .grid-col-span-2 {
        grid-column: span 1;
    }
    
    .about-heading-lg {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
    
    .about-heading-md {
        font-size: 1.5rem;
    }
    
    .about-lead-text {
        font-size: 1rem;
    }
}

/* ==========================================================================
   Contact Page Custom Responsive Helpers
   ========================================================================== */

/* Tagline under heading in dark panel */
.contact-panel-tagline {
    color: #94a3b8;
    margin-bottom: 2rem;
}

/* Long email address — prevent horizontal overflow on mobile */
.contact-email-wrap {
    font-size: 1.05rem;
    color: var(--text-white);
    word-break: break-all;
    overflow-wrap: anywhere;
}

/* "Why Partner With Us?" separator section */
.contact-why-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}

.contact-why-title {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-family: var(--font-title);
}

@media (max-width: 768px) {
    /* Contact info panel — compact padding */
    .contact-info-panel {
        padding: 2.25rem 1.5rem;
    }

    /* Scale down heading inside dark panel */
    .contact-info-panel h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    /* Form container — tight padding on mobile */
    .rfq-form-container {
        padding: 1.75rem 1.25rem;
    }

    /* Form title */
    .form-title {
        font-size: 1.5rem;
    }

    /* Stack the contact-layout columns on mobile (already handled in existing query but gap was large) */
    .contact-layout {
        gap: 2rem;
    }

    /* Form grid → single column */
    .form-grid-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Remove extra bottom margin from form groups inside the now-stacked grid */
    .form-grid-2 .form-group {
        margin-bottom: 1.25rem;
    }

    /* Contact info items — single column, smaller gap */
    .contact-info-list {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        margin: 1.75rem 0;
    }

    .contact-info-item {
        margin-bottom: 0;
    }

    /* Why list — single column */
    .contact-why-list {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.82rem;
    }

    .contact-why-section {
        padding-top: 1.5rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-info-panel {
        padding: 1.75rem 1.15rem;
    }

    .contact-info-panel h3 {
        font-size: 1.3rem;
    }

    .rfq-form-container {
        padding: 1.5rem 1rem;
    }

    .form-title {
        font-size: 1.3rem;
    }

    .contact-email-wrap {
        font-size: 0.88rem;
    }

    .btn-submit {
        font-size: 0.9rem;
        padding: 0.85rem 1.25rem;
    }
}


/* ==========================================================================
   FULL SITE RESPONSIVE OVERHAUL — Utility Classes & Enhanced Breakpoints
   ========================================================================== */

/* --- Utility: Section Grid Margin-Bottom --- */
.mb-section { margin-bottom: 4rem; }
.mb-section-lg { margin-bottom: 5rem; }

/* --- Utility: Card Heading (replaces inline styles on industry/coverage cards) --- */
.card-heading {
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--accent-teal);
    padding-bottom: 0.5rem;
}

.card-heading-sm {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* --- Utility: Card sub-list (industries / services pages) --- */
.card-list {
    font-size: 0.85rem;
    color: var(--text-secondary);
    list-style: circle;
    padding-left: 1.25rem;
}

.card-list-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* --- Recruitment: Sourcing Integrity box --- */
.sourcing-integrity-box {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 3rem;
}

.sourcing-integrity-box h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* --- Process: Quality Card box --- */
.process-quality-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 3rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.process-quality-card h3 {
    font-size: 1.5rem;
    color: var(--accent-teal);
    margin-bottom: 1.25rem;
}

/* --- Index Intro lead text --- */
.intro-lead-text {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* --- Hero outline button (white) override --- */
.btn-hero-outline {
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.3);
}

/* --- Coverage Page: mobile map toggle --- */
.coverage-map-select {
    display: none; /* shown on mobile only */
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background-color: var(--bg-card);
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   TABLET RESPONSIVE OVERHAUL (max-width: 1024px)
   ========================================================================== */
@media (max-width: 1024px) {
    /* Coverage layout — already 1-col, but adjust gap */
    .coverage-layout {
        gap: 2.5rem;
    }

    .coverage-details {
        padding: 2rem;
    }

    /* Sourcing integrity / process quality boxes */
    .sourcing-integrity-box,
    .process-quality-card {
        padding: 2.5rem;
    }
}

/* ==========================================================================
   MOBILE RESPONSIVE OVERHAUL (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {

    /* ---- Global ---- */
    section {
        padding: 3.5rem 0;
    }

    .mb-section { margin-bottom: 2.5rem; }
    .mb-section-lg { margin-bottom: 3rem; }

    /* ---- Hero ---- */
    .hero {
        padding: 7rem 0 4rem 0;
    }

    .hero-title {
        font-size: 2.25rem;
        letter-spacing: -0.02em;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    /* ---- Hero SVG illustration — hide on mobile to save space ---- */
    .hero-visual {
        display: none;
    }

    /* Hero now has no 2-col grid so content is full width */
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-ctas .btn {
        text-align: center;
        width: 100%;
    }

    /* ---- Subpage Hero ---- */
    .subpage-hero {
        padding: 5rem 0 3.5rem 0;
    }

    .subpage-hero h1 {
        font-size: 1.85rem;
        margin-bottom: 0.85rem;
    }

    .subpage-hero p {
        font-size: 1rem;
    }

    /* ---- Section Header ---- */
    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .section-desc {
        font-size: 1rem;
    }

    /* ---- Stats ---- */
    .stat-num {
        font-size: 2.75rem;
    }

    .stat-section {
        padding: 3.5rem 0;
    }

    /* ---- Methodology Cards ---- */
    .methodology-card {
        padding: 1.75rem 1.5rem;
    }

    /* ---- Pillar Cards ---- */
    .pillar-card {
        padding: 2rem 1.75rem;
    }

    /* ---- Coverage Page ---- */
    .coverage-layout {
        gap: 2rem;
    }

    .map-container {
        padding: 1.25rem;
    }

    .coverage-details {
        padding: 1.75rem 1.25rem;
    }

    .hub-specs {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hub-title {
        font-size: 1.4rem;
    }

    /* Show the hub select dropdown on mobile */
    .coverage-map-select {
        display: block;
    }

    /* ---- Process Timeline ---- */
    .process-timeline {
        padding-left: 2.5rem;
    }

    .process-timeline::before {
        left: 0.75rem;
    }

    .process-step-num {
        left: calc(-2.5rem + 2px);
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .process-step-content {
        padding: 1.75rem 1.5rem;
    }

    .process-step-title {
        font-size: 1.15rem;
    }

    /* ---- Sourcing Integrity / Process Quality Boxes ---- */
    .sourcing-integrity-box,
    .process-quality-card {
        padding: 1.75rem 1.25rem;
    }

    .sourcing-integrity-box h3,
    .process-quality-card h3 {
        font-size: 1.25rem;
    }

    /* ---- Card Headings ---- */
    .card-heading {
        font-size: 1.15rem;
    }

    /* ---- FAQ ---- */
    .faq-question-btn {
        font-size: 0.95rem;
        padding: 1.25rem;
        gap: 0.75rem;
    }

    .faq-answer-inner {
        padding: 0 1.25rem 1.25rem 1.25rem;
        font-size: 0.9rem;
    }

    /* ---- CTA Banner ---- */
    .cta-banner-section {
        padding: 4rem 0;
    }

    .cta-banner-title {
        font-size: 1.65rem;
    }

    .cta-banner-desc {
        font-size: 0.95rem;
    }

    .cta-banner-content .btn {
        width: 100%;
        max-width: 320px;
    }

    /* ---- Intro text ---- */
    .intro-lead-text {
        font-size: 1rem;
    }

    /* ---- About heading overrides ---- */
    .about-heading-lg {
        font-size: 1.65rem;
    }

    /* ---- Footer ---- */
    .footer {
        padding: 3.5rem 0 1.5rem 0;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 1.25rem;
    }
}

/* ==========================================================================
   SMALL MOBILE RESPONSIVE OVERHAUL (max-width: 480px)
   ========================================================================== */
@media (max-width: 480px) {

    /* ---- Global ---- */
    section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    /* ---- Hero ---- */
    .hero-title {
        font-size: 1.95rem;
    }

    .hero-badge {
        font-size: 0.78rem;
        padding: 0.3rem 0.85rem;
    }

    /* ---- Subpage Hero ---- */
    .subpage-hero h1 {
        font-size: 1.65rem;
    }

    .subpage-hero p {
        font-size: 0.92rem;
    }

    /* ---- Section Header ---- */
    .section-title {
        font-size: 1.65rem;
    }

    .section-tag {
        font-size: 0.78rem;
    }

    /* ---- Stats ---- */
    .stat-num {
        font-size: 2.25rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* ---- Methodology / Pillar Cards ---- */
    .methodology-card {
        padding: 1.5rem 1.25rem;
    }

    .pillar-card {
        padding: 1.75rem 1.5rem;
    }

    /* ---- Process Timeline ---- */
    .process-timeline {
        padding-left: 2.25rem;
    }

    .process-step-content {
        padding: 1.5rem 1.25rem;
    }

    /* ---- Coverage ---- */
    .coverage-details {
        padding: 1.25rem 1rem;
    }

    .hub-title {
        font-size: 1.25rem;
    }

    /* ---- CTA Banner ---- */
    .cta-banner-title {
        font-size: 1.45rem;
    }

    /* ---- Buttons — full width in CTA section ---- */
    .cta-banner-content .btn {
        max-width: 100%;
    }

    /* ---- FAQ ---- */
    .faq-question-btn {
        font-size: 0.88rem;
        padding: 1.1rem;
    }

    /* ---- Card heading ---- */
    .card-heading {
        font-size: 1.05rem;
    }

    .card-heading-sm {
        font-size: 1rem;
    }

    /* ---- Recruitment sourcing / process quality ---- */
    .sourcing-integrity-box,
    .process-quality-card {
        padding: 1.5rem 1rem;
    }

    /* ---- Buttons ---- */
    .btn {
        font-size: 0.88rem;
        padding: 0.75rem 1.35rem;
    }

    .btn-sm {
        padding: 0.45rem 1rem;
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   EXTRA SMALL (max-width: 360px) — Safety net for very small devices
   ========================================================================== */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .subpage-hero h1 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .stat-num {
        font-size: 2rem;
    }

    .container {
        padding: 0 0.85rem;
    }
}



