/* ============================================
   EMDAD — Business Setup & Corporate Services
   ============================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { min-height: 100vh; line-height: 1.5; -webkit-font-smoothing: antialiased; }
img, picture, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

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

/* ---------- Tokens ---------- */
:root{
  /* Colors */
  --navy:        #0E2A47;
  --navy-dark:   #081627;
  --slate:       #55617A;
  --slate-light: #8A94A6;
  --cream:       #F7F5F0;
  --paper:       #FFFFFF;
  --gold:        #C99A3D;
  --gold-light:  #E7C77E;
  --ink:         #1B2430;
  --line:        #E4E1D8;
  --success:     #2F7A5C;

  /* Type */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  /* Radius / shadow */
  --radius: 10px;
  --radius-sm: 6px;
  --shadow-sm: 0 1px 3px rgba(14, 42, 71, 0.08);
  --shadow-md: 0 8px 30px rgba(14, 42, 71, 0.10);
  --shadow-lg: 0 20px 60px rgba(14, 42, 71, 0.16);

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

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.12;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.section {
  padding-block: 96px;
}
.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head h2 { font-size: clamp(28px, 3.6vw, 42px); margin-top: 14px; }
.section-head p { color: var(--slate); font-size: 17px; margin-top: 14px; }
.section-head.center { margin-inline: auto; text-align: center; }

.pill {
  display: inline-flex;
  align-items: center;
  background: rgba(14,42,71,0.06);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--navy); background: var(--paper); }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,0.28); }
.btn-ghost.on-dark:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-sm { padding: 10px 18px; font-size: 13.5px; }
.btn-block { width: 100%; }

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 500;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(247, 245, 240, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
}
.site-header.scrolled {
  background: rgba(247, 245, 240, 0.92);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
  height: 72px;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
}
.logo .mark {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: linear-gradient(155deg, var(--navy), var(--navy-dark));
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15px;
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > ul { display: flex; align-items: center; gap: 2px; }
.main-nav > ul > li { position: relative; }
.nav-link {
  padding: 10px 16px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; gap: 6px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-link:hover, .nav-link.active { color: var(--navy); background: rgba(14, 42, 71, 0.06); }
.nav-link .caret { width: 9px; height: 9px; transition: transform 0.2s ease; opacity: 0.6; }
li.has-mega:hover .nav-link .caret { transform: rotate(180deg); }

.header-actions { display: flex; align-items: center; gap: 10px; }

/* Mega menu */
.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 620px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 50;
}
li.has-mega:hover .mega-menu,
li.has-mega:focus-within .mega-menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.mega-item {
  display: flex;
  gap: 14px;
  padding: 12px;
  border-radius: var(--radius-sm);
  align-items: flex-start;
  transition: background 0.15s ease;
}
.mega-item:hover { background: var(--cream); }
.mega-item .ic {
  flex: none;
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(201, 154, 61, 0.14);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.mega-item .ic svg { width: 18px; height: 18px; }
.mega-item strong { display: block; font-size: 14px; color: var(--navy); font-weight: 600; }
.mega-item span { display: block; font-size: 12.5px; color: var(--slate); margin-top: 2px; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  padding: 8px 0;
}
.nav-toggle span { width: 100%; height: 2px; background: var(--navy); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .main-nav { position: fixed; inset: 72px 0 0 0; background: var(--paper); flex-direction: column; align-items: stretch; padding: 24px; overflow-y: auto; transform: translateX(100%); transition: transform 0.3s ease; }
  .main-nav.open { transform: translateX(0); }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 4px; width: 100%; }
  .mega-menu { position: static; width: 100%; transform: none; opacity: 1; visibility: visible; pointer-events: auto; box-shadow: none; border: none; display: none; grid-template-columns: 1fr; margin-top: 4px; }
  li.has-mega.open .mega-menu { display: grid; }
  .header-actions .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + 72px);
  padding-bottom: 64px;
  overflow: hidden;
  background:
    radial-gradient(1100px 550px at 82% -10%, rgba(201,154,61,0.16), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(14,42,71,0.06), transparent 60%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow { margin-bottom: 22px; }
.hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  max-width: 640px;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-sub {
  margin-top: 22px;
  font-size: 18px;
  color: var(--slate);
  max-width: 520px;
}
.hero-ctas { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
}
.doc-stack {
  position: relative;
  width: 100%;
  max-width: 380px;
}
.doc-card {
  position: absolute;
  inset: 0;
  background: var(--paper);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  padding: 28px;
}
.doc-card.back { transform: rotate(-7deg) translate(-16px, 10px); opacity: 0.6; }
.doc-card.mid { transform: rotate(4deg) translate(14px, -6px); opacity: 0.85; }
.doc-card.front { position: relative; }
.doc-card .seal {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 2px dashed var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
.doc-card .rule { height: 8px; border-radius: 4px; background: var(--line); margin-bottom: 10px; }
.doc-card .rule.w60 { width: 60%; }
.doc-card .rule.w80 { width: 80%; }
.doc-card .rule.w40 { width: 40%; }
.doc-card .cr {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--navy);
  background: var(--cream);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
}
.doc-card .cr b { color: var(--gold); }

.trust-strip {
  margin-top: 68px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-stat .num {
  font-family: var(--font-mono);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.trust-stat .num .suffix { color: var(--gold); font-size: 0.6em; }
.trust-stat .label { font-size: 13px; color: var(--slate); margin-top: 6px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 340px; margin-inline: auto; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ============ SETUP JOURNEY TRACKER ============ */
.tracker-section { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.tracker-section::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(700px 400px at 90% 10%, rgba(201,154,61,0.18), transparent 60%);
}
.tracker-section .section-head h2 { color: #fff; }
.tracker-section .section-head p { color: rgba(255,255,255,0.62); }
.tracker-section .eyebrow { color: var(--gold-light); }
.tracker-section .eyebrow::before { background: var(--gold-light); }

.tracker {
  position: relative;
  margin-top: 40px;
}
.tracker-total {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  font-family: var(--font-mono);
}
.tracker-total .lbl { font-size: 13px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.08em; }
.tracker-total .val { font-size: 30px; font-weight: 700; color: var(--gold-light); }

.tracker-path {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  position: relative;
}
.tracker-path::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 22px; right: 22px;
  height: 2px;
  background: rgba(255,255,255,0.14);
}
.tracker-node {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 0;
  background: none;
}
.tracker-node .dot {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
  transition: all 0.3s ease;
}
.tracker-node.active .dot {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
  box-shadow: 0 0 0 6px rgba(201,154,61,0.16);
}
.tracker-node .authority {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.tracker-node .title { font-size: 14px; font-weight: 600; line-height: 1.3; margin-bottom: 4px; }
.tracker-node .days { font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,0.5); }
.tracker-node:hover .dot, .tracker-node:focus-visible .dot { border-color: var(--gold-light); }

.tracker-detail {
  margin-top: 32px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.tracker-detail h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-mono); margin-bottom: 12px; color: var(--gold-light); }
.tracker-detail ul li { font-size: 14.5px; color: rgba(255,255,255,0.82); padding-left: 18px; position: relative; margin-bottom: 8px; }
.tracker-detail ul li::before { content: "—"; position: absolute; left: 0; color: rgba(255,255,255,0.35); }

@media (max-width: 900px) {
  .tracker-path { grid-template-columns: repeat(4, 1fr); row-gap: 28px; }
  .tracker-path::before { display: none; }
  .tracker-detail { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .tracker-path { grid-template-columns: repeat(2, 1fr); }
}

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card .ic {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(14,42,71,0.06);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-card .ic svg { width: 22px; height: 22px; }
.service-card h3 { font-size: 17px; margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--slate); margin-bottom: 16px; }
.service-card .chip {
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 11.5px;
  padding: 5px 10px;
  border-radius: 20px;
  background: rgba(201,154,61,0.14);
  color: #8a6423;
  font-weight: 600;
}
.service-card .go {
  display: flex; align-items: center; gap: 6px;
  margin-top: 18px;
  font-size: 13.5px; font-weight: 600; color: var(--navy);
}
.service-card .go svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.service-card:hover .go svg { transform: translateX(4px); }

@media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ============ PACKAGES / PRICING ============ */
.packages-section { background: var(--paper); }

.package-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 5px;
  width: fit-content;
  margin: 0 auto 48px;
}
.package-tab {
  padding: 11px 22px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate);
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.package-tab:hover { color: var(--navy); }
.package-tab.active { background: var(--navy); color: #fff; }

.package-panel { display: none; }
.package-panel.active { display: block; }

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.package-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.package-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.package-card.featured {
  background: linear-gradient(175deg, var(--navy), var(--navy-dark));
  border-color: transparent;
  color: #fff;
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.package-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.package-ribbon {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 20px;
}
.package-name { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--navy); margin-bottom: 14px; }
.package-card.featured .package-name { color: #fff; }
.package-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 30px;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.package-card.featured .package-price { color: var(--gold-light); border-bottom-color: rgba(255,255,255,0.15); }
.package-price span { font-size: 13px; font-weight: 600; color: var(--slate); }
.package-card.featured .package-price span { color: rgba(255,255,255,0.55); }
.package-price small { font-size: 13px; font-weight: 500; color: var(--slate); margin-left: auto; }
.package-card.featured .package-price small { color: rgba(255,255,255,0.55); }
.package-features { flex: 1; margin-bottom: 28px; }
.package-features li {
  font-size: 14px;
  color: var(--slate);
  padding-left: 26px;
  position: relative;
  margin-bottom: 13px;
  line-height: 1.4;
}
.package-card.featured .package-features li { color: rgba(255,255,255,0.78); }
.package-features li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(20,97,79,0.12);
}
.package-features li::after {
  content: "";
  position: absolute;
  left: 5px; top: 7px;
  width: 6px; height: 3px;
  border-left: 1.6px solid var(--success);
  border-bottom: 1.6px solid var(--success);
  transform: rotate(-45deg);
}
.package-card.featured .package-features li::before { background: rgba(201,154,61,0.18); }
.package-card.featured .package-features li::after { border-color: var(--gold-light); }
.package-card.featured .btn-primary { background: var(--gold); color: var(--navy-dark); }
.package-card.featured .btn-primary:hover { background: var(--gold-light); }
.package-card.featured .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.3); }
.package-card.featured .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.package-note { text-align: center; font-size: 13px; color: var(--slate); margin-top: 36px; }

@media (max-width: 980px) {
  .package-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .package-card.featured { transform: none; }
  .package-card.featured:hover { transform: translateY(-4px); }
  .package-tabs { flex-wrap: wrap; width: auto; }
}

/* ============ PARTNERS ============ */
.partners-section { background: var(--cream); }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
}
.partner-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 18px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--slate-light);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 0.2s ease, background 0.2s ease;
}
.partner-mark:hover { color: var(--navy); background: var(--cream); }
.partners-grid .partner-mark:nth-child(4n) { border-right: none; }
.partners-grid .partner-mark:nth-last-child(-n+4) { border-bottom: none; }

@media (max-width: 900px) {
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid .partner-mark:nth-child(4n) { border-right: 1px solid var(--line); }
  .partners-grid .partner-mark:nth-child(2n) { border-right: none; }
  .partners-grid .partner-mark:nth-last-child(-n+4) { border-bottom: 1px solid var(--line); }
  .partners-grid .partner-mark:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 520px) {
  .partners-grid { grid-template-columns: 1fr; }
  .partner-mark { border-right: none !important; border-bottom: 1px solid var(--line) !important; }
  .partners-grid .partner-mark:last-child { border-bottom: none !important; }
}

/* ============ WHY US ============ */
.why-section { background: var(--paper); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.why-item .num { font-family: var(--font-mono); color: var(--gold); font-weight: 700; font-size: 15px; margin-bottom: 14px; }
.why-item h3 { font-size: 18px; margin-bottom: 10px; }
.why-item p { font-size: 14.5px; color: var(--slate); }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ============ CEO MESSAGE ============ */
.ceo-section { background: var(--navy-dark); position: relative; overflow: hidden; }
.ceo-section::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 480px at 8% 0%, rgba(201,154,61,0.14), transparent 60%),
    radial-gradient(700px 420px at 100% 100%, rgba(255,255,255,0.05), transparent 60%);
}
.ceo-section .section-head h2 { color: #fff; }
.ceo-section .eyebrow { color: var(--gold-light); }
.ceo-section .eyebrow::before { background: var(--gold-light); }

.ceo-card {
  position: relative;
  background: linear-gradient(175deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  padding: 60px;
  display: grid;
  grid-template-columns: 264px 1fr;
  gap: 64px;
  align-items: center;
  overflow: hidden;
}
.ceo-card::after {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1px dashed rgba(201,154,61,0.25);
  pointer-events: none;
}

/* Portrait column */
.ceo-portrait {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  position: relative;
}
.ceo-portrait-frame {
  position: relative;
  width: 168px; height: 168px;
  display: flex; align-items: center; justify-content: center;
}
.ceo-portrait-frame .ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,154,61,0.3);
}
.ceo-portrait-frame .ring-1 { inset: 0; }
.ceo-portrait-frame .ring-2 { inset: -14px; border-color: rgba(201,154,61,0.14); }
.ceo-avatar {
  width: 132px; height: 132px;
  border-radius: 50%;
  background: linear-gradient(155deg, #16405f, var(--navy-dark));
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 38px;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35), inset 0 0 0 1px rgba(255,255,255,0.08);
  position: relative;
  z-index: 2;
}
.ceo-badge {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  white-space: nowrap;
}
.ceo-badge svg { width: 11px; height: 11px; }

.ceo-sig { display: flex; flex-direction: column; gap: 3px; margin-top: 6px; }
.ceo-sig-name { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 18px; }
.ceo-sig-role { font-family: var(--font-mono); font-size: 11.5px; color: var(--gold-light); text-transform: uppercase; letter-spacing: 0.06em; }

.ceo-credentials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.cred { display: flex; align-items: baseline; justify-content: center; gap: 8px; }
.cred strong { font-family: var(--font-mono); color: var(--gold-light); font-size: 15px; font-weight: 700; }
.cred span { font-size: 12.5px; color: rgba(255,255,255,0.6); }

.ceo-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 20px;
  padding: 9px 16px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.ceo-linkedin svg { width: 15px; height: 15px; color: var(--gold-light); }
.ceo-linkedin:hover { background: rgba(255,255,255,0.08); border-color: var(--gold-light); }

/* Copy column */
.ceo-copy { position: relative; }
.quote-mark {
  position: absolute;
  top: -46px; left: -8px;
  font-family: var(--font-display);
  font-size: 140px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.28;
  pointer-events: none;
}
.ceo-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.3vw, 27px);
  line-height: 1.55;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.005em;
  position: relative;
}
.ceo-attribution {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.ceo-name { font-weight: 700; color: var(--gold-light); font-size: 15.5px; font-family: var(--font-display); }
.ceo-title { font-size: 13px; color: rgba(255,255,255,0.55); }
.ceo-title::before { content: "— "; }
.ceo-cta { margin-top: 26px; color: #fff; border-color: rgba(255,255,255,0.28); }
.ceo-cta:hover { border-color: var(--gold-light); background: rgba(255,255,255,0.06); }

@media (max-width: 780px) {
  .ceo-card { grid-template-columns: 1fr; padding: 40px 28px; text-align: center; }
  .quote-mark { position: static; display: block; margin-bottom: -14px; }
  .ceo-attribution { justify-content: center; }
}

/* ============ PROCESS ============ */
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 20px;
}
.process-step {
  position: relative;
  padding: 28px 24px;
  border-top: 2px solid var(--line);
}
.process-step .step-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.process-step h3 { font-size: 17px; margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--slate); }
@media (max-width: 900px) {
  .process-list { grid-template-columns: 1fr; }
  .process-step { border-top: none; border-left: 2px solid var(--line); padding-left: 20px; }
}

/* ============ INDUSTRIES ============ */
.industries-section { background: var(--navy-dark); color: #fff; }
.industries-section .section-head h2 { color: #fff; }
.industries-section .section-head p { color: rgba(255,255,255,0.6); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.industry-tile {
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  text-align: center;
  padding: 14px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.industry-tile:hover { background: rgba(255,255,255,0.05); border-color: var(--gold); transform: translateY(-4px); }
.industry-tile svg { width: 26px; height: 26px; color: var(--gold-light); }
.industry-tile span { font-size: 12.5px; font-weight: 500; }
@media (max-width: 900px) { .industries-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============ TESTIMONIALS ============ */
.testimonials-section { background: var(--paper); }
.t-slide { padding: 8px 8px 8px 2px; }
.t-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px;
  height: 100%;
  border: 1px solid var(--line);
}
.t-card .quote { font-size: 16px; color: var(--ink); line-height: 1.6; margin-bottom: 24px; }
.t-card .who { display: flex; align-items: center; gap: 12px; }
.t-card .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-weight: 700; font-size: 14px;
}
.t-card .name { font-weight: 600; font-size: 14.5px; color: var(--navy); }
.t-card .role { font-size: 12.5px; color: var(--slate); }
.swiper-pagination { position: static; margin-top: 28px; }
.swiper-pagination-bullet { background: var(--slate-light); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--gold); }

/* ============ FAQ ============ */
.faq-section .container { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 4px;
  text-align: left;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--navy);
}
.faq-q .plus { flex: none; width: 20px; height: 20px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; background: var(--navy);
  border-radius: 2px;
}
.faq-q .plus::before { width: 100%; height: 2px; top: 9px; }
.faq-q .plus::after { width: 2px; height: 100%; left: 9px; transition: transform 0.25s ease; }
.faq-item.open .plus::after { transform: rotate(90deg); opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a p { padding: 0 4px 22px; color: var(--slate); font-size: 14.5px; max-width: 640px; }

/* ============ CONTACT / CTA ============ */
.cta-section {
  background: linear-gradient(155deg, var(--navy), var(--navy-dark));
  color: #fff;
  border-radius: 24px;
  margin-inline: 24px;
  max-width: calc(var(--container) - 0px);
  margin-inline: auto;
  padding: 64px;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 320px at 90% 0%, rgba(201,154,61,0.22), transparent 60%);
}
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; position: relative; }
.cta-copy .eyebrow { color: var(--gold-light); }
.cta-copy .eyebrow::before { background: var(--gold-light); }
.cta-copy h2 { color: #fff; font-size: clamp(26px, 3.2vw, 36px); margin-top: 14px; }
.cta-copy p { color: rgba(255,255,255,0.65); margin-top: 16px; font-size: 15.5px; max-width: 420px; }
.cta-contact-links { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.cta-contact-links a { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: rgba(255,255,255,0.85); }
.cta-contact-links svg { width: 17px; height: 17px; color: var(--gold-light); }

.form-card { background: #fff; border-radius: var(--radius); padding: 28px; color: var(--ink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1/-1; }
.form-group label { font-size: 12.5px; font-weight: 600; color: var(--slate); }
.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  font-size: 14px;
  background: var(--cream);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--navy); background: #fff;
}
.form-group textarea { resize: vertical; min-height: 88px; }
.form-group.error input, .form-group.error select, .form-group.error textarea { border-color: #C2453B; }
.field-error { font-size: 12px; color: #C2453B; display: none; }
.form-group.error .field-error { display: block; }
.form-note { font-size: 12px; color: var(--slate); margin-top: 12px; text-align: center; }
.form-success {
  display: none;
  text-align: center;
  padding: 32px 12px;
}
.form-success.show { display: block; }
.form-success .check {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(47,122,92,0.12); color: var(--success);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.form-success h3 { font-size: 18px; margin-bottom: 6px; }
.form-success p { color: var(--slate); font-size: 14px; }

@media (max-width: 900px) {
  .cta-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 40px 24px; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ============ FOOTER ============ */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); padding-top: 72px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: 32px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .logo { color: #fff; }
.footer-brand p { font-size: 14px; margin-top: 16px; max-width: 260px; color: rgba(255,255,255,0.55); }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.16); display: flex; align-items: center; justify-content: center; transition: all 0.2s ease; }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }
.footer-social svg { width: 15px; height: 15px; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: #fff; font-family: var(--font-mono); margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col a { font-size: 14px; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--gold-light); }
.newsletter-form { display: flex; margin-top: 14px; gap: 8px; }
.newsletter-form input {
  flex: 1; padding: 10px 12px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.05); color: #fff; font-size: 13.5px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-block: 24px; font-size: 12.5px; flex-wrap: wrap; gap: 12px; }
.footer-legal { display: flex; gap: 20px; }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ============ Floating buttons ============ */
.floating-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 400;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.floating-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s ease;
}
.floating-btn:hover { transform: scale(1.08); }
.floating-btn.whatsapp { background: #25D366; color: #fff; }
.floating-btn.top { background: var(--navy); color: #fff; opacity: 0; pointer-events: none; transform: translateY(10px); transition: all 0.25s ease; }
.floating-btn.top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.floating-btn svg { width: 22px; height: 22px; }

/* ============ Reveal animation base ============ */
.reveal { opacity: 0; transform: translateY(24px); }

/* ============ Misc ============ */
.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 8px; z-index: 999;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }
