* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #2D2D2D;
    background: #FAFAFA;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

.row12 {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 78.4px;
}

.col-content {
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ----- ROOT ----- */
:root {
    --teal: #15A4A7;
    --teal-dark: #005E60;
    --teal-light: #E6F7F8;
    --orange: #EF5713;
    --orange-light: #FA7D46;
    --orange-pale: #FDE8DF;
    --navy: #0F1923;
    --grey-bg: #F5F7FA;
    --text-dark: #2D2D2D;
    --text-muted: #6B7A8F;
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.12);
    --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.10);
    --shadow-card-hover: 0 16px 48px rgba(0, 0, 0, 0.16);
    --section-spacing: 120px;
}

/* ----- BUTTONS ----- */
.btn {
    display: inline-block;
    border-radius: 60px;
    padding: 14px 34px;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 0.3px;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}
.btn:hover::after {
    transform: translateX(0);
}
.btn-orange {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 4px 16px rgba(239, 87, 19, 0.35);
}
.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(239, 87, 19, 0.45);
}
.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-2px);
}
.btn-teal-outline {
    border: 2px solid var(--teal);
    color: var(--teal);
    background: transparent;
}
.btn-teal-outline:hover {
    background: var(--teal);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(21, 164, 167, 0.3);
}
.btn-teal {
    background: var(--teal);
    color: #fff;
    box-shadow: 0 4px 16px rgba(21, 164, 167, 0.35);
}
.btn-teal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(21, 164, 167, 0.45);
}
.btn-white {
    background: #fff;
    color: var(--orange);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}
.btn-white:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

/* ----- HEADER / NAV ----- */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: transparent;
    transition: all 0.4s ease;
    padding-top: 12px;
}
header.scrolled {
    background: rgba(15, 25, 35, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    padding: 4px 0;
    padding-top: 8px;
}
.nav {
    display: grid;
    grid-template-columns: auto 1fr auto; /* col3 holds whichever of hamburger/CTA is visible at the current breakpoint */
    align-items: center;
    column-gap: 20px;
    padding: 16px 0;
}
.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    grid-column: 1;
    justify-self: start;
}
.brand img {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}
.brand-text {
    color: #fff;
}
.brand-text .name {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.3px;
}
.brand-text .sub {
    font-size: 14px;
    font-weight: 300;
    opacity: 0.85;
}

.nav-cta-desktop {
    grid-column: 3;
    justify-self: end;
}
.nav-cta-mobile {
    display: none; /* only shown inside the mobile/tablet drawer */
}
nav.links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    grid-column: 2;
}
nav.links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.25s ease;
    position: relative;
}
nav.links a:hover {
    color: var(--orange-light);
}
nav.links a.active {
    color: var(--orange-light);
}

/* HAMBURGER BUTTON (mobile/tablet nav toggle) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 60;
  padding: 0;
  flex-shrink: 0;
  grid-column: 3;
  justify-self: end;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* NAV OVERLAY (dims page behind open mobile drawer) */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(2px);
  z-index: 54;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-overlay.active {
  display: block;
  opacity: 1;
}

/* ----- HERO ----- */
.hero {
    position: relative;
    background: var(--navy);
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
}
/* Teal glow overlay on top of the hero background image */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(9, 131, 133, 0.2) 0%, transparent 70%);
    z-index: 1;
}
/* The actual hero background image */
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 0;
}
.hero .row12 {
    position: relative;
    z-index: 2;
    width: 100%;
}
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 60px 0 40px;
}
.hero-content .eyebrow {
    color: var(--orange-light);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.hero-content h1 {
    color: #fff;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    max-width: 850px;
    animation: fadeUp 0.9s ease;
    letter-spacing: -1.5px;
}
.hero-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 20px;
    font-weight: 400;
    margin-top: 20px;
    max-width: 600px;
}
.hero-content .btn {
    margin-top: 28px;
}

/* ----- SECTIONS ----- */
section {
    padding: var(--section-spacing) 0;
}
.eyebrow {
    color: var(--orange);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}
h2 .teal {
    color: var(--teal);
}
h2 .orange {
    color: var(--orange);
}
.center {
    text-align: center;
}

/* ----- SERVICES GRID - 2 COLUMNS ----- */
.services-section {
    background: #fff;
}
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 52px;
}
.service-card {
    background: #f9f9f9;
    border-radius: 20px;
    padding: 32px 28px 28px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--teal);
}
.service-card .icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
}
.service-card .icon-wrap.teal-bg {
    background: var(--teal-light);
}
.service-card .icon-wrap.orange-bg {
    background: var(--orange-pale);
}
.service-card .icon-wrap svg {
    width: 34px;
    height: 34px;
    stroke: var(--teal);
    fill: none;
    stroke-width: 2;
}
.service-card .icon-wrap.orange-bg svg {
    stroke: var(--orange);
}
.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}
.service-card p {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.service-card .click-hint {
    font-size: 12px;
    font-weight: 400;
    color: var(--teal);
    margin-top: 12px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}
.service-card:hover .click-hint {
    opacity: 1;
}

/* ----- SERVICE MODAL - REDESIGNED 2 COLUMNS ----- */
.service-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.service-modal-overlay.active {
    display: flex;
}
.service-modal {
    background: #fff;
    border-radius: 24px;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px 44px;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: modalIn 0.4s ease;
}
@keyframes modalIn {
    0% {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
.service-modal .close-btn {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.3s ease;
    background: none;
    border: none;
    font-family: 'Poppins', sans-serif;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.service-modal .close-btn:hover {
    color: var(--orange);
    background: rgba(0, 0, 0, 0.04);
}

/* Modal 2-column layout */
.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.modal-left {
    display: flex;
    flex-direction: column;
}
.modal-left .modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.modal-left .modal-icon.teal-bg {
    background: var(--teal-light);
}
.modal-left .modal-icon.orange-bg {
    background: var(--orange-pale);
}
.modal-left .modal-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--teal);
    fill: none;
    stroke-width: 2;
}
.modal-left .modal-icon.orange-bg svg {
    stroke: var(--orange);
}
.modal-left h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}
.modal-left .modal-description {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 18px;
}
.modal-left .modal-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-top: auto;
}
.modal-left .modal-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.modal-right .duties-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.modal-right .duties-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0;
}
.modal-right .duties-list li {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-muted);
    padding: 5px 0;
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.modal-right .duties-list li:last-child {
    border-bottom: none;
}
.modal-right .duties-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 700;
    font-size: 18px;
}

/* ----- PROVEN TRACK RECORD - LIGHT GRAY BACKGROUND ----- */
.track-record {
    background: var(--grey-bg);
    padding: var(--section-spacing) 0;
}
.track-header {
    text-align: center;
    margin-bottom: 40px;
}
.track-header .eyebrow {
    color: var(--orange);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.track-header h2 {
    font-weight: 700;
    letter-spacing: -0.5px;
}
.track-header h2 .teal {
    color: var(--teal);
}

.track-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.track-tab {
    padding: 10px 28px;
    border-radius: 50px;
    border: 1px solid var(--teal-dark);
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}
.track-tab:hover {
    background: rgba(21, 164, 167, 0.08);
}
.track-tab.active {
    background: rgba(21, 164, 167, 0.16);
    border-color: var(--teal-dark);
    color: var(--teal-dark);
}

.track-content {
    background: #f9f9f9;
    border-radius: 20px;
    padding: 40px 44px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.04);
    min-height: 300px;
    display: none;
    animation: fadeUp 0.5s ease;
}
.track-content.active {
    display: block;
}
.track-content .location-badge {
    display: inline-block;
    background: rgba(21, 164, 167, 0.25);
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 400;
    color: var(--teal-dark);
    margin-bottom: 8px;
}
.track-content .industry-badge {
    display: inline-block;
    background: rgba(21, 164, 167, 0.20);
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 400;
    color: var(--teal-dark);
    margin-left: 8px;
}
.track-content .info-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 20px;
    margin-bottom: 6px;
}
.track-content .info-text {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
}
.track-content .info-text strong {
    color: var(--text-dark);
}
.track-stats {
    display: flex;
    gap: 40px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.track-stat {
    background: #e8e8e8;
    border-radius: 16px;
    padding: 16px 24px;
    min-width: 160px;
    flex: 1;
}
.track-stat .stat-label {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
}
.track-stat .stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}
.track-stat .stat-change {
    display: inline-block;
    background: rgba(21, 164, 167, 0.2);
    padding: 2px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--teal-dark);
    margin-top: 4px;
}
.track-stat .stat-change.orange {
    background: rgba(239, 87, 19, 0.2);
    color: var(--orange);
}

/* ----- CTA WRAP ----- */
.cta-wrap {
    padding: 40px 24px 0;
    position: relative;
    z-index: 2;
    margin-bottom: -140px;
}
.cta {
    background: linear-gradient(135deg, var(--orange-light), var(--orange));
    border-radius: 28px;
    padding: 72px 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(239, 87, 19, 0.25);
}
.cta .ring {
    position: absolute;
    right: -60px;
    bottom: -80px;
    width: 320px;
    height: 320px;
    border: 20px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}
.cta .ring::before {
    content: '';
    position: absolute;
    inset: 40px;
    border: 20px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}
.cta .ring::after {
    content: '';
    position: absolute;
    inset: 80px;
    border: 20px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}
.cta h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}
.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    font-weight: 400;
    font-family: 'Afacad Flux', sans-serif;
    margin: 20px auto 36px;
    max-width: 640px;
    position: relative;
    z-index: 1;
}
.cta .btn {
    position: relative;
    z-index: 1;
}

/* BACK TO TOP BUTTON */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--teal-dark);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all 0.3s ease;
    z-index: 45;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--orange);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 600px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 46px;
        height: 46px;
    }
}


/* ----- FOOTER ----- */
footer {
    background: var(--navy);
    color: #fff;
    padding: 200px 24px 40px;
    position: relative;
    z-index: 1;
}
.footer-grid {
    display: flex;
    gap: 56px;
    flex-wrap: wrap;
}
.footer-col {
    flex: 1 1 240px;
    min-width: 200px;
}
.footer-brand {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 20px;
}
.footer-brand img {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}
.footer-brand .name {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.3px;
}
.footer-brand .sub {
    font-size: 14px;
    font-weight: 300;
    opacity: 0.7;
}
.footer-col p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    opacity: 0.75;
    max-width: 300px;
}
.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a {
    font-size: 15px;
    font-weight: 400;
    opacity: 0.7;
    transition: all 0.25s ease;
}
.footer-links a:hover {
    opacity: 1;
    color: var(--orange-light);
    transform: translateX(4px);
}
.contact-row {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.75;
    align-items: flex-start;
}
.contact-icon {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-icon svg {
    width: 18px;
    height: 18px;
    stroke: rgba(255, 255, 255, 0.6);
    fill: none;
    stroke-width: 1.8;
}
.socials {
    display: flex;
    gap: 14px;
    margin-top: 24px;
}
.social {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}
.social:hover {
    background: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(239, 87, 19, 0.3);
}
.social svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.5;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 48px;
    padding-top: 28px;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.5;
}

/* ANIMATIONS */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.fade-up:nth-child(2) {
    animation-delay: 0.1s;
}
.fade-up:nth-child(3) {
    animation-delay: 0.2s;
}
.fade-up:nth-child(4) {
    animation-delay: 0.3s;
}
.fade-up:nth-child(5) {
    animation-delay: 0.4s;
}

/* ===== RESPONSIVE NAV: hamburger + slide-in drawer for tablet & mobile (matches home/about) ===== */
@media (max-width: 1200px) {
.hamburger {
  display: flex;
}
.nav-cta-desktop {
  display: none;
}
.nav-cta-mobile {
  display: inline-block;
}
nav.links {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(320px, 78%);
  margin: 0;
  background: rgba(15, 25, 35, 0.98);
  backdrop-filter: blur(14px);
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4px;
  padding: 110px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 56;
  overflow-y: auto;
}
nav.links.active {
  transform: translateX(0);
}
nav.links a {
  width: 100%;
  padding: 14px 0;
  font-size: 17px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
nav.links a.btn-orange {
  width: 100%;
  margin-top: 18px;
  text-align: center;
  border-bottom: none;
}
}

/* RESPONSIVE */
@media (max-width: 900px) {
    :root {
        --section-spacing: 80px;
    }
    .row12 {
        padding: 0 24px;
    }
    .cta {
        padding: 48px 28px;
    }
    .track-content {
        padding: 28px 24px;
    }
    .track-stats {
        flex-direction: column;
        gap: 16px;
    }
    .track-tabs {
        gap: 10px;
    }
    .track-tab {
        padding: 8px 18px;
        font-size: 13px;
    }
    .service-modal {
        padding: 28px 20px;
    }
    .modal-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .modal-left .modal-image img {
        height: 160px;
    }
}

/* =========================================================
   TYPOGRAPHY SCALE — TABLET (601px–1200px), matches home/about
   ========================================================= */
@media (min-width: 601px) and (max-width: 1200px) {
    .hero-content h1 { font-size: 60px; }
    .hero-content p { font-size: 18px; }
    .hero-content .btn { font-size: 22px; }

    h2 { font-size: 48px; }
    .eyebrow { font-size: 16px; }

    .cta h2 { font-size: 48px; }
    .cta p { font-size: 18px; }
}

/* Extra typography step for the narrower half of the tablet range (matches about page) —
   placed AFTER the tablet block above so it correctly wins the cascade tie (same
   specificity, later wins). */
@media (max-width: 960px) {
    .hero-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 600px) {
    :root {
        --section-spacing: 60px;
    }

    /* ---- TYPOGRAPHY SCALE — MOBILE (up to 600px), matches home/about ---- */
    .hero-content h1 { font-size: 42px; }
    .hero-content p { font-size: 16px; }

    h2 { font-size: 36px; }
    .eyebrow { font-size: 14px; }

    .cta h2 { font-size: 36px; }
    .cta p { font-size: 16px; }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .service-card {
        padding: 24px 18px 20px;
    }
    .service-card .icon-wrap {
        width: 60px;
        height: 60px;
    }
    .service-card .icon-wrap svg {
        width: 28px;
        height: 28px;
    }
    .service-card h3 {
        font-size: 16px;
    }
    .service-card p {
        font-size: 13px;
    }
    .service-modal {
        padding: 20px 14px;
    }
    .modal-left h2 {
        font-size: 22px;
    }
    .modal-grid {
        gap: 16px;
    }
    .modal-left .modal-image img {
        height: 140px;
    }
    .footer-grid {
        gap: 36px;
    }
    .track-tabs {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .track-tab {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    .track-content {
        padding: 16px 12px;
    }
    .track-stats {
        flex-direction: column;
        gap: 12px;
    }
    .track-stat {
        padding: 12px 16px;
    }
    .track-stat .stat-number {
        font-size: 26px;
    }
}