* {
    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;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(21, 164, 167, 0.2) 0%, transparent 70%);
    z-index: 1;
}
.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;
}

/* ----- 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;
}

/* ----- PERKS SECTION (Original Design) ----- */
.perks-section {
    background: #fff;
    padding: var(--section-spacing) 0;
}
.perks-header {
    text-align: center;
    margin-bottom: 52px;
}
.perks-header .eyebrow {
    color: var(--orange);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    text-align: center;
}
.perks-header h2 {
    font-weight: 700;
    letter-spacing: -0.5px;
}
.perks-header h2 .teal {
    color: var(--teal);
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.perk-card {
    background: #f9f9f9;
    border-radius: 20px;
    padding: 36px 28px 32px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
.perk-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--teal);
}
.perk-card .perk-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: var(--teal-light);
}
.perk-card .perk-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--teal);
    fill: none;
    stroke-width: 2;
}
.perk-card .perk-icon.orange-bg {
    background: var(--orange-pale);
}
.perk-card .perk-icon.orange-bg svg {
    stroke: var(--orange);
}
.perk-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}
.perk-card p {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ----- PHOTO STRIP ----- */
.photo-strip {
    background: #fff;
    padding: 0 0 var(--section-spacing) 0;
    overflow: hidden;
}

/* Desktop View (Original static 5-column grid) */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.photo-grid img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}
.photo-grid img:hover {
    transform: scale(1.02);
}

/* Tablet & Mobile View (Swipable Slider) */
@media (max-width: 1024px) {
    .photo-strip {
        padding: 0 20px var(--section-spacing) 20px;
    }
    .photo-grid {
        display: flex; /* Switch from grid to horizontal flexbox */
        grid-template-columns: none;
        gap: 16px;
        width: auto;
        position: static;
        margin: 0;
        overflow-x: auto;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        cursor: grab;
        user-select: none;

        /* Hide scrollbar tracks */
        -ms-overflow-style: none;  /* IE/Edge */
        scrollbar-width: none;  /* Firefox */
    }
    .photo-grid::-webkit-scrollbar {
        display: none; /* Chrome, Safari and Opera */
    }
    .photo-grid:active {
        cursor: grabbing;
    }
    .photo-grid img {
        flex: 0 0 88vw;
        max-width: 380px;
        width: 88vw;
        height: auto;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        object-position: center;
        scroll-snap-align: center;
        border-radius: 20px !important;
        pointer-events: none;
    }
}

/* ----- OPEN POSITIONS ----- */
.positions-section {
    background: #fff;
    padding: var(--section-spacing) 0;
}
.positions-header {
    text-align: center;
    margin-bottom: 52px;
}
.positions-header .eyebrow {
    color: var(--orange);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    text-align: center;
}
.positions-header h2 {
    font-weight: 700;
    letter-spacing: -0.5px;
}
.positions-header h2 .teal {
    color: var(--teal);
}

.position-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.position-card {
    background: #f9f9f9;
    border-radius: 16px;
    padding: 28px 28px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 16px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}
.position-card:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.position-info {
    flex: 1;
    min-width: 260px;
}
.position-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.position-info p {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 10px;
}
.requirements-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.3px;
    margin-bottom: 8px !important;
}
.requirements-label strong {
    color: var(--teal-dark);
}
.requirements-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}
.requirements-list li {
    position: relative;
    padding-left: 22px;
    font-size: 14px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
}
.requirements-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal);
}
.position-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.position-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
}
.position-meta span svg {
    width: 16px;
    height: 16px;
    stroke: var(--teal);
    fill: none;
    stroke-width: 2;
}
.apply-btn {
    align-self: flex-start;
    background: #fff;
    color: var(--orange);
    border: 2px solid var(--orange);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-top: 2px;
}
.apply-btn:hover {
    background: var(--orange);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(239, 87, 19, 0.35);
}
.cv-note {
    text-align: center;
    margin-top: 32px;
    font-size: 16px;
    font-weight: 300;
    color: var(--text-muted);
}
.cv-note strong {
    color: var(--teal);
    font-weight: 600;
}

/* ----- UPLOAD CV SECTION ----- */
.upload-section {
    position: relative;
    background: #D8FDFF;
    padding: 140px 0 320px;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}
.upload-section .rings {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 900px;
    height: 900px;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}
.upload-section .rings span {
    position: absolute;
    inset: 0;
    margin: auto;
    border: 1px solid rgba(21, 164, 167, 0.14);
    border-radius: 50%;
}
.upload-section .rings span:nth-child(1) { width: 260px; height: 260px; }
.upload-section .rings span:nth-child(2) { width: 440px; height: 440px; }
.upload-section .rings span:nth-child(3) { width: 620px; height: 620px; }
.upload-section .rings span:nth-child(4) { width: 800px; height: 800px; }
.upload-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
.upload-inner h2 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 16px;
}
.upload-inner h2 .orange {
    color: var(--orange);
}
.upload-inner p {
    color: var(--text-muted);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 28px;
}
.btn-cv {
    background: var(--orange);
    color: #fff;
    border: 2px solid var(--orange);
    padding: 16px 48px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(239, 87, 19, 0.25);
}
.btn-cv:hover {
    background: var(--orange-light);
    border-color: var(--orange-light);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 32px rgba(239, 87, 19, 0.35);
}

/* ----- CTA WRAP ----- */
.cta-wrap {
    padding: 0 24px;
    position: relative;
    z-index: 2;
    margin-top: -220px;
    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 ===== */
@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;
    }
}

@media (max-width: 900px) {
    footer {
        text-align: center;
    }
    .footer-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-brand {
        justify-content: center;
    }
    .footer-col p {
        max-width: 100%;
    }
    .footer-links {
        align-items: center;
    }
    .contact-row {
        justify-content: center;
        text-align: c;
        max-width: 320px;
    }
    .socials {
        justify-content: center;
    }
}

@media (max-width: 900px) {
    :root {
        --section-spacing: 80px;
    }
    .row12 {
        padding: 0 24px;
    }
    .perks-grid {
        grid-template-columns: 1fr 1fr;
    }
    .position-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .cta {
        padding: 48px 28px;
    }
    .upload-section {
        padding: 100px 0 260px;
    }
    .cta-wrap {
        margin-top: -180px;
    }
}

/* =========================================================
   TYPOGRAPHY SCALE — TABLET (601px–1200px), matches home/about/services
   ========================================================= */
@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; }
}

@media (max-width: 600px) {
    :root {
        --section-spacing: 60px;
    }

    /* ---- TYPOGRAPHY SCALE — MOBILE (up to 600px), matches home/about/services ---- */
    .hero-content h1 { font-size: 48px; }
    .hero-content p { font-size: 16px; }

    h2 { font-size: 36px; }
    .eyebrow { font-size: 14px; }

    .cta h2 { font-size: 36px; }
    .cta p { font-size: 16px; }

    .perks-grid {
        grid-template-columns: 1fr;
    }
    .upload-section {
        padding: 80px 0 280px;
    }
    .upload-inner p {
        font-size: 16px;
    }
    .cta {
        padding: 36px 20px;
    }
    .cta-wrap {
        margin-top: -200px;
    }
    .footer-grid {
        gap: 36px;
    }
    .position-card {
        padding: 18px 16px;
    }
    .position-info h3 {
        font-size: 16px;
    }
}