/* ============================================================
   LIBURNA RECRUITMENT v2 - Built on Ethics
   ============================================================ */

/* --- Design Tokens --- */
:root {
  /* Colors - Primary (Brand Book) */
  --navy: #2D2B6B;
  --navy-light: #3d3a8a;
  --navy-dark: #1e1c4a;
  --teal: #4AACAC;
  --teal-light: #5ec4c4;
  --teal-dark: #3a8a8a;
  --gray-brand: #808080;

  /* Legacy aliases (used throughout CSS) */
  --blue-600: var(--navy);
  --blue-700: var(--navy-light);
  --blue-800: var(--navy-dark);
  --green-500: var(--teal);
  --green-600: var(--teal-dark);

  /* Backgrounds */
  --bg-white: #FFFFFF;
  --bg-light: #F8FAFC;
  --bg-blue-tint: #EEEDFA;
  --bg-hero: linear-gradient(180deg, #2D2B6B 0%, #1e1c4a 100%);
  --bg-footer: linear-gradient(180deg, #2D2B6B 0%, #1e1c4a 100%);
  --bg-cta: linear-gradient(135deg, #2D2B6B 0%, #1e1c4a 100%);

  /* Text */
  --text-dark: #1A1A2E;
  --text-body: #4B5563;
  --text-muted: #6B7280;
  --text-white: #FFFFFF;
  --text-white-70: rgba(255, 255, 255, 0.7);

  /* Borders & Shadows */
  --border-light: #E5E7EB;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
  --shadow-blue: 0 8px 30px rgba(45, 43, 107, 0.25);

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: clamp(1.75rem, 1.3rem + 2vw, 2.5rem);
  --fs-4xl: clamp(2.25rem, 1.5rem + 3.5vw, 3.5rem);
  --fs-5xl: clamp(2.75rem, 1.8rem + 4.5vw, 4.25rem);
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --lh-tight: 1.15;
  --lh-normal: 1.6;
  --lh-relaxed: 1.75;

  /* Spacing */
  --sp-1: 0.25rem; --sp-2: 0.5rem; --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-5: 1.25rem; --sp-6: 1.5rem; --sp-8: 2rem; --sp-10: 2.5rem;
  --sp-12: 3rem; --sp-16: 4rem; --sp-20: 5rem; --sp-24: 6rem;
  --section-py: clamp(4rem, 6vw, 7rem);

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.25rem;
  --radius-full: 9999px;

  /* Transitions */
  --t-fast: 150ms ease;
  --t-base: 250ms ease;
  --t-slow: 400ms ease;

  /* Layout */
  --container-max: 1200px;
  --nav-height: 80px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-family);
  font-size: var(--fs-base);
  font-weight: var(--fw-normal);
  line-height: var(--lh-normal);
  color: var(--text-body);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 { color: var(--text-dark); font-weight: var(--fw-bold); line-height: var(--lh-tight); }

/* --- Skip Link --- */
.skip-link {
  position: absolute; top: -100%; left: var(--sp-4); z-index: 10000;
  padding: var(--sp-3) var(--sp-6); background: var(--navy); color: var(--text-white);
  border-radius: var(--radius-md); font-weight: var(--fw-semibold); transition: top var(--t-fast);
}
.skip-link:focus { top: var(--sp-4); }

/* --- Utilities --- */
.container { width: 100%; max-width: var(--container-max); margin-inline: auto; padding-inline: var(--sp-6); }

.section { padding-block: var(--section-py); }

.section-header { text-align: center; max-width: 640px; margin-inline: auto; margin-bottom: var(--sp-16); }

.section-label {
  display: inline-block; font-size: var(--fs-sm); font-weight: var(--fw-bold);
  color: var(--teal); margin-bottom: var(--sp-3); letter-spacing: 0.02em;
}
.section-label--white { color: var(--text-white); }

.section-title { font-size: var(--fs-3xl); font-weight: var(--fw-extrabold); margin-bottom: var(--sp-4); }
.section-title--white { color: var(--text-white); }

.section-desc { font-size: var(--fs-lg); color: var(--text-muted); line-height: var(--lh-relaxed); }
.section-desc--white { color: var(--text-white-70); }

/* Underline accent under footer/section headings */
.underline-accent {
  display: block; width: 40px; height: 3px;
  background: var(--blue-600); border-radius: var(--radius-full); margin-top: var(--sp-3);
}
.underline-accent--green { background: var(--green-500); }
.underline-accent--teal { background: var(--teal); }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  font-size: var(--fs-base); font-weight: var(--fw-semibold); border-radius: var(--radius-lg);
  padding: 0.85rem 2rem; transition: all var(--t-base); white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--blue-600); outline-offset: 2px; }

.btn-primary {
  background: var(--teal); color: var(--text-white);
  box-shadow: 0 8px 30px rgba(74, 172, 172, 0.35);
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 12px 35px rgba(74, 172, 172, 0.45); }

.btn-outline {
  background: transparent; color: var(--text-white); border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

.btn-white { background: var(--bg-white); color: var(--blue-600); }
.btn-white:hover { background: #F1F5F9; transform: translateY(-2px); }

.btn-lg { padding: 1rem 2.5rem; font-size: var(--fs-lg); }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================================
   1. NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  background: transparent;
  transition: background var(--t-base), box-shadow var(--t-base);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}
.nav.scrolled .nav-link { color: var(--text-body); }
.nav.scrolled .nav-link:hover,
.nav.scrolled .nav-link.active { color: var(--blue-600); }
/* Logo swap handled via --white / --color classes */
.nav.scrolled .nav-phone { color: var(--text-dark); }
.nav.scrolled .nav-phone-icon { background: var(--blue-600); }
.nav.scrolled .nav-toggle span { background: var(--text-dark); }

.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.nav-logo { display: flex; align-items: center; z-index: 1001; }
.nav-logo-img {
  height: 44px; width: auto; object-fit: contain;
}
/* White logo visible by default over dark hero */
.nav-logo-img--color { display: none; }
.nav-logo-img--white { display: block; }
.nav.scrolled .nav-logo-img--color { display: block; }
.nav.scrolled .nav-logo-img--white { display: none; }

.nav-links { display: flex; align-items: center; gap: var(--sp-8); }

.nav-link {
  font-size: var(--fs-sm); font-weight: var(--fw-medium); color: var(--text-white-70);
  transition: color var(--t-fast); position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--text-white); }

.nav-links .nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.3s ease;
}
.nav-links .nav-link:hover::after,
.nav-links .nav-link.active::after {
  transform: scaleX(1); transform-origin: left;
}

.nav-right { display: flex; align-items: center; gap: var(--sp-4); }

/* Language Switcher */
.lang-switcher {
  display: flex; align-items: center; gap: var(--sp-1);
  background: rgba(255,255,255,0.1); border-radius: var(--radius-full);
  padding: 3px;
}
.lang-btn {
  padding: 4px 10px; font-size: var(--fs-xs); font-weight: var(--fw-semibold);
  color: var(--text-white-70); border-radius: var(--radius-full);
  transition: all var(--t-fast); cursor: pointer; border: none; background: none;
  line-height: 1.4;
}
.lang-btn:hover { color: var(--text-white); }
.lang-btn.active {
  background: var(--teal); color: var(--text-white);
}
.nav.scrolled .lang-switcher { background: rgba(45, 43, 107, 0.08); }
.nav.scrolled .lang-btn { color: var(--text-muted); }
.nav.scrolled .lang-btn:hover { color: var(--text-dark); }
.nav.scrolled .lang-btn.active { background: var(--teal); color: var(--text-white); }

.lang-switcher--mobile {
  background: rgba(45, 43, 107, 0.08); margin-bottom: var(--sp-4);
}
.lang-switcher--mobile .lang-btn { color: var(--text-muted); }
.lang-switcher--mobile .lang-btn.active { background: var(--teal); color: var(--text-white); }

.nav-phone {
  display: flex; align-items: center; gap: var(--sp-3);
  font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: var(--text-white);
}
.nav-phone-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center;
  color: var(--text-white);
}
.nav-phone-icon svg { width: 16px; height: 16px; }

/* Mobile Toggle */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 32px; height: 32px; z-index: 1001;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px; background: var(--text-white);
  border-radius: var(--radius-full); transition: all var(--t-base); transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-toggle[aria-expanded="true"] span { background: var(--text-dark); }

/* Mobile Menu */
.nav-mobile {
  display: none; position: fixed; inset: 0; z-index: 999; background: var(--bg-white);
  flex-direction: column; align-items: center; justify-content: center; gap: var(--sp-8);
  opacity: 0; visibility: hidden; transition: opacity var(--t-base), visibility var(--t-base);
}
.nav-mobile.open { opacity: 1; visibility: visible; }
.nav-mobile .nav-link { font-size: var(--fs-2xl); font-weight: var(--fw-semibold); color: var(--text-dark); }
.nav-mobile .nav-link:hover { color: var(--blue-600); }
.nav-mobile .btn { margin-top: var(--sp-4); }

/* ============================================================
   2. HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding-top: var(--nav-height); overflow: hidden;
  background: linear-gradient(135deg, #2D2B6B, #1e1c4a, #2D2B6B, #3d3a8a);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Radial glow behind globe (like v1) */
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(74, 172, 172, 0.3) 0%, transparent 55%);
  pointer-events: none; z-index: 0;
}

/* Video background */
.hero-video-wrapper {
  position: absolute; inset: 0; z-index: 0;
}
.hero-video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(45, 43, 107, 0.45) 0%, rgba(30, 28, 74, 0.55) 100%);
}

.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-12);
  align-items: center; position: relative; z-index: 1;
}

.hero-content { padding-block: var(--sp-16); }

.hero-label {
  display: inline-block; font-size: var(--fs-sm); font-weight: var(--fw-semibold);
  color: var(--teal-light); margin-bottom: var(--sp-4); letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  font-size: var(--fs-5xl); font-weight: var(--fw-extrabold); color: var(--text-white);
  line-height: 1.08; margin-bottom: var(--sp-6);
}

.hero-desc {
  font-size: var(--fs-lg); color: var(--text-white-70);
  line-height: var(--lh-relaxed); margin-bottom: var(--sp-10); max-width: 480px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: var(--sp-4); }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }

.hero-globe {
  width: 100%; max-width: 480px; aspect-ratio: 1; position: relative;
}
.hero-globe svg { width: 100%; height: 100%; }

/* Floating badges around hero */
.hero-badge {
  position: absolute; background: var(--bg-white); border-radius: var(--radius-xl);
  padding: var(--sp-4) var(--sp-5); box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: var(--sp-3); z-index: 2;
}
.hero-badge-icon {
  width: 40px; height: 40px; border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-white); font-size: var(--fs-lg); flex-shrink: 0;
}
.hero-badge-icon svg { width: 18px; height: 18px; }
.hero-badge-icon--navy { background: var(--navy); }
.hero-badge-icon--teal { background: var(--teal); }
.hero-badge strong { font-size: var(--fs-sm); color: var(--text-dark); display: block; }
.hero-badge span { font-size: var(--fs-xs); color: var(--text-muted); }

.hero-badge--top { top: 15%; right: 0; }
.hero-badge--bottom { bottom: 20%; left: -5%; }

/* ============================================================
   3. FEATURE CARDS
   ============================================================ */
.features {
  position: relative; z-index: 10; padding-block: var(--section-py);
}
.features-container { position: relative; }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6);
  perspective: 1000px; position: relative; z-index: 2;
}

/* --- Solid Navy Feature Cards --- */
.feature-card {
  background: var(--navy);
  border-radius: var(--radius-xl); padding: var(--sp-8);
  text-align: center; color: var(--text-white);
  transition: transform 0.3s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative; overflow: hidden;
  transform-style: preserve-3d; will-change: transform;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
  pointer-events: none;
}
.feature-card:hover::before {
  transform: scaleX(1);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(74, 172, 172, 0.4);
  box-shadow: 0 0 25px rgba(74, 172, 172, 0.2), 0 10px 40px rgba(45, 43, 107, 0.35);
}

.feature-card h3 {
  font-size: var(--fs-xl); font-weight: var(--fw-bold); color: var(--text-white);
  margin-bottom: var(--sp-3); position: relative;
}
.feature-card p {
  font-size: var(--fs-sm); color: var(--text-white-70);
  line-height: var(--lh-relaxed); position: relative;
}
.feature-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-5); position: relative;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.feature-card:hover .feature-icon {
  background: rgba(74, 172, 172, 0.15); border-color: var(--teal);
}
.feature-icon svg { width: 24px; height: 24px; color: var(--text-white); }

/* --- Plane Trail Animation (SVG wavy path) --- */
.plane-path {
  position: absolute;
  top: 50%; left: -8%; right: -8%;
  z-index: 1; pointer-events: none;
  transform: translateY(-50%);
  height: 220px;
}
.plane-svg { width: 100%; height: 100%; overflow: visible; }
.plane-trail-line {
  clip-path: inset(0 100% 0 0);
}
.features-container.plane-active .plane-trail-line {
  clip-path: inset(0 0% 0 0);
  transition: clip-path 8s linear;
}
.plane-svg-icon { opacity: 0; }
.features-container.plane-active .plane-svg-icon { opacity: 1; }

/* ============================================================
   3b. HOSPITALITY SPOTLIGHT
   ============================================================ */
.hospitality { background: var(--bg-light); }

.hospitality-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6);
  margin-bottom: var(--sp-10);
}

.hospitality-card {
  background: var(--bg-white); border-radius: var(--radius-xl);
  padding: var(--sp-6); border: 1px solid var(--border-light);
  transition: all var(--t-base);
}
.hospitality-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent;
}

.hospitality-card-header {
  display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-4); border-bottom: 2px solid var(--teal);
}
.hospitality-card-header svg { width: 28px; height: 28px; color: var(--teal); flex-shrink: 0; }
.hospitality-card-header h3 { font-size: var(--fs-base); font-weight: var(--fw-bold); margin: 0; }

.hospitality-roles {
  display: flex; flex-direction: column; gap: var(--sp-2);
}
.hospitality-roles li {
  font-size: var(--fs-sm); color: var(--text-muted); line-height: var(--lh-normal);
  padding-left: var(--sp-5); position: relative;
}
.hospitality-roles li::before {
  content: ''; position: absolute; left: 0; top: 0.55em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--teal);
}

.hospitality-philosophy {
  display: flex; flex-wrap: wrap; justify-content: center; gap: var(--sp-6);
  margin-bottom: var(--sp-6);
}
.hospitality-philosophy-item {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: var(--fs-sm); font-weight: var(--fw-medium); color: var(--text-dark);
}
.hospitality-philosophy-item svg { width: 20px; height: 20px; color: var(--teal); flex-shrink: 0; }

.hospitality-footnote {
  text-align: center; font-size: var(--fs-sm); color: var(--text-muted);
  font-style: italic; margin-bottom: var(--sp-8);
}

.hospitality-cta { text-align: center; }

/* ============================================================
   4. ABOUT
   ============================================================ */
.about { background: var(--bg-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-16); align-items: center; }

.about-image-wrapper { position: relative; }
.about-image {
  background: linear-gradient(135deg, var(--bg-blue-tint), #dbeafe);
  border-radius: var(--radius-2xl); aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.about-image svg { width: 55%; height: 55%; opacity: 0.5; }
.about-image-photo { width: 100%; height: 100%; object-fit: cover; }

.about-exp-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--green-500); color: var(--text-white); border-radius: var(--radius-xl);
  padding: var(--sp-5) var(--sp-6); text-align: center; box-shadow: var(--shadow-lg);
}
.about-exp-badge strong { font-size: var(--fs-2xl); display: block; font-weight: var(--fw-extrabold); }
.about-exp-badge span { font-size: var(--fs-xs); opacity: 0.9; }

.about-content .section-label { text-align: left; }
.about-content h2 { font-size: var(--fs-3xl); margin-bottom: var(--sp-6); }
.about-content p { color: var(--text-muted); line-height: var(--lh-relaxed); margin-bottom: var(--sp-5); }

.about-checks { display: flex; flex-direction: column; gap: var(--sp-4); margin: var(--sp-8) 0; }
.about-check {
  display: flex; align-items: center; gap: var(--sp-3);
  font-weight: var(--fw-medium); color: var(--text-dark);
}
.about-check-icon {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: var(--blue-600); color: var(--text-white);
  display: flex; align-items: center; justify-content: center;
}
.about-check-icon svg { width: 12px; height: 12px; }

/* ============================================================
   5. SERVICES
   ============================================================ */
.services { background: var(--bg-light); }

.services-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--sp-6); perspective: 1000px; }

.service-card {
  grid-column: span 2; background: var(--bg-white); border-radius: var(--radius-xl);
  padding: var(--sp-8); border: 1px solid var(--border-light);
  transition: all var(--t-base); position: relative; overflow: hidden;
  transform-style: preserve-3d; will-change: transform;
}
.service-card:nth-child(4) { grid-column: 2 / 4; }
.service-card:nth-child(5) { grid-column: 4 / 6; }

.service-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--blue-600); transform: scaleX(0); transition: transform var(--t-base);
  transform-origin: left;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px; border-radius: var(--radius-lg);
  background: var(--bg-blue-tint); color: var(--blue-600);
  display: flex; align-items: center; justify-content: center; margin-bottom: var(--sp-5);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: var(--fs-xl); margin-bottom: var(--sp-3); }
.service-card p { font-size: var(--fs-sm); color: var(--text-muted); line-height: var(--lh-relaxed); }

/* ============================================================
   6. HOW IT WORKS
   ============================================================ */
.process { background: var(--bg-white); }

.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--sp-6); text-align: center; }

.process-step { position: relative; }
.process-number {
  width: 52px; height: 52px; border-radius: 50%; margin: 0 auto var(--sp-5);
  background: var(--blue-600); color: var(--text-white);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--fs-xl); font-weight: var(--fw-bold); position: relative; z-index: 1;
  box-shadow: var(--shadow-blue);
}
.process-step h3 { font-size: var(--fs-base); font-weight: var(--fw-semibold); margin-bottom: var(--sp-2); }
.process-step p { font-size: var(--fs-sm); color: var(--text-muted); line-height: var(--lh-relaxed); }

/* Connecting line */
.process-grid::before {
  content: ''; position: absolute;
  top: 26px; left: calc(10% + 26px); right: calc(10% + 26px);
  height: 2px; background: var(--border-light); z-index: 0;
}
.process-grid { position: relative; }

/* ============================================================
   7. COUNTRIES / CTA BAND
   ============================================================ */
.countries-cta {
  background: var(--bg-cta); padding-block: var(--section-py);
  position: relative; overflow: hidden;
}
.countries-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(45, 43, 107, 0.3) 0%, transparent 50%);
}

.countries-inner { position: relative; z-index: 1; }
.countries-top { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-12); align-items: center; margin-bottom: var(--sp-16); }

.countries-top h2 { font-size: var(--fs-3xl); color: var(--text-white); margin-bottom: var(--sp-4); }
.countries-top p { color: var(--text-white-70); line-height: var(--lh-relaxed); }

.countries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }

.country-card {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-xl);
  padding: var(--sp-8); text-align: center; transition: all var(--t-base);
}
.country-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); }

.country-flag { font-size: 3rem; line-height: 1; margin-bottom: var(--sp-4); }
.country-card h3 { font-size: var(--fs-xl); color: var(--text-white); margin-bottom: var(--sp-2); }
.country-card > p { font-size: var(--fs-sm); color: var(--text-white-70); margin-bottom: var(--sp-5); line-height: var(--lh-relaxed); }

/* Unified industry pill layout */
.countries-top--centered { grid-template-columns: 1fr; text-align: center; }
.countries-top--centered h2 { font-size: var(--fs-3xl); color: var(--text-white); margin-bottom: var(--sp-4); }
.countries-top--centered p { color: var(--text-white-70); line-height: var(--lh-relaxed); max-width: 600px; margin-inline: auto; }

.industry-pills {
  display: flex; flex-wrap: wrap; justify-content: center; gap: var(--sp-3);
  margin-bottom: var(--sp-12);
}
.industry-pill {
  padding: var(--sp-3) var(--sp-6); font-size: var(--fs-base); font-weight: var(--fw-medium);
  background: rgba(255,255,255,0.1); color: var(--text-white); border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.15); transition: all var(--t-base);
}
.industry-pill:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
.industry-pill--featured {
  background: var(--teal); color: var(--text-white); font-weight: var(--fw-bold);
  font-size: var(--fs-lg); padding: var(--sp-3) var(--sp-8);
  border-color: var(--teal); box-shadow: 0 4px 20px rgba(74, 172, 172, 0.4);
}
.industry-pill--featured:hover { background: var(--teal-dark); }

.countries-cta-bottom { text-align: center; }

/* ============================================================
   8. TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--bg-blue-tint); }

.testimonials-slider { max-width: 800px; margin-inline: auto; overflow: hidden; }
.testimonials-track { display: flex; transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

.testimonial-slide { flex: 0 0 100%; padding: var(--sp-8); text-align: center; }

.testimonial-quote {
  font-size: var(--fs-xl); font-weight: var(--fw-medium); color: var(--text-dark);
  line-height: var(--lh-relaxed); margin-bottom: var(--sp-8); font-style: italic;
  position: relative;
}
.testimonial-quote::before {
  content: '\201C'; display: block; font-size: 4rem; line-height: 1;
  color: var(--blue-600); font-style: normal; margin-bottom: var(--sp-4);
}

.testimonial-author { display: flex; align-items: center; justify-content: center; gap: var(--sp-4); }
.testimonial-avatar {
  width: 52px; height: 52px; border-radius: 50%; background: var(--blue-600);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-white); font-weight: var(--fw-bold); font-size: var(--fs-lg);
}
.testimonial-info strong { display: block; font-size: var(--fs-base); color: var(--text-dark); }
.testimonial-info span { font-size: var(--fs-sm); color: var(--text-muted); }

.testimonial-stars { display: flex; justify-content: center; gap: var(--sp-1); margin-bottom: var(--sp-6); color: #F59E0B; }
.testimonial-stars svg { width: 20px; height: 20px; }

/* Slider Controls */
.slider-controls { display: flex; align-items: center; justify-content: center; gap: var(--sp-6); margin-top: var(--sp-8); }
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--border-light);
  display: flex; align-items: center; justify-content: center; color: var(--text-body);
  transition: all var(--t-base); background: var(--bg-white);
}
.slider-btn:hover { border-color: var(--blue-600); color: var(--blue-600); }
.slider-btn:focus-visible { outline: 3px solid var(--blue-600); outline-offset: 2px; }
.slider-btn svg { width: 20px; height: 20px; }

.slider-dots { display: flex; gap: var(--sp-2); }
.slider-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--border-light);
  border: none; padding: 0; transition: all var(--t-base); cursor: pointer;
}
.slider-dot.active { background: var(--blue-600); width: 28px; border-radius: var(--radius-full); }
.slider-dot:focus-visible { outline: 3px solid var(--blue-600); outline-offset: 2px; }

/* ============================================================
   9. FAQ
   ============================================================ */
.faq { background: var(--bg-white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-16); align-items: start; }

.faq-content .section-label { text-align: left; }
.faq-content h2 { font-size: var(--fs-3xl); margin-bottom: var(--sp-4); }
.faq-content > p { color: var(--text-muted); line-height: var(--lh-relaxed); }

.faq-list { display: flex; flex-direction: column; gap: var(--sp-4); }

.faq-item {
  border: 1px solid var(--border-light); border-radius: var(--radius-lg);
  overflow: hidden; transition: all var(--t-base);
}
.faq-item.active { border-color: var(--blue-600); }

.faq-question {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6); font-weight: var(--fw-semibold);
  color: var(--text-dark); cursor: pointer; width: 100%; text-align: left;
  font-size: var(--fs-base); transition: color var(--t-fast);
}
.faq-item.active .faq-question { color: var(--blue-600); }

.faq-question svg {
  width: 20px; height: 20px; flex-shrink: 0; transition: transform var(--t-base);
  color: var(--text-muted);
}
.faq-item.active .faq-question svg { transform: rotate(180deg); color: var(--blue-600); }

.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height var(--t-slow);
}
.faq-answer-inner {
  padding: 0 var(--sp-6) var(--sp-5); font-size: var(--fs-sm);
  color: var(--text-muted); line-height: var(--lh-relaxed);
}
.faq-item.active .faq-answer { max-height: 300px; }

/* ============================================================
   10. CONTACT
   ============================================================ */
.contact { background: var(--bg-light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-16); }

.contact-info h2 { font-size: var(--fs-3xl); margin-bottom: var(--sp-4); }
.contact-info > p { color: var(--text-muted); line-height: var(--lh-relaxed); margin-bottom: var(--sp-10); }

.contact-details { display: flex; flex-direction: column; gap: var(--sp-6); }
.contact-detail { display: flex; gap: var(--sp-4); align-items: flex-start; }
.contact-detail-icon {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: var(--radius-lg);
  background: var(--blue-600); color: var(--text-white);
  display: flex; align-items: center; justify-content: center;
}
.contact-detail-icon svg { width: 20px; height: 20px; }
.contact-detail strong { display: block; font-size: var(--fs-sm); color: var(--text-dark); margin-bottom: var(--sp-1); }
.contact-detail span, .contact-detail a { font-size: var(--fs-sm); color: var(--text-muted); }
.contact-detail a:hover { color: var(--blue-600); }

/* Form */
.contact-form-wrapper {
  background: var(--bg-white); border-radius: var(--radius-2xl);
  padding: var(--sp-10); box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: var(--sp-5); }
.form-label { display: block; font-size: var(--fs-sm); font-weight: var(--fw-medium); color: var(--text-dark); margin-bottom: var(--sp-2); }
.form-input, .form-textarea {
  width: 100%; padding: 0.85rem 1rem; border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md); background: var(--bg-light);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-input:focus, .form-textarea:focus { outline: none; border-color: var(--blue-600); box-shadow: 0 0 0 3px rgba(45, 43, 107, 0.1); background: var(--bg-white); }
.form-input.error, .form-textarea.error { border-color: #EF4444; }
.form-error { font-size: var(--fs-xs); color: #EF4444; margin-top: var(--sp-1); display: none; }
.form-error.visible { display: block; }
select.form-input { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer; }
select.form-input:invalid { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; margin-top: var(--sp-4); }

.form-success { display: none; text-align: center; padding: var(--sp-10); }
.form-success.visible { display: block; }
.form-success-icon {
  width: 64px; height: 64px; margin: 0 auto var(--sp-6); border-radius: 50%;
  background: var(--green-500); display: flex; align-items: center; justify-content: center; color: var(--text-white);
}
.form-success-icon svg { width: 32px; height: 32px; }
.form-success h3 { font-size: var(--fs-xl); margin-bottom: var(--sp-2); }
.form-success p { color: var(--text-muted); }

/* ============================================================
   11. FOOTER
   ============================================================ */
.footer { background: var(--bg-footer); color: var(--text-white-70); }

/* Contact strip */
.footer-contact-strip {
  padding-block: var(--sp-10); border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-contact-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--sp-8);
}
.footer-logo-img {
  height: 56px; width: auto; object-fit: contain;
}

.footer-contact-item { display: flex; align-items: center; gap: var(--sp-3); }
.footer-contact-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center; color: var(--text-white); flex-shrink: 0;
}
.footer-contact-icon svg { width: 18px; height: 18px; }
.footer-contact-item strong { display: block; font-size: var(--fs-xs); color: var(--text-white-70); font-weight: var(--fw-normal); }
.footer-contact-item span { font-size: var(--fs-sm); color: var(--text-white); font-weight: var(--fw-semibold); }

/* Footer grid */
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--sp-12); padding-block: var(--sp-12);
}

.footer-brand p { margin-top: var(--sp-4); font-size: var(--fs-sm); line-height: var(--lh-relaxed); max-width: 300px; }
.footer-socials { display: flex; gap: var(--sp-3); margin-top: var(--sp-6); }
.footer-social {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-base);
}
.footer-social:hover { background: var(--blue-600); border-color: var(--blue-600); color: var(--text-white); }
.footer-social svg { width: 18px; height: 18px; }

.footer-col h4, .footer-brand h4 {
  color: var(--text-white); font-size: var(--fs-base); font-weight: var(--fw-bold);
  margin-bottom: var(--sp-4);
}
.footer-col h4 .underline-accent { margin-top: var(--sp-2); }
.footer-col a { display: block; font-size: var(--fs-sm); padding-block: var(--sp-2); transition: color var(--t-fast); }
.footer-col a:hover { color: var(--text-white); }

/* Newsletter */
.footer-newsletter p { font-size: var(--fs-sm); margin-bottom: var(--sp-4); }
.footer-newsletter-form { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-newsletter-input {
  width: 100%; padding: 0.75rem 1rem; border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.06);
  color: var(--text-white); font-size: var(--fs-sm);
}
.footer-newsletter-input::placeholder { color: var(--text-white-70); }
.footer-newsletter-input:focus { outline: none; border-color: var(--blue-600); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-block: var(--sp-6);
  text-align: center; font-size: var(--fs-xs);
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-2);
}
.footer-powered { opacity: 0.5; }
