/* 
   FONT — local Sen (matches your @font-face declarations)
    */
@font-face {
  font-family: 'Sen';
  src: url("../assets/font/Sen-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sen';
  src: url("../assets/font/Sen-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sen';
  src: url("../assets/font/Sen-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sen';
  src: url("../assets/font/Sen-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sen';
  src: url("../assets/font/Sen-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* 
   TOKENS
    */
:root {
  --blue: #1a47e5;
  --blue-dark: #0f2a8a;
  --navy: #1a2340;
  --gray: #4a5568;
  --gray-light: #6b7280;
  --bg: #ffffff;
  --card-bg: #f0f3fc;
  --border: #d9e0f5;
  --accent-bar: #1a47e5;
  --dark-bg: #07112b;
  --section-bg: #e8edf8;
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* section-specific */
  --card-glass: rgba(255, 255, 255, 0.06);
  --card-glass-hover: rgba(255, 255, 255, 0.10);
  --card-border: rgba(255, 255, 255, 0.12);
  --text-primary: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.60);
  --text-faint: rgba(255, 255, 255, 0.40);

  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  /* section-specific dark palette */
  --s5-bg: #071228;
  --s5-card-bg: rgba(255, 255, 255, 0.055);
  --s5-card-border: rgba(255, 255, 255, 0.10);
  --s5-track-bg: rgba(255, 255, 255, 0.07);
  --s5-text: #ffffff;
  --s5-muted: rgba(255, 255, 255, 0.45);
  --s5-label: rgba(255, 255, 255, 0.38);
}

/* 
   RESET
    */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Sen', sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* 
   SECTION SHELL
    */
.contact-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 24px;
}

/* ── Background layers ── */
.bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 50%, #0c1f6e 0%, transparent 65%),
    radial-gradient(ellipse 60% 80% at 80% 20%, #0a1a5c 0%, transparent 60%),
    radial-gradient(ellipse 100% 100% at 50% 50%, #07112b 40%, #030a1a 100%);
  z-index: 0;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  pointer-events: none;
  animation: orbFloat 12s ease-in-out infinite alternate;
  z-index: 1;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #1a47e5 0%, transparent 70%);
  top: -120px;
  left: -160px;
  animation-duration: 14s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #0f2a8a 0%, transparent 70%);
  bottom: -80px;
  right: 10%;
  animation-duration: 10s;
  animation-delay: -4s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #1a47e5 0%, transparent 70%);
  top: 40%;
  right: -80px;
  opacity: 0.25;
  animation-duration: 16s;
  animation-delay: -8s;
}

@keyframes orbFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, -20px) scale(1.05);
  }

  100% {
    transform: translate(-20px, 30px) scale(0.97);
  }
}

/* dot grid */
.bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 36px 36px;
  z-index: 2;
  pointer-events: none;
}

/* 
   LAYOUT CONTAINER
    */
.contact-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* 
   LEFT — TEXT BLOCK
    */

/* ── Badge ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 9px 18px;
  font-family: 'Sen', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
  }
}

/* ── Headline ── */
.headline {
  font-family: 'Sen', sans-serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 28px;
}

.headline-accent {
  color: #6b8ff8;
  display: inline-block;
}

/* ── Subtext ── */
.subtext-wrap {
  display: flex;
  gap: 18px;
  margin-bottom: 40px;
}

.subtext-bar {
  flex-shrink: 0;
  width: 3px;
  border-radius: 4px;
  background: var(--blue);
  align-self: stretch;
}

.subtext {
  font-family: 'Sen', sans-serif;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
  max-width: 480px;
}

/* ── CTA Row ── */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: #ffffff;
  font-family: 'Sen', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 14px 26px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s var(--ease-spring),
    box-shadow 0.25s;
  box-shadow: 0 4px 24px rgba(26, 71, 229, 0.45);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background 0.2s;
}

.btn-primary:hover::after {
  background: rgba(255, 255, 255, 0.08);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26, 71, 229, 0.60);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-arrow {
  display: flex;
  align-items: center;
  transition: transform 0.25s var(--ease-out-expo);
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.80);
  font-family: 'Sen', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.25s var(--ease-spring);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.30);
  transform: translateY(-2px);
}

.btn-ghost:active {
  transform: translateY(0);
}

/* 
   RIGHT — CARDS
    */
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ── Stat row ── */
.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.stat-card {
  background: var(--card-glass);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 28px 28px 24px;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: background 0.3s, transform 0.3s var(--ease-spring),
    box-shadow 0.3s;
  cursor: default;
}

.stat-card:hover {
  background: var(--card-glass-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.stat-number {
  font-size: clamp(44px, 5vw, 56px);
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  display: flex;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 8px;
}

.stat-plus {
  font-size: clamp(24px, 2.5vw, 30px);
  font-weight: 700;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.80);
}

.stat-sub {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
}

/* ── HQ Card ── */
.hq-card {
  background: var(--card-glass);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 28px 30px 24px;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: background 0.3s, transform 0.3s var(--ease-spring),
    box-shadow 0.3s;
  cursor: default;
}

.hq-card:hover {
  background: var(--card-glass-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.hq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.hq-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.hq-status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: #4ade80;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2.4s ease-out infinite;
  flex-shrink: 0;
}

.hq-address {
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  line-height: 1.4;
}

.hq-city {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.hq-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 2px;
}

/* 
   AOS — ANIMATION ON SCROLL (lightweight custom)
    */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out-expo),
    transform 0.7s var(--ease-out-expo);
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* 
   RESPONSIVE — TABLET  (≤ 1024px)
    */
@media (max-width: 1024px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 720px;
  }

  .contact-right {
    width: 100%;
  }
}

/* 
   RESPONSIVE — MOBILE  (≤ 640px)
    */
@media (max-width: 640px) {
  .contact-section {
    padding: 64px 20px;
  }

  .badge {
    font-size: 10px;
    padding: 8px 14px;
  }

  .headline {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .subtext {
    font-size: 14px;
  }

  .cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .stat-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stat-card {
    padding: 20px 18px;
  }

  .hq-card {
    padding: 20px 20px;
  }

  .stat-number {
    font-size: 38px;
  }
}

@media (max-width: 400px) {
  .stat-row {
    grid-template-columns: 1fr;
  }
}

/* 
   SECTION 2 — HEAD OFFICE
    */
.hq-section {
  position: relative;
  background: var(--section-bg);
  padding: 96px 24px;
  overflow: hidden;
}

/* subtle dot-grid texture */
.bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(26, 35, 64, .07) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

.hq-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 64px;
  align-items: center;
}

/* ── Left ── */
.hq-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.badge-light {
  display: inline-flex;
  align-items: center;
  background: rgba(26, 35, 64, 0.12);
  border-radius: 999px;
  padding: 9px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: var(--navy);
  margin-bottom: 28px;
  width: fit-content;
}

.hq-headline {
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 22px;
}

.hq-desc {
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 400;
  line-height: 1.75;
  color: var(--gray);
  max-width: 380px;
}

/* ── Cards wrapper ── */
.hq-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

/* ── Base card ── */
.info-card {
  border-radius: 20px;
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s;
  cursor: default;
}

.info-card:hover {
  transform: translateY(-6px);
}

/* Light card */
.card-light {
  background: #ffffff;
  box-shadow: 0 4px 28px rgba(26, 35, 64, 0.08);
}

.card-light:hover {
  box-shadow: 0 16px 48px rgba(26, 35, 64, 0.14);
}

/* Dark card */
.card-dark {
  background: var(--navy);
  box-shadow: 0 4px 28px rgba(26, 35, 64, 0.22);
}

.card-dark:hover {
  box-shadow: 0 16px 48px rgba(26, 35, 64, 0.40);
}

/* ── Icon wraps ── */
.card-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  flex-shrink: 0;
}

.icon-light {
  background: var(--section-bg);
  color: var(--navy);
}

.icon-dark {
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
}

/* ── Light card text ── */
.card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}

.card-detail {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray);
  line-height: 1.7;
}

/* ── Dark card text ── */
.label-dark {
  color: rgba(255, 255, 255, 0.55);
}

.contact-row-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 4px;
  margin-top: 16px;
}

.contact-row-label:first-of-type {
  margin-top: 0;
}

.contact-row-value {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.5;
}

.contact-row-value a {
  color: #ffffff;
  transition: opacity 0.2s;
}

.contact-row-value a:hover {
  opacity: 0.75;
}

.contact-row-value.phone {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* 
   SECTION 3 — COUNTRIES MARQUEE
    */
.countries-section {
  background: var(--blue);
  padding: 0;
  overflow: hidden;
  height: 56px;
  display: flex;
  align-items: center;
}

.countries-track-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      black 8%,
      black 92%,
      transparent 100%);
  mask-image: linear-gradient(to right,
      transparent 0%,
      black 8%,
      black 92%,
      transparent 100%);
}

.countries-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.countries-track:hover {
  animation-play-state: paused;
}

.countries-track li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: #ffffff;
  text-transform: uppercase;
  padding: 0 52px;
}

.country-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
  flex-shrink: 0;
  opacity: 0.80;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* 
   AOS — fade-up (matches contact.css pattern)
    */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out-expo),
    transform 0.7s var(--ease-out-expo);
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* 
   RESPONSIVE — TABLET  ≤ 1024px
    */
@media (max-width: 1024px) {
  .hq-container {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 680px;
  }

  .hq-desc {
    max-width: 100%;
  }
}

/* 
   RESPONSIVE — MOBILE  ≤ 640px
    */
@media (max-width: 640px) {
  .hq-section {
    padding: 64px 20px;
  }

  .hq-headline {
    font-size: 34px;
  }

  .hq-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .info-card {
    padding: 26px 22px 28px;
  }

  .countries-section {
    height: 52px;
  }

  .countries-track li {
    font-size: 11px;
    padding: 0 36px;
  }
}

/* 
   SECTION SHELL
    */
.partner-section {
  background: var(--bg);
  padding: 96px 24px 80px;
}

.partner-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 52px;
}

/* 
   TOP HEADER
    */
.section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-end;
}

/* ── Badge pill ── */
.badge-pill1 {
  display: inline-flex;
  align-items: center;
  background: var(--card-bg);
  border-radius: 999px;
  padding: 9px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: var(--navy);
  margin-bottom: 24px;
  width: fit-content;
}

/* ── Headline ── */
.section-headline1 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--navy);
}

/* ── Right desc ── */
.header-right {
  display: flex;
  align-items: flex-end;
  padding-bottom: 4px;
}

.section-desc1 {
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 400;
  line-height: 1.75;
  color: var(--gray-light);
  max-width: 440px;
}

/* 
   CARDS GRID  — 3 columns
    */
.cards-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.85fr;
  gap: 20px;
  align-items: stretch;
}

/* ── Base card ── */
.hub-card {
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s;
  cursor: default;
  min-height: 340px;
}

.hub-card:hover {
  transform: translateY(-6px);
}

.card-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px 32px 32px;
}

/* ── Card 1 — Navy ── */
.card-navy {
  background: var(--navy);
  box-shadow: 0 4px 28px rgba(26, 35, 64, 0.20);
}

.card-navy:hover {
  box-shadow: 0 16px 48px rgba(26, 35, 64, 0.35);
}

/* PRIMARY HUB tag (blue pill inside dark card) */
.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  margin-bottom: 22px;
}

.tag-blue {
  background: var(--blue);
  color: #ffffff;
}

.card-title {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 14px;
  line-height: 1.25;
}

.card-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.70;
  color: rgba(255, 255, 255, 0.55);
}

/* Active Operations badge */
.active-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #4ade80;
  margin-top: 40px;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
  animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
  }
}

/* ── Card 2 — Light (section-bg) ── */
.card-light {
  background: var(--section-bg);
  box-shadow: 0 2px 20px rgba(26, 35, 64, 0.06);
}

.card-light:hover {
  box-shadow: 0 12px 40px rgba(26, 35, 64, 0.12);
}

.region-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.region-city {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.2;
}

/* Partner list */
.partner-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.partner-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  line-height: 1.4;
}

.list-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-blue {
  background: var(--blue);
}

/* ── Card 3 — Blue ── */
.card-blue {
  background: var(--blue);
  box-shadow: 0 4px 28px rgba(26, 71, 229, 0.35);
}

.card-blue:hover {
  box-shadow: 0 16px 48px rgba(26, 71, 229, 0.50);
}

.label-on-blue {
  color: rgba(255, 255, 255, 0.65);
}

.city-on-blue {
  color: #ffffff;
}

/* CGS Tech chip */
.partner-chip {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 16px 18px;
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  transition: background 0.25s;
}

.card-blue:hover .partner-chip {
  background: rgba(255, 255, 255, 0.20);
}

.chip-name {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.chip-sub {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.70);
}

/* 
   EXPANSION PIPELINE BAR
    */
.expansion-bar {
  background: var(--navy);
  border-radius: 20px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.expansion-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* "• EXPANSION PIPELINE" mini tag */
.expansion-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: rgba(255, 255, 255, 0.60);
  width: fit-content;
}

.expansion-title {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

/* City pills */
.expansion-cities {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.city-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.01em;
  transition: background 0.25s, transform 0.25s var(--ease-spring);
  cursor: default;
}

.city-pill:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.city-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* 
   AOS  (same pattern as contact.css / section2_3.css)
    */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out-expo),
    transform 0.7s var(--ease-out-expo);
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* 
   RESPONSIVE — TABLET  ≤ 1024px
    */
@media (max-width: 1024px) {
  .partner-section {
    padding: 72px 24px 64px;
  }

  .section-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .header-right {
    align-items: flex-start;
  }

  .section-desc {
    max-width: 100%;
  }

  .cards-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .card-navy {
    grid-column: 1 / -1;
    min-height: 220px;
  }
}

/* 
   RESPONSIVE — MOBILE  ≤ 640px
    */
@media (max-width: 640px) {
  .partner-section {
    padding: 56px 16px 48px;
  }

  .partner-container {
    gap: 36px;
  }

  .section-headline {
    font-size: 30px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .card-navy {
    min-height: 90px;
  }

  .card-inner {
    padding: 28px 24px;
  }

  .expansion-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    gap: 24px;
  }

  .expansion-cities {
    width: 100%;
  }

  .city-pill {
    flex: 1;
    justify-content: center;
  }
}

@media (max-width: 400px) {
  .expansion-cities {
    flex-direction: column;
  }

  .city-pill {
    width: 100%;
  }
}

/* =====================================================================
   SECTION SHELL
   ===================================================================== */
.workforce-section {
  position: relative;
  background: var(--s5-bg);
  padding: 72px 24px 76px;
  overflow: hidden;
}

/* subtle deep gradient */
.bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 5% 40%, #0c1f6e 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 95% 70%, #0a1a5c 0%, transparent 55%),
    linear-gradient(180deg, #071228 0%, #060f22 100%);
  z-index: 0;
  pointer-events: none;
}

/* dot grid */
.bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  z-index: 1;
  pointer-events: none;
}

.workforce-container {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

/* =====================================================================
   TOP ROW
   ===================================================================== */
.top-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: flex-start;
}

/* ── Left ── */
.top-left {
  display: flex;
  flex-direction: column;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(26, 71, 229, 0.30);
  border: 1px solid rgba(26, 71, 229, 0.45);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: rgba(255, 255, 255, 0.80);
  margin-bottom: 20px;
  width: fit-content;
}

.section-headline {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 16px;
}

.section-desc {
  font-size: clamp(13px, 1.2vw, 14px);
  font-weight: 400;
  line-height: 1.75;
  color: var(--s5-muted);
  max-width: 420px;
}

/* ── Right — 3 stat cards ── */
.stat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: stretch;
}

.stat-card {
  background: var(--s5-card-bg);
  border: 1px solid var(--s5-card-border);
  border-radius: 14px;
  padding: 22px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: background 0.3s, transform 0.3s var(--ease-spring), box-shadow 0.3s;
  cursor: default;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.30);
}

.stat-number {
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 800;
  color: #6b8ff8;
  display: flex;
  align-items: flex-start;
  line-height: 1;
  gap: 1px;
}

.stat-plus {
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 700;
  margin-top: 3px;
  color: #6b8ff8;
}

.stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--s5-label);
  text-transform: uppercase;
}

/* =====================================================================
   BAR CHART ROWS
   ===================================================================== */
.bars-section {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Single full-width bar row ── */
.bar-row {
  padding: 18px 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bar-row:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

/* ── Meta row (name + stats) ── */
.bar-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.bar-name-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bar-name {
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}

.bar-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--s5-label);
  text-transform: uppercase;
  white-space: nowrap;
}

.bar-stats {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-shrink: 0;
}

.bar-count {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.bar-count .count-inline {
  font-size: 16px;
  font-weight: 700;
  color: #6b8ff8;
}

.members-label {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
}

.bar-pct {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  min-width: 36px;
  text-align: right;
}

/* ── Track + fill ── */
.bar-track {
  width: 100%;
  height: 5px;
  background: var(--s5-track-bg);
  border-radius: 999px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #1a47e5 0%, #4d7bff 100%);
  border-radius: 999px;
  transition: width 1.1s var(--ease-out-expo);
  will-change: width;
}

/* ── Split row — supports 2 or 3 columns ── */
.bar-row-split {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 18px 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.bar-half {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* =====================================================================
   AOS
   ===================================================================== */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out-expo),
    transform 0.7s var(--ease-out-expo);
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================================
   RESPONSIVE — TABLET  ≤ 1024px
   ===================================================================== */
@media (max-width: 1024px) {
  .top-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stat-cards {
    max-width: 480px;
  }

  .bar-row-split {
    gap: 20px;
  }
}

/* =====================================================================
   RESPONSIVE — MOBILE  ≤ 640px
   ===================================================================== */
@media (max-width: 640px) {
  .workforce-section {
    padding: 52px 18px 60px;
  }

  .workforce-container {
    gap: 36px;
  }

  .section-headline {
    font-size: 26px;
  }

  .stat-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .stat-card {
    padding: 18px 12px 14px;
  }

  .stat-number {
    font-size: 26px;
  }

  .stat-plus {
    font-size: 16px;
  }

  .bar-name {
    font-size: 13px;
  }

  .bar-tag {
    display: none;
  }

  .bar-row-split {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .bar-half {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding-bottom: 16px;
    padding-top: 16px;
  }

  .bar-half:first-child {
    padding-top: 0;
  }

  .bar-half:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media (max-width: 420px) {
  .stat-cards {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .stat-label {
    font-size: 9px;
    letter-spacing: 0.08em;
  }
}

/* =====================================================================
   SECTION 6 — STRATEGIC PARTNER  (sp-*)
   ===================================================================== */
.sp-section {
  background: var(--section-bg);
  padding: 96px 24px;
  overflow: hidden;
}

.sp-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ── Left ── */
.sp-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sp-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(26, 71, 229, 0.12);
  border-radius: 999px;
  padding: 9px 20px;
  font-family: 'Sen', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: var(--navy);
  margin-bottom: 28px;
  width: fit-content;
}

.sp-headline {
  font-family: 'Sen', sans-serif;
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 24px;
}

.sp-desc {
  font-family: 'Sen', sans-serif;
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 400;
  line-height: 1.75;
  color: var(--gray);
  max-width: 480px;
  margin-bottom: 40px;
}

.sp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #ffffff;
  font-family: 'Sen', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 10px;
  width: fit-content;
  transition: background 0.25s, transform 0.25s var(--ease-spring),
    box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(26, 35, 64, 0.22);
}

.sp-btn:hover {
  background: #0f1c36;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(26, 35, 64, 0.32);
}

.sp-btn:active {
  transform: translateY(0);
}

/* ── Right — 2×2 grid ── */
.sp-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sp-card {
  border-radius: 18px;
  padding: 36px 30px 30px;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
  cursor: default;
}

.sp-card:hover {
  transform: translateY(-5px);
}

/* Light card */
.sp-card--light {
  background: var(--card-bg);
  box-shadow: 0 2px 16px rgba(26, 35, 64, 0.06);
}

.sp-card--light:hover {
  box-shadow: 0 12px 36px rgba(26, 35, 64, 0.12);
}

/* Dark card */
.sp-card--dark {
  background: var(--navy);
  box-shadow: 0 4px 20px rgba(26, 35, 64, 0.25);
}

.sp-card--dark:hover {
  box-shadow: 0 12px 36px rgba(26, 35, 64, 0.40);
}

/* Blue card */
.sp-card--blue {
  background: var(--blue);
  box-shadow: 0 4px 24px rgba(26, 71, 229, 0.40);
}

.sp-card--blue:hover {
  box-shadow: 0 12px 40px rgba(26, 71, 229, 0.55);
}

/* Card typography */
.sp-card-title {
  font-family: 'Sen', sans-serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.sp-card-sub {
  font-family: 'Sen', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
}

/* Light card text */
.sp-card--light .sp-card-title {
  color: var(--navy);
}

.sp-card--light .sp-card-sub {
  color: var(--gray);
}

/* Dark card text */
.sp-card--dark .sp-card-title {
  color: #ffffff;
}

.sp-card--dark .sp-card-sub {
  color: rgba(255, 255, 255, 0.60);
}

/* Blue card text */
.sp-card--blue .sp-card-title {
  color: #ffffff;
}

.sp-card--blue .sp-card-sub {
  color: rgba(255, 255, 255, 0.75);
}

/* =====================================================================
   SECTION 7 — CONTACT FORM  (cf-*)
   ===================================================================== */
.cf-section {
  background: var(--bg);
  padding: 96px 24px;
}

.cf-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 32px;
  align-items: stretch;
}

/* ── Left panel (dark card) ── */
.cf-panel {
  background: var(--navy);
  border-radius: 20px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
}

.cf-panel-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 8px 16px;
  font-family: 'Sen', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 28px;
  width: fit-content;
}

.cf-panel-headline {
  font-family: 'Sen', sans-serif;
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 18px;
}

.cf-panel-desc {
  font-family: 'Sen', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.70;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
}

.cf-panel-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.10);
  margin: 20px 0;
  border-radius: 2px;
}

/* Contact items */
.cf-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 4px 0;
}

.cf-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.70);
}

.iconsize {
  width: 22px;
  height: 18px
}

.cf-contact-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cf-contact-label {
  font-family: 'Sen', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: rgba(255, 255, 255, 0.40);
  text-transform: uppercase;
}

.cf-contact-value {
  font-family: 'Sen', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  transition: opacity 0.2s;
}

a.cf-contact-value:hover {
  opacity: 0.75;
}

/* ── Right form card ── */
.cf-form-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px 44px 40px;
  box-shadow: 0 4px 32px rgba(26, 35, 64, 0.07);
}

.cf-form-title {
  font-family: 'Sen', sans-serif;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.cf-form-subtitle {
  font-family: 'Sen', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-light);
  line-height: 1.6;
  margin-bottom: 36px;
}

/* Form layout */
.cf-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.cf-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.cf-field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cf-field-full {
  width: 100%;
}

.cf-label {
  font-family: 'Sen', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: var(--gray);
  text-transform: uppercase;
}

.cf-input {
  font-family: 'Sen', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--navy);
  background: var(--section-bg);
  border: 1.5px solid transparent;
  border-radius: 10px;
  padding: 14px 16px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;

}

.cf-input::placeholder {
  color: var(--gray-light);
}

.cf-input:focus {
  border-color: var(--blue);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(26, 71, 229, 0.10);
}

/* Select arrow */
.cf-select {
  /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); */
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

/* Textarea */
.cf-textarea {
  resize: vertical;
  min-height: 128px;
  line-height: 1.6;
}

/* Form footer */
.cf-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.cf-privacy {
  font-family: 'Sen', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-light);
  line-height: 1.6;
  max-width: 320px;
}

.cf-privacy a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s;
}

.cf-privacy a:hover {
  opacity: 0.75;
}

.cf-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #ffffff;
  font-family: 'Sen', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.25s, transform 0.25s var(--ease-spring),
    box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(26, 35, 64, 0.22);
}

.cf-submit-btn:hover {
  background: #0f1c36;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(26, 35, 64, 0.32);
}

.cf-submit-btn:active {
  transform: translateY(0);
}

/* Success / error states (toggled by JS) */
.cf-input.cf-input--error {
  border-color: #e53e3e;
  background: #fff5f5;
}

.cf-input.cf-input--success {
  border-color: #38a169;
}

/* =====================================================================
   AOS — same pattern as all other sections
   ===================================================================== */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out-expo),
    transform 0.7s var(--ease-out-expo);
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================================
   RESPONSIVE — TABLET  ≤ 1024px
   ===================================================================== */
@media (max-width: 1024px) {

  /* Section 6 */
  .sp-container {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 680px;
  }

  /* Section 7 */
  .cf-container {
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .cf-panel {
    border-radius: 16px;
  }

  .cf-form-card {
    padding: 36px 32px;
  }
}

/* =====================================================================
   RESPONSIVE — MOBILE  ≤ 640px
   ===================================================================== */
@media (max-width: 640px) {
  .sp-section {
    padding: 64px 20px;
  }

  .sp-headline {
    font-size: 30px;
  }

  .sp-cards {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .sp-card {
    padding: 24px 20px 20px;
    min-height: 140px;
  }

  .cf-section {
    padding: 64px 20px;
  }

  .cf-field-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cf-form-card {
    padding: 28px 22px;
  }

  .cf-panel {
    padding: 32px 24px;
  }

  .cf-form-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .cf-submit-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .sp-cards {
    grid-template-columns: 1fr;
  }
}