/* ===== ROOT VARIABLES (Dark Premium Theme) ===== */
:root {
    --primary: #3b82f6;       /* Vibrant Blue */
    --primary-hover: #2563eb;
    --secondary: #06b6d4;     /* Electric Cyan */
    --accent: #8b5cf6;        /* Purple */
    
    --bg-dark: #020617;       /* Deep Navy / Space Black */
    --bg-card: rgba(30, 41, 59, 0.5); /* Glass card background */
    --bg-card-hover: rgba(51, 65, 85, 0.7);
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    --border: rgba(255, 255, 255, 0.1);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.15s ease;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    letter-spacing: 0.02em;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.2;
}

/* Base Heading Sizes for consistent text hierarchy */
h1 { font-size: 3.5rem; margin-bottom: 1.5rem; }
h2 { font-size: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }
h5 { font-size: 1.1rem; }

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

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

/* ===== UTILITIES ===== */
.text-gradient {
    background: linear-gradient(to right, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.pt-3 { padding-top: 3rem; }
.pb-2 { padding-bottom: 2rem; }
.full-width { width: 100%; display: block; text-align: center; }
.justify-center { justify-content: center; }

/* Grid System */
.grid {
    display: grid;
    gap: 2rem;
}
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid-4-cities { grid-template-columns: repeat(4, 1fr); gap: 1rem; }

/* Glassmorphism */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition);
}

.glass-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 500;
    font-family: var(--font-heading);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.6);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary);
    transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-main);
}

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

.nav-links a {
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--secondary);
}

.nav-links a.btn-primary {
    color: #fff;
    padding: 0.5rem 1.2rem;
}

.nav-links a.btn-primary:hover {
    color: #fff;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    padding: 12rem 0 8rem;
    text-align: center;
    overflow: hidden;
}

.glow-bg {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, rgba(6,182,212,0) 70%);
    z-index: -1;
    border-radius: 50%;
    filter: blur(40px);
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    color: var(--secondary);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero .headline {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero .subheading {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ===== SECTION COMMONS ===== */
section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ===== WHAT WE DO ===== */
.what-we-do .section-header h2 {
    font-size: 2.2rem;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.glass-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.25rem;
}

.glass-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== PROGRAMS (PRICING) ===== */
.pricing-grid {
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card .btn {
    margin-top: auto;
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.pricing-card.popular {
    background: linear-gradient(180deg, rgba(30,41,59,0.8) 0%, rgba(15,23,42,0.8) 100%);
    border: 1px solid var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card.popular:hover {
    transform: translateY(-5px);
}

.pricing-card .tier {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.badge-popular {
    color: var(--secondary) !important;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-card .desc {
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.features {
    margin-bottom: 2rem;
}

.features li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.features li i {
    color: var(--secondary);
    margin-top: 0.2rem;
}

/* ===== SPLIT SECTION (Companies / Why Us) ===== */
.container-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.split-left h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.split-left h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.split-left p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-main);
}

.benefits-list i {
    color: var(--secondary);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.tag:hover {
    border-color: var(--secondary);
    color: var(--text-main);
    background: rgba(6, 182, 212, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.2);
}

.tag-lg {
    font-size: 0.95rem;
    padding: 0.8rem 1.5rem;
    font-weight: 500;
}

.tag i {
    color: var(--primary);
}

.tag:hover i {
    color: var(--secondary);
}

.city-tag i {
    color: var(--secondary);
}

.city-tag:hover {
    border-color: var(--primary);
    background: rgba(59, 130, 246, 0.1);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.city-tag:hover i {
    color: var(--primary);
}

.advantage-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.adv-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.advantage-item h4 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.advantage-item p {
    font-size: 0.9rem;
    margin: 0;
}

/* ===== HIRING JOURNEY (Zig-Zag Timeline) ===== */
.vertical-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Center vertical line */
.vertical-timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--border);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.v-timeline-item {
    display: flex;
    justify-content: flex-end;
    padding: 15px calc(50% + 40px) 30px 0;
    position: relative;
    width: 100%;
}

/* Even items: content on right side */
.v-timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding: 15px 0 30px calc(50% + 40px);
}

/* Step number circle — centered on the line */
.v-step-num {
    position: absolute;
    width: 44px;
    height: 44px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-dark);
    border: 3px solid var(--primary);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--secondary);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
    transition: var(--transition);
}

.v-timeline-item:hover .v-step-num {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.8);
    transform: translateX(-50%) scale(1.1);
}

.v-content h4 {
    font-size: 1.15rem;
    margin: 0 0 0.5rem 0;
}

.v-content p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Content card */
.v-content {
    padding: 1.8rem;
    position: relative;
    max-width: 380px;
    width: 100%;
}

.v-content h4 {
    margin: 0.5rem 0;
    font-size: 1.25rem;
}

.v-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ===== INDUSTRIES GRID ===== */
.industries-wrapper {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 2rem 2rem;
    display: flex;
    justify-content: center;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 1500px;
}

.industry-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 1.5rem;
    height: 100%;
    transition: var(--transition);
}

.industry-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.15);
    transform: translateY(-5px);
}

.industry-card .icon-box-small {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.1);
}

.industry-card .secondary-gradient {
    color: var(--primary);
    background: rgba(6, 182, 212, 0.1);
}

.industry-card h4 {
    margin: 0.8rem 0 0.5rem 0;
    font-size: 1.15rem;
    line-height: 1.3;
}

.industry-card p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
    flex: 1;
}

.icon-small {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.icon-md {
    font-size: 1.8rem;
}

.mb-1 { margin-bottom: 1rem; }
.text-muted { color: var(--text-muted); }

/* ===== SECTION WIDTHS ===== */
.section-stacked {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

.full-width-blocks {
    max-width: 1000px;
}

.feature-block {
    width: 100%;
}

.block-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.icon-box-small {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.interactive-tags {
    gap: 1rem;
}

/* ===== HUB AND SPOKE (RECTANGULAR) ===== */
.network-scale-wrapper {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

.network-rect-container {
    position: relative;
    width: 900px;
    height: 500px;
    flex-shrink: 0;
}

.network-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.network-line {
    stroke: rgba(255, 255, 255, 0.15);
    stroke-width: 2;
    stroke-dasharray: 4 4;
}

.hub-node-rect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 100px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border: 2px solid var(--primary);
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
    transition: var(--transition);
}

.hub-icon {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 0.2rem;
    transition: var(--transition);
}

.hub-node-rect h4 {
    font-size: 1.1rem;
    margin: 0;
    text-align: center;
    line-height: 1.2;
}

.hub-node-rect:hover {
    border-color: var(--secondary);
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.6);
    transform: translate(-50%, -50%) scale(1.05);
}

.hub-node-rect:hover .hub-icon {
    color: var(--primary);
}

.city-node-rect {
    position: absolute;
    width: 160px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(15, 23, 42, 0.8);
}

.city-node-rect i {
    color: var(--secondary);
    font-size: 1.1rem;
    transition: var(--transition);
}

.city-node-rect span {
    font-size: 0.9rem;
    font-weight: 500;
}

.city-node-rect:hover {
    border-color: var(--secondary);
    background: rgba(6, 182, 212, 0.1);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
    z-index: 5;
    transform: translate(-50%, -50%) scale(1.05);
}

.city-node-rect:hover i {
    color: var(--primary);
}

/* 3x3 Grid Positions */
.pos-tl { top: 16%; left: 16.66%; }
.pos-tc { top: 16%; left: 50%; }
.pos-tr { top: 16%; left: 83.33%; }
.pos-ml { top: 50%; left: 16.66%; }
.pos-mr { top: 50%; left: 83.33%; }
.pos-bl { top: 84%; left: 16.66%; }
.pos-bc { top: 84%; left: 50%; }
.pos-br { top: 84%; left: 83.33%; }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.05);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-main);
    line-height: 1.8;
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.author h4 {
    font-size: 1rem;
    margin-bottom: 0.1rem;
}

.author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== CONTACT ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.action-box {
    background: rgba(0,0,0,0.2);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

.action-box h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

/* ===== FOOTER ===== */
.border-top { border-top: 1px solid var(--border); }

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== ANIMATIONS & REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== MODALS ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%) scale(0.95);
    width: 90%;
    max-width: 650px;
    max-height: 85vh;
    overflow-y: auto;
    z-index: 2001;
    background: rgba(15, 23, 42, 0.95); /* Deep slate to match theme */
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    
    /* Scrollbar for modal */
    scrollbar-width: thin;
    scrollbar-color: var(--secondary) rgba(255,255,255,0.05);
}

.modal::-webkit-scrollbar {
    width: 6px;
}
.modal::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.02);
}
.modal::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 10px;
}

.modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: rgba(15, 23, 42, 0.98);
    z-index: 10;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--text-main);
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.modal-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.modal-body {
    padding: 2rem;
}

.modal-body h4 {
    color: var(--secondary);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.modal-body h4:first-child {
    margin-top: 0;
}

.modal-body p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .container-split, .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .grid-3, .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-4-cities {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero .headline { font-size: 3rem; }

    .network-rect-container {
        transform: scale(0.85);
        margin: -40px 0;
    }
    
    .industries-wrapper {
        padding: 2rem 1rem;
    }
    
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 900px;
        gap: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .container { padding: 0 1.5rem; }
    h1, h2, .section-header h2 { font-size: 2.2rem; text-align: center; }
    
    .split-left h2 { text-align: left; }
    
    .vertical-timeline::after { left: 20px; }
    .v-timeline-item {
        display: block;
        padding: 10px 0 20px 60px;
        text-align: left;
    }
    .v-timeline-item:nth-child(even) {
        justify-content: unset;
        padding: 10px 0 20px 60px;
    }
    .v-step-num { left: 3px; transform: none; width: 36px; height: 36px; font-size: 1rem; }
    .v-timeline-item:hover .v-step-num { transform: scale(1.1); }
    .v-content { padding: 1.2rem; max-width: 100%; }
    
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .grid-4-cities {
        grid-template-columns: 1fr;
    }
    
    .locations-industries {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .network-scale-wrapper {
        justify-content: center;
        overflow: hidden;
        padding-bottom: 0;
        padding-left: 0;
    }
    .network-rect-container {
        transform: scale(0.75);
        transform-origin: center;
        margin: -60px 0;
    }

    /* Mobile grid overrides */
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        gap: 1.5rem;
    }
    
    .tags {
        gap: 1rem;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(2, 6, 23, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hamburger { display: block; }
    
    .hero { padding: 8rem 0 4rem; }
    .hero .headline { font-size: 2.2rem; line-height: 1.15; margin-bottom: 1rem; }
    
    .cta-group { 
        flex-direction: column; 
        gap: 1rem;
    }
    
    .footer-content { 
        flex-direction: column; 
        text-align: center;
        gap: 2rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .footer-brand .logo {
        justify-content: center;
    }
    
    .footer-brand p {
        color: var(--text-muted);
        opacity: 0.8;
        margin-top: 0.5rem;
    }
    
    .footer-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
        margin-top: 0;
        width: 100%;
        max-width: 400px;
    }
    
    .footer-links a {
        font-size: 0.85rem;
        padding: 0.5rem 0;
        display: inline-block;
    }

    .footer-links a:nth-child(3) {
        grid-column: span 2;
        margin-top: -0.5rem;
        margin-bottom: 1rem;
    }
}

@media screen and (max-width: 576px) {
    .network-rect-container {
        transform: scale(0.4);
        transform-origin: center;
        margin: -150px 0;
    }
    .industries-grid {
        grid-template-columns: 1fr;
    }
    .hero .headline { font-size: 2.2rem; line-height: 1.15; }
    h1, h2, .section-header h2 { font-size: 2.2rem; line-height: 1.2; }
}
