/* ================================================================
   ANSAR MAHMOOD — Master Design System
   Brand: Forest #002D2E | Emerald #009F6E | Warm Gold #C5A040
   Inspired by INSEAD premium institutional color palette
   Fonts: Plus Jakarta Sans (headings) + Inter (body)
   ================================================================ */

/* ── Google Fonts ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties ────────────────────────────────────── */
:root {
  /* Brand Colors — INSEAD-inspired Forest Green + Warm Gold */
  --navy:            #002D2E;
  --navy-mid:        #003D32;
  --navy-light:      #00694B;
  --navy-xlight:     #E6F4EE;
  --blue:            #009F6E;
  --blue-dark:       #007A55;
  --blue-light:      #57AF80;
  --blue-xlight:     #E6F7EF;
  --gold:            #C5A040;
  --gold-dark:       #A88830;
  --gold-light:      #D4B855;
  --gold-xlight:     #FAF5E4;

  /* Neutrals */
  --white:           #ffffff;
  --gray-50:         #f8f9fc;
  --gray-100:        #f0f2f7;
  --gray-200:        #e2e6ef;
  --gray-300:        #c8cedc;
  --gray-400:        #9aa3b8;
  --gray-500:        #6e7a92;
  --gray-600:        #5a6478;
  --gray-700:        #3d4558;
  --gray-800:        #2d3448;
  --gray-900:        #1a2035;
  --text:            #1C2629;
  --text-muted:      #686E71;
  --text-light:      #9aa3b8;

  /* Semantic */
  --success:         #10b981;
  --success-light:   #d1fae5;
  --warning:         #f59e0b;
  --warning-light:   #fef3c7;
  --danger:          #ef4444;
  --danger-light:    #fee2e2;

  /* Typography */
  --font-heading:    'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Border Radius */
  --radius-xs:       4px;
  --radius-sm:       8px;
  --radius:          14px;
  --radius-lg:       24px;
  --radius-xl:       40px;
  --radius-full:     9999px;

  /* Shadows */
  --shadow-xs:       0 1px 3px rgba(0,45,46,.07);
  --shadow-sm:       0 2px 8px rgba(0,45,46,.10);
  --shadow:          0 4px 20px rgba(0,45,46,.12);
  --shadow-md:       0 8px 30px rgba(0,45,46,.16);
  --shadow-lg:       0 16px 48px rgba(0,45,46,.20);
  --shadow-xl:       0 32px 64px rgba(0,45,46,.26);
  --shadow-gold:     0 8px 24px rgba(197,160,64,.40);
  --shadow-blue:     0 8px 24px rgba(0,159,110,.30);

  /* Transitions */
  --transition-fast: all .15s ease;
  --transition:      all .25s ease;
  --transition-slow: all .4s cubic-bezier(.4,0,.2,1);

  /* Layout */
  --max-width:       1240px;
  --section-pad:     100px;
  --section-pad-sm:  60px;
  --section-pad-lg:  140px;
  --nav-height:      80px;
  --top-bar-height:  44px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
table { border-collapse: collapse; }

/* ── Typography ───────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}

h1 { font-size: clamp(2.2rem, 5.5vw, 4rem);    font-weight: 800; line-height: 1.08; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.75rem); font-weight: 700; line-height: 1.15; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.65rem);font-weight: 700; line-height: 1.25; }
h4 { font-size: 1.2rem;  font-weight: 700; }
h5 { font-size: 1.05rem; font-weight: 700; }
h6 { font-size: .95rem;  font-weight: 700; }

p { color: var(--text-muted); line-height: 1.8; font-size: 1.05rem; }

.lead {
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.eyebrow--blue { color: var(--blue); }
.eyebrow--white { color: rgba(255,255,255,.75); }

/* ── Layout Helpers ───────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) { .container { padding: 0 18px; } }

.section       { padding: var(--section-pad) 0; }
.section-sm    { padding: var(--section-pad-sm) 0; }
.section-lg    { padding: var(--section-pad-lg) 0; }
.section-white { background: var(--white); }
.section-gray  { background: var(--gray-50); }
.section-navy  { background: var(--navy); }
.section-navy-mid { background: var(--navy-mid); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-header h2 { margin-bottom: 18px; }
.section-header p  { font-size: 1.1rem; }

/* ── Grid Utilities ───────────────────────────────────────────── */
.grid   { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.flex          { display: flex; }
.flex-center   { display: flex; align-items: center; justify-content: center; }
.flex-between  { display: flex; align-items: center; justify-content: space-between; }
.items-center  { align-items: center; }
.gap-sm        { gap: 12px; }
.gap           { gap: 24px; }
.gap-lg        { gap: 40px; }

/* ── Color Utilities ──────────────────────────────────────────── */
.text-white  { color: var(--white) !important; }
.text-navy   { color: var(--navy) !important; }
.text-blue   { color: var(--blue) !important; }
.text-gold   { color: var(--gold) !important; }
.text-muted  { color: var(--text-muted) !important; }
.text-center { text-align: center; }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
  letter-spacing: .01em;
  line-height: 1;
  position: relative;
  overflow: hidden;
}

.btn-xl { padding: 18px 44px; font-size: 1.05rem; }
.btn-lg { padding: 16px 38px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: .85rem; }
.btn-xs { padding: 7px 16px;  font-size: .78rem; }

/* Primary — Electric Blue */
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

/* Gold CTA — Premium accent */
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Outline White — for dark backgrounds */
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Outline Navy — for light backgrounds */
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* Outline Blue */
.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline-blue:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Top Bar ──────────────────────────────────────────────────── */
.top-bar {
  background: var(--navy-mid);
  height: var(--top-bar-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
  z-index: 1001;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar__left,
.top-bar__right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar a,
.top-bar span {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition-fast);
}

.top-bar a:hover { color: var(--gold); }

.top-bar__cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 5px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
}

.top-bar__cta:hover { background: var(--gold-dark) !important; }

@media (max-width: 768px) {
  .top-bar { display: none; }
}

/* ── Header / Navigation ──────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background .3s ease, box-shadow .3s ease, height .3s ease;
}

.header--transparent { background: transparent; }

.header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(10,22,40,.12);
  height: 68px;
}

.header .container { display: flex; align-items: center; gap: 32px; }

/* Logo */
.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.logo-img {
  height: 44px;
  width: auto;
  transition: var(--transition);
  display: block;
}
.header.scrolled .logo-img { height: 38px; }

/* Logo text fallback */
.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: -.02em;
  transition: var(--transition);
}
.logo-text span { color: var(--gold); }
.header.scrolled .logo-text { color: var(--navy); }

/* Desktop Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  padding: 8px 14px;
  border-radius: var(--radius-xs);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.header.scrolled .nav-link {
  color: var(--gray-700);
}
.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
  color: var(--blue);
}

.nav-item {
  position: relative;
}

.nav-item .nav-link svg,
.nav-item .nav-link i.fa-chevron-down {
  font-size: .65rem;
  transition: transform .2s ease;
}

.nav-item:hover .nav-link i.fa-chevron-down {
  transform: rotate(180deg);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Mega Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  pointer-events: none;
  border: 1px solid var(--gray-200);
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  top: calc(100% + 6px);
}

.dropdown--mega {
  width: 720px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 0;
}

.mega-col {
  padding: 0 20px;
  border-right: 1px solid var(--gray-100);
}
.mega-col:last-child { border-right: none; }
.mega-col:first-child { padding-left: 0; }

.mega-col__heading {
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-100);
}

.mega-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: var(--transition-fast);
}
.mega-col a:hover { color: var(--blue); padding-left: 4px; }
.mega-col a i { font-size: .75rem; color: var(--text-light); width: 14px; }
.mega-col a:hover i { color: var(--blue); }

.mega-col--cta { border-right: none; }

.mega-cta-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius);
  padding: 24px 20px;
  min-width: 180px;
}

.mega-cta-card h5 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 8px;
}

.mega-cta-card p {
  color: rgba(255,255,255,.65);
  font-size: .82rem;
  margin-bottom: 18px;
  line-height: 1.5;
}

/* Menu Toggle (hamburger) */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.header.scrolled .menu-toggle span { background: var(--navy); }

.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

@media (max-width: 1024px) {
  .nav, .nav-actions .nav-link { display: none; }
  .menu-toggle { display: flex; margin-left: auto; }
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 90vw;
  height: 100%;
  background: var(--white);
  z-index: 9999;
  transition: right .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
}

.mobile-nav.open { right: 0; }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,.6);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-overlay.show {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-100);
}

.mobile-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1rem;
  transition: var(--transition-fast);
}
.mobile-close:hover { background: var(--gray-200); }

.mobile-nav__links {
  padding: 16px 0;
  flex: 1;
}

.mobile-nav__section-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 12px 24px 6px;
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 24px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--gray-50);
  transition: var(--transition-fast);
}

.mobile-nav__link:hover {
  color: var(--blue);
  background: var(--blue-xlight);
}

.mobile-nav__link i {
  width: 20px;
  color: var(--text-muted);
  font-size: .9rem;
}

.mobile-nav__sub {
  padding-left: 44px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-muted);
}

.mobile-nav__cta {
  padding: 20px 24px;
  border-top: 1px solid var(--gray-100);
  background: var(--gray-50);
}

/* ── Hero Section ─────────────────────────────────────────────── */
.hero {
  min-height: 88vh;
  min-height: 88svh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 55% at 75% 45%, rgba(0,159,110,.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 15% 85%, rgba(197,160,64,.13) 0%, transparent 55%),
    linear-gradient(160deg, #002D2E 0%, #003D32 45%, #002520 100%);
}

.hero__pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 52px;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  z-index: 2;
}

.hero__content { max-width: 680px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(197,160,64,.14);
  border: 1px solid rgba(197,160,64,.30);
  color: var(--gold-light);
  font-size: .76rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: #5df5a0;
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 8px rgba(93,245,160,.7);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.75); }
}

.hero__headline {
  color: var(--white);
  margin-bottom: 18px;
  font-size: clamp(1.85rem, 3.6vw, 3.1rem);
  font-weight: 800;
  line-height: 1.08;
}

.hero__headline .text-gold  { color: var(--gold); }
.hero__headline .text-blue  { color: var(--blue-light); }
.hero__headline .text-green { color: #5df5a0; }

.hero__sub {
  font-size: 1.02rem;
  color: rgba(255,255,255,.70);
  line-height: 1.72;
  margin-bottom: 26px;
  max-width: 560px;
}

/* ── Credential Pills — category-coloured ─────────────────────── */
.hero__creds {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.cred-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .79rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
  cursor: default;
}
.cred-pill--safety {
  background: rgba(0,159,110,.16);
  border: 1px solid rgba(0,159,110,.34);
  color: #7de8c0;
}
.cred-pill--tech {
  background: rgba(197,160,64,.14);
  border: 1px solid rgba(197,160,64,.30);
  color: var(--gold-light);
}
.cred-pill--global {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.84);
}
.cred-pill--safety i { color: #5df5a0; font-size: .75rem; }
.cred-pill--tech    i { color: var(--gold); font-size: .75rem; }
.cred-pill--global  i { color: rgba(255,255,255,.65); font-size: .75rem; }

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Hero Professional Card ──────────────────────────────────── */
.hero__visual { flex-shrink: 0; }

.hero__pro-card {
  position: relative;
  width: 300px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 28px;
  padding: 30px 24px 24px;
  backdrop-filter: blur(18px);
  box-shadow: 0 32px 64px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.08);
  text-align: center;
}

/* Gold top accent stripe */
.hero__pro-card::before {
  content: '';
  position: absolute;
  top: 0; left: 28px; right: 28px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), #f0d080, var(--gold), transparent);
  border-radius: 0 0 4px 4px;
}

/* Floating top badge */
.hero__pro-badge {
  position: absolute;
  top: -14px; right: 20px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  font-size: .70rem;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: var(--radius-full);
  letter-spacing: .04em;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0,159,110,.45);
}
.hero__pro-badge i { color: #5df5a0; margin-right: 4px; }

/* Avatar ring */
.hero__avatar-wrap {
  position: relative;
  width: 144px;
  height: 144px;
  margin: 10px auto 22px;
}
.hero__avatar-ring {
  width: 144px;
  height: 144px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 3px var(--gold), 0 8px 32px rgba(0,0,0,.5);
}
.hero__avatar-monogram {
  font-family: var(--font-heading);
  font-size: 2.9rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -.02em;
  line-height: 1;
}

/* Orbiting credential badges */
.hero__orbit-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .67rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  animation: float-badge 3s ease-in-out infinite;
}
.hero__orbit-badge--1 {
  top: -10px; right: -64px;
  background: rgba(0,159,110,.22);
  border: 1px solid rgba(0,159,110,.48);
  color: #7de8c0;
  animation-delay: 0s;
}
.hero__orbit-badge--2 {
  bottom: 8px; right: -72px;
  background: rgba(197,160,64,.18);
  border: 1px solid rgba(197,160,64,.42);
  color: var(--gold-light);
  animation-delay: 1.1s;
}
.hero__orbit-badge--3 {
  top: 28px; left: -72px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.84);
  animation-delay: 2.2s;
}
@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.hero__pro-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.hero__pro-title {
  font-size: .74rem;
  color: rgba(255,255,255,.48);
  margin-bottom: 20px;
  line-height: 1.45;
}

/* Stats bar */
.hero__pro-stats {
  display: flex;
  align-items: center;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  padding: 14px 8px;
  margin-bottom: 16px;
}
.hero__pro-stat  { flex: 1; text-align: center; }
.hero__pro-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--gold);
  line-height: 1;
}
.hero__pro-stat span {
  display: block;
  font-size: .66rem;
  color: rgba(255,255,255,.48);
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.hero__pro-divider {
  width: 1px; height: 32px;
  background: rgba(255,255,255,.10);
  flex-shrink: 0;
}

/* Verified status chip */
.hero__pro-verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .71rem;
  font-weight: 600;
  color: #7de8c0;
  background: rgba(0,159,110,.11);
  border: 1px solid rgba(0,159,110,.24);
  padding: 6px 14px;
  border-radius: var(--radius-full);
}
.hero__pro-verified i { font-size: .78rem; }

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.35);
  font-size: .77rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  z-index: 2;
}
.hero__scroll-arrow {
  width: 24px; height: 24px;
  border-right: 2px solid rgba(255,255,255,.25);
  border-bottom: 2px solid rgba(255,255,255,.25);
  transform: rotate(45deg);
  animation: scroll-bounce 1.5s infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(6px); }
}

@media (max-width: 1100px) {
  .hero .container { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .hero__content   { max-width: 640px; }
  .hero__creds, .hero__actions { justify-content: center; }
  .hero__visual    { display: none; }
}
@media (max-width: 640px) {
  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}

/* ── Trust Bar — Scrolling Credential Marquee ───────────────── */
.trust-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
}
.trust-bar__header {
  padding: 16px 0 12px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.trust-bar__label {
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  display: flex;
  align-items: center;
  gap: 16px;
}
.trust-bar__label::before,
.trust-bar__label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.08);
}

/* Marquee wrapper with fade edges */
.trust-marquee-wrapper {
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.trust-marquee-wrapper::before,
.trust-marquee-wrapper::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 80px; z-index: 2; pointer-events: none;
}
.trust-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--navy-mid), transparent);
}
.trust-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--navy-mid), transparent);
}

.trust-marquee {
  display: flex;
  width: max-content;
  animation: marquee-scroll 38s linear infinite;
}
.trust-marquee:hover { animation-play-state: paused; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.trust-marquee__track {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
}

/* Individual credential chip */
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 10px 16px;
  white-space: nowrap;
  transition: var(--transition-fast);
  cursor: default;
}
.trust-chip:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(0,159,110,.32);
  transform: translateY(-2px);
}
.trust-chip__icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: .88rem;
  flex-shrink: 0;
}
.trust-chip__icon--green { background: rgba(0,159,110,.18); color: #5df5a0; }
.trust-chip__icon--gold  { background: rgba(197,160,64,.16); color: var(--gold); }
.trust-chip__icon--blue  { background: rgba(56,96,190,.22);  color: #8ab4f8; }

.trust-chip__text { display: flex; flex-direction: column; gap: 1px; }
.trust-chip__name {
  font-family: var(--font-heading);
  font-size: .82rem; font-weight: 700;
  color: rgba(255,255,255,.88);
  letter-spacing: .02em;
}
.trust-chip__sub {
  font-size: .67rem;
  color: rgba(255,255,255,.40);
  font-weight: 500;
}

.trust-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .trust-marquee { animation-duration: 22s; }
}

/* ── Service Cards ────────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 0;
  border: 1px solid var(--gray-200);
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.service-card__top {
  padding: 28px 28px 24px;
  border-bottom: 1px solid var(--gray-100);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__foot {
  padding: 18px 28px;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  opacity: 0;
  transition: opacity .3s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-xl);
  border-color: var(--blue-xlight);
}

.service-card:hover::before { opacity: 1; }

.service-card__icon {
  width: 66px;
  height: 66px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: var(--transition);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(11,29,54,.25);
}

.service-card:hover .service-card__icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  transform: scale(1.08);
  box-shadow: var(--shadow-blue);
}

.service-card__tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue);
  background: var(--blue-xlight);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.service-card__title {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-card__desc {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.75;
  flex: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--blue);
  font-size: .88rem;
  transition: var(--transition);
}

.service-card__link:hover { gap: 12px; color: var(--navy); }

.service-card__arr {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: .8rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.service-card:hover .service-card__arr {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

/* Service card gold variant */
.service-card--gold .service-card__icon {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}
.service-card--gold .service-card__tag {
  color: var(--gold-dark);
  background: var(--gold-xlight);
}
.service-card--gold .service-card__link { color: var(--gold-dark); }
.service-card--gold .service-card__arr { color: var(--gold-dark); border-color: var(--gold-light); }
.service-card--gold:hover .service-card__arr {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.service-card--gold::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

/* Compact variant for services overview page */
.service-card--compact .service-card__icon { width: 52px; height: 52px; font-size: 1.3rem; }

/* ── Stats Strip ──────────────────────────────────────────────── */
.stats-strip { background: var(--navy); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 56px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: var(--transition-slow);
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,.03); }

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  display: block;
  color: rgba(255,255,255,.55);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.stat-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(184,126,24,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  margin: 0 auto 16px;
}

@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,.08); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.08); }
}

@media (max-width: 500px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Why Choose Section ───────────────────────────────────────── */
.feature-card {
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: var(--transition-slow);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-xlight);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.feature-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.feature-card__desc {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.7;
}

/* ── Industries Grid ──────────────────────────────────────────── */
.industry-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  transition: var(--transition-slow);
  cursor: pointer;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-xlight);
}

.industry-card__icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--navy-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--navy);
  margin: 0 auto 18px;
  transition: var(--transition);
}

.industry-card:hover .industry-card__icon {
  background: var(--navy);
  color: var(--gold);
}

.industry-card__name {
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.industry-card__tag {
  font-size: .78rem;
  color: var(--text-muted);
}

/* ── Solution Showcase (alternating) ─────────────────────────── */
.solution-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.solution-block--reverse { direction: rtl; }
.solution-block--reverse > * { direction: ltr; }

.solution-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  position: relative;
}

.solution-visual__icon {
  font-size: 5rem;
  color: var(--gold);
  opacity: .35;
  position: absolute;
  bottom: 20px;
  right: 24px;
}

.solution-visual__label {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--gold);
  color: var(--navy);
  font-size: .75rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.solution-content { }
.solution-content .eyebrow { margin-bottom: 10px; }
.solution-content h3 { margin-bottom: 18px; font-size: clamp(1.5rem, 2.5vw, 2rem); }
.solution-content p  { margin-bottom: 24px; }

.solution-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.solution-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
  color: var(--text-muted);
}

.solution-feature i {
  color: var(--blue);
  font-size: .85rem;
  flex-shrink: 0;
  margin-top: 3px;
  width: 16px;
}

@media (max-width: 860px) {
  .solution-block, .solution-block--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 32px;
  }
  .solution-visual { min-height: 240px; }
}

/* ── Testimonials ─────────────────────────────────────────────── */
.testimonials { background: var(--gray-50); }

.testimonial-slider { position: relative; overflow: hidden; }

.testimonial-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 4px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--gray-200);
  max-width: 780px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card__quote {
  color: var(--blue-xlight);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 20px;
}

.testimonial-card__quote i { color: var(--blue); opacity: .3; }

.testimonial-card__text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
  margin-bottom: 28px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-card__author-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.testimonial-card__author-title {
  font-size: .85rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-top: 16px;
}

.testimonial-card__stars i { color: var(--gold); font-size: .95rem; }

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.testimonial-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  cursor: pointer;
  font-size: .9rem;
}

.testimonial-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
}

.testimonial-dot.active {
  background: var(--navy);
  width: 24px;
  border-radius: var(--radius-full);
}

/* ── CTA Banner ───────────────────────────────────────────────── */
.cta-banner {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(8,145,178,.2) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184,126,24,.12) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta-banner__content h2 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.cta-banner__content p {
  color: rgba(255,255,255,.72);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

.cta-banner__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ───────────────────────────────────────────────────── */
.footer { background: var(--gray-900); }

.footer__main { padding: 72px 0 56px; }

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr;
  gap: 40px;
}

.footer__col--brand {}

.footer__logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -.02em;
}

.footer__logo span { color: var(--gold); }

.footer__col p {
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  line-height: 1.75;
  margin: 16px 0 24px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  transition: var(--transition-fast);
}

.footer__social a:hover {
  background: var(--gold);
  color: var(--navy);
}

.footer__col h5 {
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer__col ul { display: flex; flex-direction: column; gap: 10px; }

.footer__col ul a {
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__col ul a:hover { color: var(--gold); padding-left: 4px; }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer__contact-item i {
  color: var(--gold);
  font-size: .9rem;
  margin-top: 3px;
  width: 16px;
  flex-shrink: 0;
}

.footer__contact-item a,
.footer__contact-item span {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  line-height: 1.5;
  transition: var(--transition-fast);
}

.footer__contact-item a:hover { color: var(--gold); }

.footer__newsletter { margin-top: 24px; }

.footer__newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.footer__newsletter input {
  flex: 1;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  color: var(--white);
  font-size: .85rem;
}

.footer__newsletter input::placeholder { color: rgba(255,255,255,.35); }
.footer__newsletter input:focus { outline: none; border-color: var(--gold); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}

.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p {
  color: rgba(255,255,255,.35);
  font-size: .82rem;
  margin: 0;
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal a {
  color: rgba(255,255,255,.35);
  font-size: .82rem;
  transition: var(--transition-fast);
}

.footer__legal a:hover { color: var(--gold); }

@media (max-width: 1100px) {
  .footer__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__col--brand { grid-column: 1 / -1; }
}

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

@media (max-width: 500px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ── WhatsApp Floating Button ─────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.65);
  color: white;
}

.whatsapp-float__tooltip {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy);
  color: white;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: .8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.whatsapp-float:hover .whatsapp-float__tooltip { opacity: 1; }

/* ── Back to Top ──────────────────────────────────────────────── */
.back-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 8999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  border: none;
}

.back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top:hover { background: var(--blue); transform: translateY(-2px); }

/* ── Cookie Banner ────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8998;
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 16px 0;
  transform: translateY(100%);
  transition: transform .4s ease;
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner p {
  color: rgba(255,255,255,.75);
  font-size: .88rem;
  margin: 0;
}

.cookie-banner a { color: var(--gold); }

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ── Form Elements ────────────────────────────────────────────── */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition-fast);
  appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(8,145,178,.1);
}

.form-control::placeholder { color: var(--text-light); }

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-status {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  margin-top: 16px;
  display: none;
}

.form-status--success {
  display: block;
  background: var(--success-light);
  color: #047857;
  border: 1px solid #a7f3d0;
}

.form-status--error {
  display: block;
  background: var(--danger-light);
  color: #b91c1c;
  border: 1px solid #fca5a5;
}

/* Honeypot */
.form-honeypot { display: none !important; }

/* ── Misc Utilities ───────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: 40px 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-xlight);
  color: var(--blue);
  font-size: .78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.tag--gold {
  background: var(--gold-xlight);
  color: var(--gold-dark);
}

.tag--navy {
  background: var(--navy-xlight);
  color: var(--navy);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}

.step-item {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow);
}

.step-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 10px;
}

.step-desc {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .process-steps::before { display: none; }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ── Responsive Global ────────────────────────────────────────── */
@media (max-width: 640px) {
  :root {
    --section-pad: 64px;
    --section-pad-sm: 40px;
    --section-pad-lg: 80px;
  }
  .section-header { margin-bottom: 40px; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
  .cta-banner__actions .btn { width: 100%; justify-content: center; }
}
