/* ==========================================================================
   PINTAR — Work Abroad Program Landing Page
   Design system: deep blue / white / warm gold, trust-focused, mobile-first
   ========================================================================== */

:root {
  /* Color palette (per brand brief) */
  --blue-700: #0B4F9C;
  --blue-600: #1558D6;
  --blue-50: #EAF1FB;
  --gray-50: #F5F7FA;
  --white: #FFFFFF;
  --gold-500: #F4B400;
  --gold-400: #FFC857;
  --green-700: #2E7D32;
  --green-600: #43A047;
  --green-50: #E9F6EA;
  --whatsapp-green: #25D366;
  --whatsapp-green-dark: #1DA851;
  --text-primary: #1A2332;
  --text-secondary: #5A6472;

  /* Type */
  --font-sans: 'Inter', 'Noto Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Shape / elevation */
  --radius-card: 20px;
  --radius-pill: 999px;
  --shadow-card: 0 4px 16px rgba(11, 79, 156, 0.08), 0 1px 3px rgba(11, 79, 156, 0.06);
  --shadow-card-hover: 0 10px 28px rgba(11, 79, 156, 0.14), 0 2px 6px rgba(11, 79, 156, 0.08);

  /* Layout */
  --container-max: 1200px;
  --header-h: 72px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

/* ---- Focus visibility (accessibility) ---- */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue-600);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---- Skip link ---- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  background: var(--blue-700);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  z-index: 200;
  transition: top 0.15s ease;
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* ---- Layout helpers ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 20px;
}

.section {
  padding-block: 56px;
}

.section-bg-alt { background: var(--gray-50); }
.section-bg-blue { background: var(--blue-700); color: var(--white); }
.section-bg-blue .section-eyebrow { color: var(--gold-400); }
.section-bg-blue .section-title { color: var(--white); }
.section-bg-blue .section-subtitle { color: rgba(255,255,255,0.88); }

.section-header {
  max-width: 640px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(24px, 4.5vw, 32px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}

.section-subtitle {
  margin-top: 12px;
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 18px;
  font-weight: 700;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }

/* WhatsApp CTA — reserved for WhatsApp actions specifically, per brand rule:
   official WhatsApp green makes the single primary action instantly recognizable. */
.btn-whatsapp {
  background: var(--whatsapp-green);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover { background: var(--whatsapp-green-dark); box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45); }

.btn-secondary {
  background: var(--white);
  color: var(--blue-700);
  border-color: var(--blue-700);
}
.btn-secondary:hover { background: var(--blue-50); }

.btn-secondary-on-blue {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-secondary-on-blue:hover { background: rgba(255,255,255,0.12); }

.btn-block { width: 100%; }

.btn-whatsapp-icon svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(11,79,156,0.08);
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  max-width: none;
  padding-inline: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand img { height: 26px; width: auto; filter: invert(1); }
.brand-divider {
  width: 1px; height: 22px; background: rgba(11,79,156,0.15);
}
.brand-tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-700);
  white-space: nowrap;
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-desktop a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}
.nav-desktop a:hover { color: var(--blue-700); }

.header-cta { display: none; }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: transparent;
  border: none;
  color: var(--blue-700);
}
.menu-toggle svg { width: 26px; height: 26px; }

/* Mobile nav drawer */
.nav-mobile {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--white);
  z-index: 90;
  padding: 24px 20px 100px;
  overflow-y: auto;
  display: none;
}
.nav-mobile.is-open { display: block; }

.nav-mobile ul { display: flex; flex-direction: column; gap: 4px; }
.nav-mobile a {
  display: block;
  padding: 16px 12px;
  font-size: 19px;
  font-weight: 600;
  border-radius: 12px;
  color: var(--text-primary);
}
.nav-mobile a:hover, .nav-mobile a:active { background: var(--blue-50); }

.nav-mobile .btn { margin-top: 16px; }

body.nav-open { overflow: hidden; }

/* ==========================================================================
   HERO — photo background with subtle motion
   ========================================================================== */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
  padding-block: 64px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #08213E;
}

/* Single full-bleed photo — phone & tablet (<1024px) */
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1);
  animation: heroKenBurns 20s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1%, -1%, 0); }
}

/* Three-photo panel — laptop & desktop (≥1024px) */
.hero-photos {
  display: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-tint {
  display: none;
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(8,33,62,0) 50%, rgba(8,33,62,0.22) 80%);
}

@keyframes heroPhotoFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,33,62,0.80) 0%, rgba(8,33,62,0.78) 55%, rgba(8,33,62,0.88) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-copy { max-width: 640px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid rgba(11,79,156,0.15);
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-card);
  opacity: 0;
  animation: heroFadeUp 0.7s ease-out 0.1s forwards;
}

.hero-title {
  margin-top: 20px;
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  letter-spacing: -0.01em;
  opacity: 0;
  animation: heroFadeUp 0.7s ease-out 0.22s forwards;
}
.hero-title .accent { color: var(--gold-400); }

.hero-subtitle {
  margin-top: 18px;
  font-size: 19px;
  color: rgba(255,255,255,0.92);
  max-width: 52ch;
  line-height: 1.6;
  opacity: 0;
  animation: heroFadeUp 0.7s ease-out 0.34s forwards;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  animation: heroFadeUp 0.7s ease-out 0.46s forwards;
}

.hero-chips {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  opacity: 0;
  animation: heroFadeUp 0.7s ease-out 0.58s forwards;
}

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

.hero-chips .chip {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
  box-shadow: none;
}
.hero-chips .chip svg { color: var(--gold-400); }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid rgba(11,79,156,0.12);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: var(--shadow-card);
}
.chip svg { width: 16px; height: 16px; color: var(--green-600); flex-shrink: 0; }

/* ==========================================================================
   BENEFITS
   ========================================================================== */

.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 640px;
  margin-inline: auto;
}

.benefit-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid rgba(11,79,156,0.08);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.benefit-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-2px); }

.benefit-card .icon-badge {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  margin-bottom: 0;
  flex-shrink: 0;
}
.benefit-card .icon-badge svg { width: 20px; height: 20px; }

.benefit-card-text h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}
.benefit-card-text p {
  margin-top: 1px;
  font-size: 13.5px;
  color: var(--text-secondary);
}

/* Scroll-reveal: benefits appear one after another, top to bottom, once
   the section scrolls into view. Triggered by IntersectionObserver in
   main.js, which adds .is-visible once. Gated behind .js so cards stay
   visible by default if JavaScript doesn't run. */
.js .benefit-card {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.benefits-grid.is-visible .benefit-card {
  opacity: 1;
  transform: translateY(0);
}
.benefits-grid .benefit-card:nth-child(1) { transition-delay: 0s; }
.benefits-grid .benefit-card:nth-child(2) { transition-delay: 0.1s; }
.benefits-grid .benefit-card:nth-child(3) { transition-delay: 0.2s; }
.benefits-grid .benefit-card:nth-child(4) { transition-delay: 0.3s; }
.benefits-grid .benefit-card:nth-child(5) { transition-delay: 0.4s; }
.benefits-grid .benefit-card:nth-child(6) { transition-delay: 0.5s; }

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue-50);
  color: var(--blue-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.icon-badge svg { width: 28px; height: 28px; }

.icon-badge.gold { background: #FFF6DE; color: #B37D00; }
.icon-badge.green { background: var(--green-50); color: var(--green-700); }

/* (Countries section removed — Malaysia is the sole destination for v1) */

/* ==========================================================================
   JOB CATEGORIES
   ========================================================================== */

.jobs-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

.job-card {
  --card-bg: var(--white);
  background: var(--card-bg);
  border: 1px solid rgba(11,79,156,0.08);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.job-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-2px); }

/* Image band: top ~1/2 of the card via a fixed aspect-ratio (so the
   proportion holds responsively regardless of card width), clipped by
   the card's own rounded corners since .job-card has overflow: hidden. */
.job-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  overflow: hidden;
}
.job-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.job-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--card-bg) 100%);
  pointer-events: none;
}

.job-card-body {
  padding: 14px 24px 28px;
}

.job-card-body h3 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 4px;
}
.job-card-body p {
  margin-top: 8px;
  font-size: 15px;
  color: var(--text-secondary);
}

.jobs-footnote {
  margin-top: 24px;
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
}

.jobs-cta {
  margin-top: 32px;
  text-align: center;
}

.jobs-cta-caption {
  margin-bottom: 14px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */

.steps-list {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  position: relative;
  padding-bottom: 32px;
}
.step-item:last-child { padding-bottom: 0; }

/* Scroll-reveal: steps appear one after another (left to right on desktop,
   top to bottom on mobile) once the section scrolls into view. Triggered
   by IntersectionObserver in main.js, which adds .is-visible once.
   Gated behind .js (set synchronously in <head>) so the steps stay
   normally visible — never stuck hidden — if JavaScript doesn't run. */
.js .step-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.steps-list.is-visible .step-item {
  opacity: 1;
  transform: translateY(0);
}
.steps-list .step-item:nth-child(1) { transition-delay: 0s; }
.steps-list .step-item:nth-child(2) { transition-delay: 0.15s; }
.steps-list .step-item:nth-child(3) { transition-delay: 0.3s; }
.steps-list .step-item:nth-child(4) { transition-delay: 0.45s; }

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-700);
  color: var(--white);
  font-weight: 800;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.step-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 44px;
  bottom: -4px;
  width: 2px;
  background: repeating-linear-gradient(to bottom, rgba(11,79,156,0.25) 0 6px, transparent 6px 12px);
}

.step-content h3 {
  font-size: 18px;
  font-weight: 700;
  padding-top: 8px;
}
.step-content p {
  margin-top: 6px;
  font-size: 15px;
  color: var(--text-secondary);
}

.steps-note {
  max-width: 640px;
  margin: 28px auto 0;
  background: var(--green-50);
  border: 1px solid rgba(46,125,50,0.18);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: #245A28;
}
.steps-note svg { width: 22px; height: 22px; color: var(--green-700); flex-shrink: 0; margin-top: 1px; }

/* ==========================================================================
   SERVICES ("What We Handle")
   ========================================================================== */

.services-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.service-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid rgba(11,79,156,0.08);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow-card);
}
.service-card .icon-badge {
  width: 42px; height: 42px; border-radius: 12px; margin-bottom: 0; flex-shrink: 0;
}
.service-card .icon-badge svg { width: 22px; height: 22px; }
.service-card p { font-size: 15px; font-weight: 600; color: var(--text-primary); padding-top: 8px; }

/* Inline trust line — cross-cutting license/years/placed facts woven into
   the Layanan Kami section header, per the trust-signals placement rule. */
.trust-inline {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-700);
}

/* ==========================================================================
   SALARY / GAJI
   ========================================================================== */

.salary-panel {
  max-width: 640px;
  margin-inline: auto;
  background: var(--white);
  border: 1px solid rgba(11,79,156,0.1);
  border-radius: 28px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.salary-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.salary-amount {
  font-size: clamp(36px, 7vw, 48px);
  font-weight: 800;
  color: var(--blue-700);
  letter-spacing: -0.01em;
}
.salary-caption {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
}

.salary-chips {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* ==========================================================================
   SUCCESS STORIES
   ========================================================================== */

.testimonial-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(11,79,156,0.08);
  border-radius: var(--radius-card);
  padding: 26px 24px;
  box-shadow: var(--shadow-card);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(155deg, var(--blue-600), var(--blue-700));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}

.testimonial-name { font-size: 16px; font-weight: 700; }
.testimonial-role { font-size: 13px; color: var(--text-secondary); margin-top: 2px; }

.verified-badge {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--green-50);
  color: var(--green-700);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}
.verified-badge svg { width: 13px; height: 13px; }

.stars { display: flex; gap: 2px; margin-top: 14px; }
.stars svg { width: 16px; height: 16px; color: var(--gold-500); }

.testimonial-quote {
  margin-top: 10px;
  font-size: 16px;
  color: var(--text-primary);
  line-height: 1.6;
}

/* ==========================================================================
   REQUIREMENTS / PERSYARATAN
   ========================================================================== */

.requirements-panel {
  display: grid;
  gap: 28px;
  align-items: center;
  background: var(--blue-50);
  border-radius: 28px;
  padding: 36px 28px;
}

.requirements-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--white);
  color: var(--blue-700);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
}
.requirements-icon svg { width: 34px; height: 34px; }

.requirements-panel h2 {
  margin-top: 18px;
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 700;
}

.requirements-panel p {
  margin-top: 10px;
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 60ch;
}

.requirements-list {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.requirements-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
}
.requirements-list svg { width: 20px; height: 20px; color: var(--green-600); flex-shrink: 0; margin-top: 2px; }

/* ==========================================================================
   FINAL CTA
   ========================================================================== */

.final-cta {
  background: linear-gradient(160deg, var(--blue-700) 0%, var(--blue-600) 100%);
  color: var(--white);
  text-align: center;
  padding-block: 56px;
}
.final-cta h2 {
  font-size: clamp(26px, 5vw, 36px);
  font-weight: 800;
}
.final-cta p {
  margin-top: 14px;
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  max-width: 50ch;
  margin-inline: auto;
}
.final-cta .btn { margin-top: 26px; }
.final-cta-chips {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.final-cta-chips .chip {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
  box-shadow: none;
}
.final-cta-chips .chip svg { color: var(--gold-400); }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: #08213E;
  color: rgba(255,255,255,0.82);
  padding-block: 48px 28px;
}

.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

.footer-brand img { height: 24px; width: auto; }
.footer-brand p {
  margin-top: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  max-width: 32ch;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.footer-col ul {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a { font-size: 15px; color: rgba(255,255,255,0.85); }
.footer-col a:hover { color: var(--white); }

.footer-address {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 26ch;
}

.footer-license {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.footer-license .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-600);
  font-weight: 700;
}
.footer-license .badge svg { width: 15px; height: 15px; }

/* ==========================================================================
   STICKY MOBILE WHATSAPP BUTTON
   ========================================================================== */

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.15s ease;
}
.whatsapp-float:hover { transform: scale(1.06); }
.whatsapp-float svg { width: 30px; height: 30px; }

/* ==========================================================================
   RESPONSIVE — Tablet (≥768px)
   ========================================================================== */

@media (min-width: 768px) {
  .section { padding-block: 72px; }
  .container { padding-inline: 32px; }

  .jobs-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }

  .hero-actions { flex-direction: row; }

  .requirements-panel { grid-template-columns: 220px 1fr; }
}

/* ==========================================================================
   RESPONSIVE — Laptop (≥1024px)
   ========================================================================== */

@media (min-width: 1024px) {
  body { font-size: 18px; }

  .header-inner { padding-block: 0; }
  .nav-desktop { display: block; }
  .header-cta { display: inline-flex; }
  .menu-toggle { display: none; }

  /* Hard CSS guarantee: the mobile drawer can never show at desktop
     widths, even if it was left open before the viewport crossed this
     breakpoint (JS only handles this reactively; specificity must match
     .nav-mobile.is-open to actually win the cascade here). Also release
     the scroll lock so desktop scrolling can't get stuck if the JS
     close-on-resize handler didn't run in time. */
  .nav-mobile,
  .nav-mobile.is-open {
    display: none;
  }
  body.nav-open {
    overflow: visible;
  }

  .hero { min-height: 680px; }
  .hero-actions { flex-direction: row; }

  /* Flush-left on full-size screens: decouple from the centered 1200px
     container so the headline sits near the true viewport edge instead
     of drifting inward as the window widens. */
  .hero-inner.container {
    max-width: none;
    padding-inline: 40px;
  }

  .hero-bg-single { display: none; }

  .hero-photos {
    display: flex;
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 72%;
    -webkit-mask: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.2) 8%, rgba(0,0,0,0.55) 18%, rgba(0,0,0,0.88) 28%, #000 38%);
    mask: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.2) 8%, rgba(0,0,0,0.55) 18%, rgba(0,0,0,0.88) 28%, #000 38%);
  }
  .hero-photo { flex: 1; overflow: hidden; opacity: 0; }
  .hero-photo.p1 { animation: heroPhotoFadeIn 0.8s ease forwards 0.3s; }
  .hero-photo.p2 { animation: heroPhotoFadeIn 0.8s ease forwards 0.8s; }
  .hero-photo.p3 { animation: heroPhotoFadeIn 0.8s ease forwards 1.3s; }

  .hero-tint { display: block; }

  .hero-scrim {
    background: linear-gradient(90deg,
      #08213E 0%,
      #08213E 24%,
      rgba(8,33,62,0.82) 34%,
      rgba(8,33,62,0.50) 43%,
      rgba(8,33,62,0.24) 52%,
      rgba(8,33,62,0.08) 62%,
      rgba(8,33,62,0) 74%);
  }

  .jobs-grid { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }

  .steps-list {
    max-width: none;
    flex-direction: row;
    gap: 8px;
  }
  .step-item {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 0;
  }
  .js .step-item {
    transform: translateX(-24px);
  }
  .steps-list.is-visible .step-item {
    transform: translateX(0);
  }
  .step-number { margin-inline: auto; }
  .step-item:not(:last-child)::before {
    left: 50%;
    top: 22px;
    right: -50%;
    bottom: auto;
    width: auto;
    height: 2px;
    background: repeating-linear-gradient(to right, rgba(11,79,156,0.25) 0 6px, transparent 6px 12px);
  }
  .step-content h3 { padding-top: 14px; }

  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

/* ==========================================================================
   RESPONSIVE — Desktop (≥1280px)
   ========================================================================== */

@media (min-width: 1280px) {
  .container { padding-inline: 40px; }
  .section { padding-block: 88px; }
  .hero { min-height: 760px; padding-block: 88px; }
}

/* ---- Small phone safety (≤360px) ---- */
@media (max-width: 360px) {
  body { font-size: 16.5px; }
  .hero-title { font-size: 30px; }
  .btn { padding: 12px 20px; font-size: 16px; }
}
