/* ============================================================
   STAFFGENNI AI — Main Stylesheet
   Structure: index.html + pages/about.html
   ============================================================ */

/* ── RESET & ROOT ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow1:    #EAB308;
  --yellow2:    #FFF8ED;
  --blue1:      #0E5EA4;
  --blue2:      #529CC3;
  --blue3:      #D4EEFC;
  --dark-navy:  #172132;
  --grad-yellow: linear-gradient(to right, #E8B12B, #CA8A21);
  --grad-blue:   linear-gradient(to right, #75BCE1, #0E5EA4);
  --font: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: #fff; color: #000; overflow-x: hidden; }

/* ── TOP BANNER ───────────────────────────────────────────── */
.top-banner {
  background: var(--grad-yellow);
  height: 40px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 16px;
}
.top-banner p { font-weight: 700; font-size: 16px; color: #fff; text-align: center; }

/* ── NAVIGATION ───────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 16px 0 40px;
  /* Always starts fully transparent — becomes #fff on scroll via JS */
  background: rgba(255, 255, 255, 0);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
/* Applied by JS on both pages once user scrolls > 10px */
nav.scrolled {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.nav-logo img { height: 41px; width: 240px; object-fit: contain; display: block; }

.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a {
  font-weight: 700; font-size: 14px; color: #000;
  text-transform: uppercase; text-decoration: none;
  cursor: pointer; white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--yellow1); }

/* CTA pill button — "Get AI Pod Recommendation" */
.call-genni-link {
  display: flex; align-items: center; gap: 6px;
  width: auto; text-decoration: none;
  background: var(--grad-yellow);
  border-radius: 56px;
  padding: 10px 18px;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}
.call-genni-link:hover {
  box-shadow: 0 6px 16px rgba(234,179,8,0.4);
  transform: translateY(-1px);
}
.call-genni-link .star-icon { width: 16px; height: 16px; flex-shrink: 0; filter: brightness(0) invert(1); }
.call-genni-link span {
  font-weight: 700; font-size: 13px; color: #fff;
  text-transform: uppercase; white-space: nowrap;
}

/* ── HAMBURGER ────────────────────────────────────────────── */
.hamburger {
  display: none; flex-direction: column; gap: 6px;
  cursor: pointer; padding: 8px;
}
.hamburger span {
  display: block; width: 32px; height: 4px;
  background: var(--yellow1); border-radius: 20px; transition: all 0.3s;
}
.hamburger span:nth-child(2) { width: 26px; }

/* ── MOBILE MENU PANEL ────────────────────────────────────── */
.mobile-menu {
  display: none; position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 200;
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .close-btn {
  position: absolute; top: 24px; right: 24px;
  font-size: 32px; font-weight: 700; cursor: pointer;
  color: #000; background: none; border: none;
}
.mobile-menu a {
  font-weight: 700; font-size: 22px; color: #000;
  text-transform: uppercase; text-decoration: none;
}
.mobile-menu .call-genni-mobile {
  display: flex; align-items: center; gap: 8px; text-decoration: none;
  background: var(--grad-yellow); border-radius: 56px;
  padding: 14px 24px; margin-top: 8px;
}
.mobile-menu .call-genni-mobile img { filter: brightness(0) invert(1); }
.mobile-menu .call-genni-mobile span {
  font-weight: 700; font-size: 16px; color: #fff; text-transform: uppercase; text-align: center;
}

/* ── BUTTONS ──────────────────────────────────────────────── */

/* Gradient buttons use a pseudo-element trick so the hover gradient
   can cross-fade smoothly (CSS can't transition between gradients directly) */
.btn-yellow,
.btn-blue {
  position: relative; overflow: hidden;
  border: none; border-radius: 56px;
  height: 64px; min-width: 300px; padding: 10px 24px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  cursor: pointer; text-decoration: none;
  font-weight: 700; font-size: 18px; color: #fff;
  text-transform: uppercase; white-space: nowrap;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.btn-yellow {
  background: var(--grad-yellow);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.24);
}
.btn-yellow::after {
  content: ''; position: absolute; inset: 0; border-radius: 56px;
  background: linear-gradient(to right, #f5c040, #d4921f);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-yellow:hover { box-shadow: 0 12px 24px rgba(0, 0, 0, 0.32); transform: translateY(-2px); }
.btn-yellow:hover::after { opacity: 0; }
.btn-yellow:active { transform: translateY(0); box-shadow: 0 6px 12px rgba(0,0,0,0.2); }
/* Keep text/icon above the pseudo-element */
.btn-yellow > * { position: relative; z-index: 1; }

.btn-blue {
  background: var(--grad-blue);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.24);
}
.btn-blue::after {
  content: ''; position: absolute; inset: 0; border-radius: 56px;
  background: linear-gradient(to right, #93cde8, #0a4f8a);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-blue:hover { box-shadow: 0 12px 24px rgba(0, 0, 0, 0.32); transform: translateY(-2px); }
.btn-blue:hover::after { opacity: 0; }
.btn-blue:active { transform: translateY(0); box-shadow: 0 6px 12px rgba(0,0,0,0.2); }
.btn-blue > * { position: relative; z-index: 1; }

/* Outline buttons */
.btn-outline-yellow {
  background: #fff; border: 3px solid var(--yellow1); border-radius: 56px;
  height: 64px; padding: 10px 32px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  cursor: pointer; text-decoration: none;
  font-weight: 700; font-size: 18px; color: var(--yellow1);
  text-transform: uppercase; white-space: nowrap;
  transition: background 0.3s ease, color 0.3s ease,
              box-shadow 0.3s ease, transform 0.2s ease;
}
.btn-outline-yellow:hover {
  background: var(--yellow1); color: #fff;
  box-shadow: 0 8px 20px rgba(234, 179, 8, 0.35);
  transform: translateY(-2px);
}
.btn-outline-yellow:hover img { filter: brightness(0) invert(1); }
.btn-outline-yellow:active { transform: translateY(0); box-shadow: none; }

.btn-outline-blue {
  background: #fff; border: 3px solid var(--blue1); border-radius: 56px;
  height: 64px; padding: 10px 32px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  cursor: pointer; text-decoration: none;
  font-weight: 700; font-size: 18px; color: var(--blue1);
  text-transform: uppercase; white-space: nowrap;
  transition: background 0.3s ease, color 0.3s ease,
              box-shadow 0.3s ease, transform 0.2s ease;
}
.btn-outline-blue:hover {
  background: var(--blue1); color: #fff;
  box-shadow: 0 8px 20px rgba(14, 94, 164, 0.35);
  transform: translateY(-2px);
}
.btn-outline-blue:hover img { filter: brightness(0) invert(1); }
.btn-outline-blue:active { transform: translateY(0); box-shadow: none; }

/* Shared icon sizing */
.btn-yellow img, .btn-blue img,
.btn-outline-yellow img, .btn-outline-blue img {
  width: 24px; height: 24px; flex-shrink: 0;
  transition: filter 0.3s ease;
}

/* Small link-style buttons (learn more / start hiring) */
.learn-more,
.start-hiring {
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.learn-more:hover,
.start-hiring:hover {
  opacity: 0.75;
  transform: translateX(3px);
}
.arrows-down { width: 24px; height: 24px; }

/* ── SECTION COMMON ───────────────────────────────────────── */
section { width: 100%; }
.section-center {
  display: flex; flex-direction: column; align-items: center;
  gap: 40px; padding: 80px 16px;
}
.section-title {
  font-weight: 700; font-size: 32px; color: #000;
  text-align: center; max-width: 588px;
}
.section-desc {
  font-weight: 400; font-size: 18px; line-height: 26px;
  color: #000; text-align: center; max-width: 640px;
}

/* ── HERO (INDEX) ─────────────────────────────────────────── */
.hero {
  /* White page bg — the curve image provides the cream shape */
  background: #FFF8ED;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

/* The curve-bg image: full width, natural aspect ratio (2560:754),
   positioned at the bottom of the hero so the arch sits under the content */
.hero-curve-bg {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  line-height: 0; /* remove inline gap */
  z-index: 0;
}
.hero-curve-bg img {
  width: 100%;
  /* maintain the 2560:754 ratio */
  aspect-ratio: 2560 / 754;
  object-fit: cover;
  display: block;
}

/* All hero content sits above the curve */
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-image-wrap {
  width: 520px;
  height: 347px;
  position: relative;
  flex-shrink: 0;
}
.hero-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; mix-blend-mode: darken;
}

.hero-content {
  width: 100%;
  display: flex; flex-direction: column; align-items: center;
  gap: 40px; padding: 0 16px 40px;
}
.hero-title {
  font-weight: 700; font-size: 40px; color: #000;
  text-align: center; max-width: 630px;
}
.hero-desc-wrap {
  display: flex; flex-direction: column; gap: 24px;
  align-items: center; max-width: 640px; width: 100%;
}
.hero-desc {
  font-weight: 400; font-size: 16px; line-height: 26px;
  color: #000; text-align: center;
}
.hero-buttons {
  display: flex; gap: 24px; align-items: flex-start;
  flex-wrap: wrap; justify-content: center;
}

/* ── STATISTICS ───────────────────────────────────────────── */
.statistics {
  background: #fff; padding: 80px 16px;
  display: flex; align-items: center; justify-content: center;
}
.stats-inner {
  display: flex; gap: 0; align-items: stretch;
  justify-content: center; flex-wrap: wrap;
  max-width: 1100px; width: 100%;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 48px; flex: 1; min-width: 200px;
  /* Vertical divider between items */
  border-right: 2px solid #F0F0F0;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-weight: 700; font-size: 56px; color: var(--yellow1); line-height: 1;
}
/* Text-only stat (no counter animation needed) */
.stat-number--text {
  font-size: 40px; line-height: 1.1;
}
.stat-label-2 {
  font-weight: 700; font-size: 40px; color: var(--yellow1);
  margin-top: 6px; line-height: 1.3;
}
.stat-label {
  font-weight: 700; font-size: 15px; color: var(--yellow1);
  margin-top: 6px; line-height: 1.3;
}

/* ── SERVICES ─────────────────────────────────────────────── */
.services { background: var(--yellow2); }
.services-cards {
  display: flex; gap: 16px; align-items: flex-start;
  justify-content: center; flex-wrap: nowrap;
  padding: 0 16px; max-width: 1280px; width: 100%;
}
.service-card {
  background: #fff; border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.16);
  padding: 24px; display: flex; flex-direction: column; gap: 14px;
  height: 280px; width: 225px; flex-shrink: 0;
}
.service-card img.card-icon { width: 48px; height: 48px; }
.card-title { font-weight: 700; font-size: 17px; line-height: 1.4; color: #000; }
.card-desc { font-weight: 400; font-size: 12px; line-height: 1.5; color: #444; flex: 1; }

/* Mobile horizontal slider (hidden on desktop) */
.cards-slider-wrap { display: none; }

/* ── CTA SECTIONS ─────────────────────────────────────────── */
.add-1 { background: #fff; }
.add-2 { background: #fff; }
.add-3 { background: #fff; }
.cta-buttons {
  display: flex; gap: 32px; align-items: center;
  flex-wrap: wrap; justify-content: center;
}
.add-2-text {
  font-weight: 400; font-size: 18px; color: #000;
  text-align: center; line-height: 26px; max-width: 670px;
}

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.how-it-works { background: var(--yellow2); }
.how-cards {
  display: flex; flex-wrap: wrap; gap: 56px 32px;
  align-items: flex-start; justify-content: center;
  padding-top: 40px; padding-left: 16px; padding-right: 16px;
  max-width: 1280px; width: 100%;
}
.how-card {
  background: #fff; border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.16);
  padding: 32px 16px 24px; width: 320px; min-height: 150px;
  display: flex; flex-direction: column; gap: 16px;
  align-items: center; position: relative;
}
.step-badge {
  position: absolute; top: -24px; left: 50%; transform: translateX(-50%);
  width: 48px; height: 48px; border-radius: 40px; background: var(--yellow1);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 24px; color: #fff; text-transform: uppercase;
}
.how-card-title {
  font-weight: 700; font-size: 18px; line-height: 26px;
  color: #000; text-align: center;
}
.how-card-desc {
  font-weight: 400; font-size: 12px; line-height: 1.4;
  color: #000; text-align: center; flex: 1;
}

/* ── WHY DIFFERENT ────────────────────────────────────────── */
.why-different { background: var(--yellow2); }
.diff-cards {
  display: flex; flex-wrap: wrap; gap: 24px;
  align-items: flex-start; justify-content: center;
  padding: 0 16px; max-width: 960px; width: 100%;
}
.diff-card {
  background: #fff; border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  padding: 28px 24px; flex: 1; width: 280px; height: 200px;
  display: flex; flex-direction: column; gap: 8px;
}
.diff-card-icon { width: 28px; height: 28px; margin-bottom: 4px; }
.diff-card-title { font-weight: 700; font-size: 17px; line-height: 1.4; color: #000; }
.diff-card-desc { font-weight: 400; font-size: 14px; line-height: 1.5; color: #555; }

/* ── FIND TALENT ──────────────────────────────────────────── */
.find-talent { background: var(--blue3); }

/* ── AI AUTOMATION FACTORY ────────────────────────────────── */
.ai-automation { background: #FFEBCB; }

.auto-cards {
  display: flex; gap: 16px; align-items: flex-start;
  justify-content: center; flex-wrap: nowrap;
  padding: 0 16px; max-width: 1280px; width: 100%;
}
.auto-card {
  background: #fff; border-radius: 8px;
  box-shadow: 0 8px 8px rgba(0,0,0,0.16);
  padding: 24px; width: 260px; height: 260px; flex-shrink: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.auto-card-icon { width: 48px; height: 48px; flex-shrink: 0; }
.auto-card-title { font-weight: 700; font-size: 18px; line-height: 26px; color: #000; }
.auto-card-desc  { font-weight: 400; font-size: 14px; line-height: 24px; color: #000; flex: 1; }

/* Mobile slider — hidden on desktop */
.auto-slider-wrap { display: none; }

/* ── DELIVERY MODEL ───────────────────────────────────────── */
.delivery-model { background: var(--blue2); }
/* Override section-title color for white bg variant */
.delivery-model .section-title { color: #fff; }

.delivery-cards {
  display: flex; gap: 16px; align-items: flex-start;
  justify-content: center; flex-wrap: nowrap;
  padding: 0 16px; max-width: 1280px; width: 100%;
}
.delivery-card {
  background: #fff; border-radius: 8px;
  box-shadow: 0 8px 8px rgba(0,0,0,0.16);
  padding: 24px; width: 260px; min-height: 306px; flex-shrink: 0;
  display: flex; flex-direction: column; gap: 16px;
}
.delivery-card-header { display: flex; flex-direction: column; gap: 4px; }
.delivery-option {
  font-weight: 700; font-size: 20px; line-height: 1;
  color: var(--blue2); text-transform: uppercase;
}
.delivery-card-title { font-weight: 700; font-size: 18px; line-height: 26px; color: #000; }
.delivery-row { display: flex; flex-direction: column; gap: 0; }
.delivery-label { font-weight: 700; font-size: 12px; line-height: 1.4; color: #000; }
.delivery-text  { font-weight: 400; font-size: 12px; line-height: 22px; color: #000; }

/* White-border variant of outline-blue for use on blue background */
.btn-outline-blue--white {
  border-color: #fff; color: var(--blue1);
  background: #fff;
}
.btn-outline-blue--white:hover {
  background: var(--blue1); color: #fff;
  box-shadow: 0 8px 20px rgba(255,255,255,0.25);
}

/* Mobile slider — hidden on desktop */
.delivery-slider-wrap { display: none; }

/* ── INDUSTRIES ───────────────────────────────────────────── */
.industries { background: var(--blue3); }
.industry-cards {
  display: flex; flex-wrap: wrap; gap: 32px;
  align-items: flex-start; justify-content: center;
  padding: 0 16px; max-width: 1280px; width: 100%;
}
.industry-card {
  background: #fff; border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.16);
  padding: 24px; width: 320px;
  display: flex; flex-direction: column; gap: 16px;
}
.industry-card img.card-icon { width: 48px; height: 48px; }
.industry-card-header { display: flex; flex-direction: column; gap: 4px; }
.industry-card-header .name { font-weight: 700; font-size: 18px; line-height: 26px; color: #000; }
.industry-card-header .market {
  font-weight: 700; font-size: 12px; color: var(--blue2); text-transform: uppercase;
}
.industry-card-roles { display: flex; flex-direction: column; font-size: 12px; line-height: 1.4; color: #000; }
.industry-card-roles .roles-label { font-weight: 700; }
.industry-card-roles .roles-list { font-weight: 400; }
.start-hiring { display: flex; align-items: center; gap: 4px; text-decoration: none; }
.start-hiring span {
  font-weight: 700; font-size: 16px; line-height: 26px;
  color: var(--blue2); text-transform: uppercase; white-space: nowrap;
}
.start-hiring img { width: 16px; height: 16px; }

/* Mobile industry slider (hidden on desktop) */
.industry-slider-wrap { display: none; }
.industry-cards-desktop { /* shown on desktop by default */ }

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: var(--dark-navy);
  display: flex; flex-direction: column; align-items: center;
  gap: 96px; padding: 80px 16px 24px;
}
.footer-top { display: flex; flex-direction: column; align-items: center; gap: 40px; }
.footer-top h2 {
  font-weight: 700; font-size: 32px; color: #fff;
  text-align: center; max-width: 588px;
}
.footer-contact {
  display: flex; gap: 120px; align-items: flex-start;
  flex-wrap: wrap; justify-content: center;
}
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col-title { font-weight: 700; font-size: 18px; color: var(--yellow1); }
.footer-col p { font-weight: 400; font-size: 16px; color: #fff; line-height: 26px; }
.footer-col a { font-weight: 400; font-size: 16px; color: #fff8ed; text-decoration: none; }
.footer-call { display: flex; align-items: center; gap: 4px; }
.footer-call span {
  font-weight: 700; font-size: 16px; color: #fff;
  text-transform: uppercase; white-space: nowrap;
}
.footer-mid { display: flex; flex-direction: column; align-items: center; gap: 24px; width: 100%; }
.footer-tagline {
  font-weight: 400; font-size: 16px; color: #fff;
  text-align: center; max-width: 420px;
}
.footer-bottom { display: flex; flex-direction: column; align-items: center; gap: 40px; }
.footer-links {
  display: flex; gap: 56px; align-items: flex-start;
  flex-wrap: wrap; justify-content: center;
}
.footer-links a {
  font-weight: 700; font-size: 16px; color: #fff;
  text-transform: uppercase; text-decoration: none; white-space: nowrap;
}
.footer-copy { font-weight: 400; font-size: 16px; color: #fff; text-align: center; }

/* ── MOBILE STICKY CALL BAR ───────────────────────────────── */
.mobile-call-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  height: 72px; background: #fff;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.25);
  align-items: center; justify-content: center;
}
.mobile-call-bar a { display: flex; align-items: center; gap: 4px; text-decoration: none; }
.mobile-call-bar img { width: 16px; height: 16px; }
.mobile-call-bar span {
  font-weight: 700; font-size: 16px; color: var(--yellow1); text-transform: uppercase;
}

/* ── ABOUT PAGE ───────────────────────────────────────────── */
.about-hero {
  background: #FFF8ED;
  display: flex; flex-direction: column; align-items: center;
  padding-bottom: 80px;
}
.about-hero-img { width: 520px; height: 305px; object-fit: cover; }
.about-hero-content {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; padding: 0 16px; text-align: center;
}
.about-hero h1 { font-weight: 700; font-size: 40px; color: #000; max-width: 630px; }
.about-hero .subtitle { font-weight: 400; font-size: 20px; line-height: 26px; color: #000; }
.about-hero .desc {
  font-weight: 400; font-size: 16px; line-height: 26px; color: #000;
  max-width: 630px; margin-top: 16px; text-align: center;
}
.about-hero .desc b { font-weight: 700; }

.values {
  background: var(--yellow2);
  display: flex; gap: 80px; align-items: flex-start;
  justify-content: center; padding: 80px 16px; flex-wrap: wrap;
}
.values-col { display: flex; flex-direction: column; gap: 24px; max-width: 400px; width: 100%; }
.values-col img.val-icon { width: 48px; height: 48px; }
.values-col h3 { font-weight: 700; font-size: 24px; color: #000; white-space: nowrap; }
.usp-list { display: flex; flex-direction: column; gap: 16px; }
.usp-item { display: flex; gap: 4px; align-items: flex-end; flex-wrap: wrap; }
.usp-item .usp-title { font-weight: 700; font-size: 16px; line-height: 26px; color: #000; }
.usp-item .usp-sub { font-weight: 400; font-size: 14px; line-height: 24px; color: #000; }
.impact-list { display: flex; flex-direction: column; gap: 16px; }
.impact-list p { font-weight: 700; font-size: 16px; line-height: 26px; color: #000; }

.our-team {
  background: var(--blue3);
  display: flex; flex-direction: column; align-items: center;
  gap: 24px; padding: 80px 16px;
}
.our-team h2 {
  font-weight: 700; font-size: 24px; color: #000;
  text-align: center; max-width: 630px;
}
.team-inner {
  display: flex; gap: 64px; align-items: center;
  flex-wrap: wrap; justify-content: center;
}
.team-img { width: 400px; height: 267px; object-fit: cover; mix-blend-mode: darken; }
.team-right {
  display: flex; flex-direction: column; gap: 16px;
  align-items: center; max-width: 400px;
}
.team-right p {
  font-weight: 400; font-size: 14px; line-height: 24px;
  color: #000; text-align: left;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 0 16px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-call-bar { display: flex; }
  body { padding-bottom: 72px; }

  /* Hero */
  .hero-image-wrap { width: 100%; max-width: 360px; height: 240px; }
  .hero-title { font-size: 28px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-yellow, .btn-blue { min-width: 300px; }
  /* On mobile the curve is shorter — ensure it still covers the bottom */
  .hero-curve-bg img { aspect-ratio: 2560 / 900; }

  /* Stats — stack vertically, remove dividers, add horizontal rule instead */
  .stats-inner { flex-direction: column; align-items: center; gap: 0; }
  .stat-item {
    border-right: none;
    border-bottom: 2px solid #F0F0F0;
    padding: 28px 0; width: 100%; max-width: 320px;
  }
  .stat-item:last-child { border-bottom: none; }

  /* Services: hide desktop grid, show slider */
  .services-cards { display: none; }
  .cards-slider-wrap {
    display: block;
    overflow-x: auto; overflow-y: hidden;
    width: 100%; -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }
  .cards-slider-wrap::-webkit-scrollbar { height: 4px; }
  .cards-slider-wrap::-webkit-scrollbar-thumb {
    background: var(--yellow1); border-radius: 4px;
  }
  .cards-slider-inner {
    display: flex; gap: 16px; padding: 8px 16px; width: max-content;
  }

  /* AI Automation: hide desktop grid, show slider */
  .auto-cards { display: none; }
  .auto-slider-wrap {
    display: block;
    overflow-x: auto; overflow-y: hidden;
    width: 100%; -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }
  .auto-slider-wrap::-webkit-scrollbar { height: 4px; }
  .auto-slider-wrap::-webkit-scrollbar-thumb { background: var(--yellow1); border-radius: 4px; }
  .auto-slider-inner {
    display: flex; gap: 16px; padding: 8px 16px; width: max-content;
  }
  .auto-slider-inner .auto-card { width: 260px; height: auto; flex-shrink: 0; }

  /* Delivery Model: hide desktop grid, show slider */
  .delivery-cards { display: none; }
  .delivery-slider-wrap {
    display: block;
    overflow-x: auto; overflow-y: hidden;
    width: 100%; -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }
  .delivery-slider-wrap::-webkit-scrollbar { height: 4px; }
  .delivery-slider-wrap::-webkit-scrollbar-thumb { background: #fff; border-radius: 4px; }
  .delivery-slider-inner {
    display: flex; gap: 16px; padding: 8px 16px; width: max-content;
  }
  .delivery-slider-inner .delivery-card { width: 280px; flex-shrink: 0; }

  /* Industries: hide desktop grid, show slider */
  .industry-cards-desktop { display: none; }
  .industry-slider-wrap {
    display: block;
    overflow-x: auto; overflow-y: hidden;
    width: 100%; -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }
  .industry-slider-wrap::-webkit-scrollbar { height: 4px; }
  .industry-slider-wrap::-webkit-scrollbar-thumb {
    background: var(--blue2); border-radius: 4px;
  }
  .industry-slider-inner {
    display: flex; gap: 32px; padding: 8px 16px; width: max-content;
  }
  .industry-slider-inner .industry-card { width: 320px; flex-shrink: 0; }

  /* How it works */
  .how-cards { gap: 56px 16px; }
  .how-card { width: 320px; }

  /* Diff cards — full width single column on mobile */
  .diff-cards { flex-direction: column; align-items: center; gap: 16px; padding: 0 16px; }
  .diff-card { width: 100%; max-width: 480px; min-width: unset; }

  /* CTA */
  .cta-buttons { flex-direction: column; align-items: center; }

  /* Footer */
  .footer-contact { flex-direction: column; gap: 64px; align-items: center; text-align: center; }
  .footer-col { align-items: center; }
  .footer-links { flex-direction: column; align-items: center; gap: 32px; }

  /* Nav logo */
  .nav-logo img { height: 27px; width: 160px; }

  /* About */
  .about-hero-img { width: 100%; max-width: 360px; height: 220px; }
  .about-hero h1 { font-size: 28px; }
  .values { flex-direction: column; gap: 48px; align-items: center; padding: 40px 24px; }
  .team-inner { flex-direction: column; gap: 24px; }
  .team-img { width: 300px; height: 200px; }
}
