/* ═══════════════════════════════════════════════════════
   MA ENGINEERING LTD — Design System
   Aesthetic: Editorial Clean · Navy + Sky Blue · Premium
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500&family=Outfit:wght@300;400;500;600;700&family=Kalam:wght@400;700&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Palette */
  --navy-900: #0a1628;
  --navy-800: #0d1b2a;
  --navy-700: #132d46;
  --navy-600: #1b3a4b;
  --blue-500: #3b82c4;
  --blue-400: #5a9fd6;
  --blue-300: #7fbde8;
  --sky-200: #b8dff5;
  --sky-100: #e0f0fb;
  --white: #ffffff;
  --off-white: #f7f9fb;
  --gray-50: #f1f4f7;
  --gray-100: #e4e8ed;
  --gray-200: #cdd3db;
  --gray-300: #a8b0bb;
  --gray-400: #7d8694;
  --gray-500: #5c6370;
  --gray-600: #3d4451;
  --gray-700: #282e39;
  --green-500: #10b981;
  --green-50: rgba(16, 185, 129, 0.08);
  --amber-500: #f59e0b;

  /* Typography */
  --font-display: 'Fraunces', serif;
  --font-body: 'Outfit', sans-serif;
  --font-script: 'Kalam', cursive;

  /* Spacing */
  --section-py: clamp(80px, 10vw, 140px);

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 22px;
  --r-2xl: 32px;
  --r-full: 100px;

  /* Shadows */
  --sh-xs: 0 1px 2px rgba(10, 22, 40, 0.04);
  --sh-sm: 0 2px 8px rgba(10, 22, 40, 0.06);
  --sh-md: 0 4px 20px rgba(10, 22, 40, 0.08);
  --sh-lg: 0 12px 40px rgba(10, 22, 40, 0.10);
  --sh-xl: 0 24px 64px rgba(10, 22, 40, 0.14);
  --sh-glow: 0 8px 32px rgba(59, 130, 196, 0.3);

  /* Transition */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --tr: 0.4s var(--ease);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-500);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  font-weight: 400;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Layout ─── */
.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 72px);
}

/* ─── Reveal ─── */
.rv {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.rv.vis { opacity: 1; transform: translateY(0); }
.rv-d1 { transition-delay: 0.07s; }
.rv-d2 { transition-delay: 0.14s; }
.rv-d3 { transition-delay: 0.21s; }
.rv-d4 { transition-delay: 0.28s; }
.rv-d5 { transition-delay: 0.35s; }
.rv-d6 { transition-delay: 0.42s; }
.rv-d7 { transition-delay: 0.49s; }

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--gray-700);
  font-weight: 600;
  line-height: 1.15;
}

.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--blue-400);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue-500);
  font-weight: 700;
  margin-bottom: 14px;
}
.tag::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--blue-500);
  border-radius: 2px;
}
.tag--center::before { display: none; }

.sec-title {
  font-size: clamp(30px, 3.6vw, 48px);
  letter-spacing: -0.4px;
  margin-bottom: 16px;
}

.sec-sub {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--gray-400);
  max-width: 520px;
}

.sec-center { text-align: center; }
.sec-center .sec-sub { margin: 0 auto; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all var(--tr);
  border: none;
  letter-spacing: 0.15px;
}
.btn svg { transition: transform 0.3s; flex-shrink: 0; }
.btn:hover svg { transform: translateX(3px); }

.btn--primary { background: var(--blue-500); color: var(--white); }
.btn--primary:hover { background: #2e6faa; transform: translateY(-2px); box-shadow: var(--sh-glow); }

.btn--white { background: var(--white); color: var(--navy-800); }
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }

.btn--outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.2); }
.btn--outline:hover { border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.05); }

.btn--dark { background: var(--navy-800); color: var(--white); }
.btn--dark:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: var(--sh-lg); }

.btn--ghost { background: none; color: var(--blue-500); padding: 14px 4px; }
.btn--ghost:hover { color: #2e6faa; }

.btn--lg { padding: 17px 34px; font-size: 15px; border-radius: var(--r-lg); }

.arrow-icon { width: 18px; height: 18px; }

/* ─── Nav ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.5s var(--ease);
}

.nav.stuck {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 13px 0;
  box-shadow: 0 1px 0 var(--gray-100);
}
.nav.stuck .nav__link { color: var(--gray-500); }
.nav.stuck .nav__link:hover, .nav.stuck .nav__link.act { color: var(--blue-500); }
.nav.stuck .logo-text { color: var(--gray-700); }
.nav.stuck .logo-sub { color: var(--gray-400); }
.nav.stuck .hamburger span { background: var(--gray-700); }

.nav__inner { display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; gap: 11px; z-index: 1002; }
.logo-icon {
  height: 38px;
  width: auto;
  transition: opacity 0.4s;
}
.logo-icon--blue { display: none; }
.logo-icon--white { display: block; }
.nav.stuck .logo-icon--blue { display: block; }
.nav.stuck .logo-icon--white { display: none; }
.footer .logo-icon--blue { display: none !important; }
.footer .logo-icon--white { display: block !important; }

.logo-text {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600;
  color: var(--white);
  letter-spacing: -0.3px;
  transition: color 0.4s;
  line-height: 1.15;
}
.logo-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 10px; letter-spacing: 2.2px;
  text-transform: uppercase; font-weight: 600;
  color: rgba(255,255,255,0.45);
  margin-top: -1px;
  transition: color 0.4s;
}
.nav.stuck .logo-text { color: var(--gray-700); }
.nav.stuck .logo-sub { color: var(--gray-400); }
.footer .logo-text { color: var(--white) !important; }
.footer .logo-sub { color: rgba(255,255,255,0.45) !important; }

.nav__links { display: flex; align-items: center; gap: 28px; }

.nav__link {
  font-size: 13.5px; font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color 0.3s;
  position: relative; letter-spacing: 0.2px;
}
.nav__link:hover { color: var(--white); }
.nav__link.act { color: var(--white); }
.nav__link.act::after {
  content: ''; position: absolute;
  bottom: -5px; left: 0; right: 0;
  height: 2px; background: var(--blue-500);
  border-radius: 2px;
}

.nav__cta {
  background: var(--blue-500); color: var(--white) !important;
  padding: 10px 22px; border-radius: var(--r-sm);
  font-weight: 600; font-size: 13.5px;
  transition: all 0.3s;
}
.nav__cta:hover {
  background: #2e6faa;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(59,130,196,0.3);
}
.nav__cta::after { display: none !important; }

.hamburger {
  display: none; background: none; border: none;
  cursor: pointer; width: 32px; height: 32px;
  position: relative; z-index: 1002;
}
.hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--white); position: absolute;
  left: 6px; transition: all 0.3s; border-radius: 2px;
}
.hamburger span:nth-child(1) { top: 9px; }
.hamburger span:nth-child(2) { top: 15px; }
.hamburger span:nth-child(3) { top: 21px; }
.hamburger.on span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.hamburger.on span:nth-child(2) { opacity: 0; }
.hamburger.on span:nth-child(3) { top: 15px; transform: rotate(-45deg); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background: var(--navy-800);
  overflow: hidden;
}

.hero__bg {
  position: absolute; inset: 0;
}
.hero__bg-img {
  /* PLACEHOLDER: Replace with actual hero image */
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.hero__bg-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-900) 40%, #0b2236 100%);
  position: relative;
}
.hero__bg-placeholder::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 45%, rgba(59,130,196,0.12), transparent),
    radial-gradient(ellipse 50% 40% at 25% 75%, rgba(127,189,232,0.06), transparent);
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(10,22,40,0.88) 0%, rgba(10,22,40,0.45) 55%, rgba(10,22,40,0.25) 100%);
}

.hero__inner {
  position: relative; z-index: 2;
  padding: 160px 0 120px;
  max-width: 660px;
}

.hero h1 {
  font-size: clamp(46px, 5.8vw, 76px);
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1.05;
  font-weight: 700;
}
.hero h1 .script {
  color: var(--sky-200);
  font-size: 1.05em;
  display: block;
  line-height: 1.15;
  margin-top: -2px;
  letter-spacing: 0;
}

.hero__text {
  font-size: 16.5px; line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin: 26px 0 38px;
}

.hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero floating cards */
.hero__float {
  position: absolute; z-index: 3;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-radius: var(--r-lg);
  padding: 18px 22px;
  box-shadow: var(--sh-xl);
  border: 1px solid rgba(255,255,255,0.5);
}
.hero__float--savings {
  bottom: 160px; right: clamp(80px, 14vw, 220px);
  display: flex; align-items: center; gap: 12px;
}
.float-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
}
.float-icon--green { background: var(--green-50); color: var(--green-500); }
.float-num {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 700;
  color: var(--gray-700); line-height: 1;
}
.float-label { font-size: 12px; color: var(--gray-400); font-weight: 500; }

.hero__float--rating {
  bottom: 280px; right: clamp(50px, 10vw, 140px);
  display: flex; align-items: center; gap: 10px;
}
.stars { display: flex; gap: 1px; color: var(--amber-500); }
.float-rating-text { font-size: 13px; font-weight: 700; color: var(--gray-700); }
.float-rating-sub { font-size: 11px; color: var(--gray-400); }

/* Hero trust */
.hero__trust {
  margin-top: 64px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.hero__trust-label {
  font-size: 11px; letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  font-weight: 600; margin-bottom: 18px;
}
.hero__trust-row {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,0.3);
  font-size: 13px; font-weight: 600; letter-spacing: 0.3px;
}
.trust-item svg { opacity: 0.45; }

/* ─── Page Hero (inner pages) ─── */
.page-hero {
  position: relative;
  padding: 155px 0 90px;
  background: var(--navy-800);
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 70% 40%, rgba(59,130,196,0.1), transparent),
    radial-gradient(ellipse 35% 35% at 20% 80%, rgba(127,189,232,0.05), transparent);
  pointer-events: none;
}
.page-hero__inner {
  position: relative; z-index: 2; max-width: 600px;
}
.page-hero h1 {
  font-size: clamp(38px, 4.8vw, 58px);
  color: var(--white); letter-spacing: -1px;
  margin-bottom: 14px;
}
.page-hero__text {
  font-size: 16.5px; line-height: 1.75;
  color: rgba(255,255,255,0.5);
}

.crumbs {
  display: flex; align-items: center; gap: 7px;
  font-size: 12.5px; color: rgba(255,255,255,0.3);
  font-weight: 500; margin-bottom: 24px;
}
.crumbs a { color: rgba(255,255,255,0.3); transition: color 0.3s; }
.crumbs a:hover { color: var(--blue-400); }
.crumbs .sep { font-size: 9px; }

/* ─── Features Grid ─── */
.features { padding: var(--section-py) 0; }

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.fcard {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: 34px 28px;
  transition: all var(--tr);
  position: relative;
}
.fcard:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}
.fcard__icon {
  width: 50px; height: 50px;
  border-radius: var(--r-md);
  background: var(--sky-100);
  color: var(--blue-500);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.fcard h3 { font-size: 20px; margin-bottom: 10px; letter-spacing: -0.15px; }
.fcard p { font-size: 14px; line-height: 1.7; color: var(--gray-400); }
.fcard__link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 600; color: var(--blue-500);
  margin-top: 16px; transition: gap 0.3s;
}
.fcard:hover .fcard__link { gap: 9px; }

/* ─── Split Section ─── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}

/* IMAGE PLACEHOLDER */
.img-placeholder {
  width: 100%; aspect-ratio: 4/3;
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--sky-100), var(--gray-50));
}
.img-placeholder__inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-300);
  opacity: 0.45;
}
/* When real images added: */
.img-placeholder img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}

.img-badge {
  position: absolute;
  bottom: 18px; left: 18px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--r-md);
  padding: 12px 18px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--sh-md);
}
.img-badge__num {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 700;
  color: var(--blue-500); line-height: 1;
}
.img-badge__text {
  font-size: 11.5px; color: var(--gray-400);
  font-weight: 500; line-height: 1.25;
}

.split__body .sec-title { margin-bottom: 16px; }
.split__text {
  font-size: 15.5px; line-height: 1.8;
  color: var(--gray-500); margin-bottom: 14px;
}

.checks {
  display: flex; flex-direction: column; gap: 12px;
  margin: 24px 0 32px;
}
.checks li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; color: var(--gray-600); font-weight: 500;
}
.checks li svg { flex-shrink: 0; color: var(--green-500); margin-top: 2px; }

/* ─── Stats Bar ─── */
.stats { padding: 60px 0; background: var(--navy-800); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px; text-align: center;
}
.stats__item { position: relative; }
.stats__item:not(:last-child)::after {
  content: ''; position: absolute;
  right: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 44px;
  background: rgba(255,255,255,0.07);
}
.stats__num {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.6vw, 50px);
  color: var(--white); font-weight: 700;
  line-height: 1; letter-spacing: -0.5px;
}
.stats__num .hi { color: var(--blue-400); }
.stats__label {
  font-size: 13px; color: rgba(255,255,255,0.35);
  margin-top: 8px; font-weight: 500;
}

/* ─── Process ─── */
.process { padding: var(--section-py) 0; background: var(--off-white); }
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 56px; position: relative;
}
.process__grid::before {
  content: ''; position: absolute;
  top: 36px; left: 13%; right: 13%;
  height: 2px;
  background: linear-gradient(90deg, var(--gray-100), var(--blue-400), var(--gray-100));
}
.process__step {
  text-align: center; position: relative; z-index: 1; padding: 0 16px;
}
.step-dot {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--navy-800); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  margin-bottom: 20px;
  border: 4px solid var(--off-white);
  box-shadow: var(--sh-md);
}
.process__step h3 { font-size: 19px; margin-bottom: 8px; }
.process__step p {
  font-size: 13.5px; line-height: 1.65;
  color: var(--gray-400); max-width: 210px; margin: 0 auto;
}

/* ─── Testimonials ─── */
.testi { padding: var(--section-py) 0; }
.testi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tcard {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: 34px 28px;
  transition: all var(--tr);
}
.tcard:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.tcard__stars { display: flex; gap: 2px; color: var(--amber-500); margin-bottom: 16px; }
.tcard__quote {
  font-size: 14.5px; line-height: 1.75;
  color: var(--gray-600); margin-bottom: 22px;
}
.tcard__author {
  display: flex; align-items: center; gap: 11px;
  padding-top: 18px; border-top: 1px solid var(--gray-50);
}
.tcard__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--navy-600));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 14px;
}
.tcard__name { font-size: 14px; font-weight: 700; color: var(--gray-700); }
.tcard__role { font-size: 12px; color: var(--gray-400); margin-top: 1px; }

/* ─── CTA Band ─── */
.cta {
  padding: var(--section-py) 0;
  background: var(--navy-800);
  position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 65% at 50% 50%, rgba(59,130,196,0.08), transparent);
  pointer-events: none;
}
.cta__inner {
  text-align: center; position: relative; z-index: 1;
  max-width: 600px; margin: 0 auto;
}
.cta__inner .sec-title { color: var(--white); }
.cta__inner .sec-sub { color: rgba(255,255,255,0.45); margin: 0 auto 32px; }
.cta__btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ─── Footer ─── */
.footer { background: var(--navy-900); padding: 68px 0 0; color: rgba(255,255,255,0.45); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px; padding-bottom: 52px;
}
.footer__brand p {
  font-size: 13.5px; line-height: 1.7;
  margin: 14px 0 22px; max-width: 260px;
}
.footer__social { display: flex; gap: 8px; }
.footer__social a {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35); transition: all 0.3s;
}
.footer__social a:hover {
  border-color: var(--blue-500);
  color: var(--blue-500);
  background: rgba(59,130,196,0.07);
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 12px; letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px; font-weight: 700;
}
.footer__col li { margin-bottom: 11px; }
.footer__col a {
  font-size: 13.5px; color: rgba(255,255,255,0.35);
  transition: color 0.3s;
}
.footer__col a:hover { color: var(--blue-400); }

.footer__contact {
  display: flex; align-items: flex-start; gap: 9px;
  margin-bottom: 13px; font-size: 13.5px;
}
.footer__contact svg { flex-shrink: 0; margin-top: 2px; color: var(--blue-500); opacity: 0.6; }
.footer__contact a { color: rgba(255,255,255,0.35); transition: color 0.3s; }
.footer__contact a:hover { color: var(--blue-400); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 22px 0;
  display: flex; justify-content: space-between;
  align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.2);
}
.footer__legal { display: flex; gap: 22px; }
.footer__legal a { color: rgba(255,255,255,0.2); transition: color 0.3s; }
.footer__legal a:hover { color: var(--blue-400); }

/* ─── Service Detail (alternating rows) ─── */
.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--gray-100);
}
.svc-row:last-of-type { border-bottom: none; }
.svc-row--flip { direction: rtl; }
.svc-row--flip > * { direction: ltr; }

.svc-row .tag { margin-bottom: 10px; }
.svc-row .sec-title { font-size: clamp(26px, 2.8vw, 36px); margin-bottom: 14px; }

/* ─── Mission Cards ─── */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mcard {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: 34px 26px; text-align: center;
  transition: all var(--tr);
}
.mcard:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.mcard__icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--sky-100); color: var(--blue-500);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.mcard h3 { font-size: 19px; margin-bottom: 8px; }
.mcard p { font-size: 13.5px; line-height: 1.65; color: var(--gray-400); }

/* ─── Contact ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px; align-items: flex-start;
}
.info-card {
  background: var(--off-white);
  border-radius: var(--r-xl);
  padding: 36px 32px;
}
.info-card h3 { font-size: 22px; margin-bottom: 6px; }
.info-card > p { font-size: 14px; color: var(--gray-400); margin-bottom: 28px; line-height: 1.6; }
.info-row {
  display: flex; align-items: flex-start; gap: 13px; margin-bottom: 22px;
}
.info-row__icon {
  width: 42px; height: 42px; border-radius: var(--r-md);
  background: var(--sky-100); color: var(--blue-500);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-row__label {
  font-size: 11px; color: var(--gray-400);
  text-transform: uppercase; letter-spacing: 1px;
  font-weight: 600; margin-bottom: 3px;
}
.info-row__val { font-size: 14.5px; color: var(--gray-700); font-weight: 600; }
.info-row__val a { color: var(--gray-700); transition: color 0.3s; }
.info-row__val a:hover { color: var(--blue-500); }

.faq-block { margin-top: 28px; padding: 0 4px; }
.faq-block h3 { font-size: 19px; margin-bottom: 18px; }
.faq-item { margin-bottom: 14px; }
.faq-item__q { font-weight: 600; color: var(--gray-700); font-size: 14px; margin-bottom: 3px; }
.faq-item__a { font-size: 13.5px; color: var(--gray-400); line-height: 1.6; }

.form-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  box-shadow: var(--sh-xs);
}
.form-card h3 { font-size: 22px; margin-bottom: 4px; }
.form-card > p { font-size: 14px; color: var(--gray-400); margin-bottom: 24px; }

.fg { margin-bottom: 18px; }
.fg label {
  display: block; font-size: 12.5px; font-weight: 600;
  color: var(--gray-700); margin-bottom: 5px; letter-spacing: 0.15px;
}
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 14px; color: var(--gray-700);
  transition: border-color 0.3s, box-shadow 0.3s;
  background: var(--white); outline: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(59,130,196,0.1);
}
.fg textarea { resize: vertical; min-height: 110px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ─── Grain Overlay (subtle texture) ─── */
body::after {
  content: ''; position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .stats__item:not(:last-child)::after { display: none; }
  .testi__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .process__grid::before { display: none; }
  .mission-grid { grid-template-columns: 1fr 1fr; }
  .hero__float { display: none; }
  .contact-grid { gap: 32px; }
  .svc-row { gap: 36px; }
}

@media (max-width: 768px) {
  .nav__links {
    display: none; position: fixed; inset: 0;
    background: var(--white);
    flex-direction: column; justify-content: center;
    align-items: center; gap: 24px; z-index: 1001;
  }
  .nav__links.open { display: flex; }
  .nav__links.open .nav__link { color: var(--gray-500) !important; font-size: 17px; }
  .nav__links.open .nav__cta { margin-top: 6px; }
  .hamburger { display: block; }

  .features__grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .img-placeholder { aspect-ratio: 16/10; }
  .testi__grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer__legal { justify-content: center; }
  .mission-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .svc-row { grid-template-columns: 1fr; gap: 28px; }
  .svc-row--flip { direction: ltr; }
  .fg-row { grid-template-columns: 1fr; }
  .hero__inner { padding: 130px 0 80px; text-align: center; max-width: 100%; }
  .hero h1 { letter-spacing: -1px; }
  .hero__text { margin-left: auto; margin-right: auto; }
  .hero__btns { flex-direction: column; align-items: center; }
  .page-hero__inner { text-align: center; max-width: 100%; }
  .cta__btns { flex-direction: column; align-items: center; }
}
