/* ============================================================
   OCEAN REEFS LTD — MASTER STYLESHEET
   Design: Luxury Maritime | Deep Navy × Electric Blue × Cyan
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --navy:        #040D1A;
  --navy-mid:    #071224;
  --navy-light:  #0C1E36;
  --blue:        #1466F5;
  --blue-dark:   #0E50C8;
  --blue-light:  #3D84FF;
  --cyan:        #00D4FF;
  --cyan-dim:    rgba(0,212,255,0.15);
  --white:       #FFFFFF;
  --off-white:   #F7F9FC;
  --ice:         #EEF3FB;
  --silver:      #D0D8E8;
  --steel:       #5A6E8C;
  --muted:       #8898B0;
  --gold:        #C8963E;

  --shadow-sm:   0 2px 8px rgba(4,13,26,0.06);
  --shadow-md:   0 6px 24px rgba(4,13,26,0.09);
  --shadow-lg:   0 16px 48px rgba(4,13,26,0.13);
  --shadow-xl:   0 32px 80px rgba(4,13,26,0.18);
  --shadow-blue: 0 8px 32px rgba(20,102,245,0.28);
  --shadow-cyan: 0 0 40px rgba(0,212,255,0.15);

  --ease:        cubic-bezier(0.25,0.46,0.45,0.94);
  --ease-bounce: cubic-bezier(0.34,1.56,0.64,1);
  --t:           0.35s;
  --t-fast:      0.2s;

  --radius-sm:   4px;
  --radius:      8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
}

/* ── RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--navy);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
button { cursor: pointer; border: none; background: none; }

/* ── TOP BAR ─────────────────────────────────────────────── */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 8px 0;
  border-bottom: 1px solid rgba(20,102,245,0.2);
}
.top-bar i { color: var(--cyan); margin-right: 5px; font-size: 0.68rem; }
.top-bar a { color: rgba(255,255,255,0.55); transition: color var(--t-fast); }
.top-bar a:hover { color: var(--cyan); }

/* ── NAVBAR ──────────────────────────────────────────────── */
.site-nav {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(4,13,26,0.06);
  padding: 0;
  transition: box-shadow var(--t) var(--ease), padding var(--t) var(--ease);
  z-index: 1050;
}
.site-nav.scrolled { box-shadow: var(--shadow-md); }
.site-nav .container { min-height: 72px; }

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy) !important;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-brand-icon {
  width: 40px; height: 40px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.nav-brand em { color: var(--blue); font-style: normal; }

.nav-link-item {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--steel) !important;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  transition: all var(--t-fast) var(--ease);
  position: relative;
}
.nav-link-item:hover, .nav-link-item.active {
  color: var(--blue) !important;
  background: rgba(20,102,245,0.05);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--t-fast) var(--ease);
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--steel);
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--t-fast);
}
.nav-dropdown-menu a:hover { color: var(--blue); background: var(--ice); }

.btn-nav-cta {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--blue);
  color: white !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-sm);
  transition: all var(--t-fast) var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-nav-cta:hover {
  background: var(--navy);
  box-shadow: var(--shadow-blue);
  transform: translateY(-1px);
}
.navbar-toggler {
  border: 1px solid var(--silver);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  color: var(--navy);
  font-size: 1.3rem;
  line-height: 1;
}
.navbar-toggler:focus { box-shadow: none; }

/* Mobile nav */
@media(max-width:991px) {
  .site-nav .container { min-height: 64px; }
  .navbar-collapse {
    background: var(--white);
    border: 1px solid var(--silver);
    border-radius: var(--radius);
    padding: 16px;
    margin-top: 8px;
    box-shadow: var(--shadow-md);
  }
  .nav-dropdown-menu {
    position: static;
    opacity: 1; visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--ice);
    margin: 4px 0;
  }
  .nav-link-item { padding: 10px 14px !important; }
}

/* ── UTILITY CLASSES ─────────────────────────────────────── */
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

.eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--cyan);
  flex-shrink: 0;
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-title .accent { color: var(--blue); }
.section-sub {
  font-size: 0.96rem;
  color: var(--steel);
  line-height: 1.75;
  max-width: 540px;
}
.divider {
  width: 44px; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  margin-bottom: 20px;
  border-radius: 2px;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: all var(--t-fast) var(--ease);
  border: none;
}
.btn-primary-custom:hover {
  background: var(--navy);
  color: white;
  box-shadow: var(--shadow-blue);
  transform: translateY(-2px);
}
.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--silver);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  transition: all var(--t-fast) var(--ease);
}
.btn-outline-custom:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: white;
  transform: translateY(-2px);
}
.btn-white-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--navy);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: all var(--t-fast) var(--ease);
}
.btn-white-custom:hover {
  background: var(--blue);
  color: white;
  box-shadow: var(--shadow-blue);
  transform: translateY(-2px);
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.25);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  transition: all var(--t-fast) var(--ease);
}
.btn-outline-white:hover {
  background: white;
  color: var(--navy);
  border-color: white;
  transform: translateY(-2px);
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
  transition: all var(--t-fast);
}
.link-arrow:hover { gap: 12px; color: var(--navy); }

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

/* Slider backgrounds */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(4,13,26,0.92) 0%,
    rgba(4,13,26,0.72) 50%,
    rgba(4,13,26,0.45) 100%
  );
}

/* Slide indicators */
.hero-indicators {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 28px; height: 3px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--t) var(--ease);
}
.hero-dot.active {
  background: var(--cyan);
  width: 48px;
}

.hero-content {
  position: relative;
  z-index: 5;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  padding: 6px 16px;
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
  animation: fadeInDown 0.7s var(--ease) both;
}
.hero-badge-pulse {
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,212,255,0.5); }
  50%      { box-shadow: 0 0 0 8px rgba(0,212,255,0); }
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 700;
  color: white;
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s var(--ease) 0.1s both;
}
.hero-title .cyan { color: var(--cyan); }
.hero-title .italic { font-style: italic; }

.hero-typing-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
  min-height: 30px;
  animation: fadeInUp 0.8s var(--ease) 0.2s both;
}
.typing-word {
  color: var(--cyan);
  font-weight: 700;
}
.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: var(--cyan);
  vertical-align: text-bottom;
  margin-left: 1px;
  animation: blink 0.8s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.62);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s var(--ease) 0.3s both;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s var(--ease) 0.4s both;
}

.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  animation: fadeInUp 0.8s var(--ease) 0.5s both;
}
.hero-stat {
  flex: 1;
  padding-right: 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
  margin-right: 24px;
}
.hero-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.hero-stat-num span { color: var(--cyan); }
.hero-stat-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 140px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(20,102,245,0.12) 0%, transparent 65%);
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 44px 44px;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.page-hero-eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--cyan);
}
.page-hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.page-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.58);
  max-width: 560px;
  line-height: 1.75;
}
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-top: 20px;
}
.page-breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--t-fast); }
.page-breadcrumb a:hover { color: var(--cyan); }
.page-breadcrumb i { font-size: 0.6rem; }

/* ── CARDS ───────────────────────────────────────────────── */
.feature-card {
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  padding: 32px 28px;
  height: 100%;
  transition: all var(--t) var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease);
}
.feature-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card-icon {
  width: 48px; height: 48px;
  background: var(--ice);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-size: 1.25rem;
  margin-bottom: 18px;
  transition: all var(--t) var(--ease);
}
.feature-card:hover .feature-card-icon {
  background: var(--blue);
  color: white;
}
.feature-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--steel);
  line-height: 1.7;
  margin: 0;
}

/* Numbered card */
.numbered-card {
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  padding: 36px 28px;
  height: 100%;
  transition: all var(--t) var(--ease);
  position: relative;
}
.numbered-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(20,102,245,0.2);
  transform: translateY(-4px);
}
.card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(20,102,245,0.06);
  position: absolute;
  top: 12px; right: 16px;
  line-height: 1;
  pointer-events: none;
}

/* Product card */
.product-card {
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--t) var(--ease);
  height: 100%;
}
.product-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
  border-color: transparent;
}
.product-card-img {
  position: relative;
  overflow: hidden;
}
.product-card-img img {
  width: 100%; height: 200px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  display: block;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--blue);
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.product-card-body { padding: 20px; }
.product-card-body h5 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.product-card-body p {
  font-size: 0.83rem;
  color: var(--steel);
  margin: 0;
  line-height: 1.6;
}

/* Service card */
.service-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  background: var(--white);
  transition: all var(--t) var(--ease);
  height: 100%;
}
.service-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(20,102,245,0.25);
  transform: translateX(4px);
}
.service-item-icon {
  width: 44px; height: 44px;
  background: var(--ice);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all var(--t);
}
.service-item:hover .service-item-icon {
  background: var(--blue);
  color: white;
}
.service-item-body h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.service-item-body p {
  font-size: 0.83rem;
  color: var(--steel);
  margin: 0;
  line-height: 1.6;
}

/* ── DARK SECTION ────────────────────────────────────────── */
.dark-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.dark-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20,102,245,0.08) 0%, transparent 70%);
  top: -150px; right: -100px;
  pointer-events: none;
}
.dark-section::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.05) 0%, transparent 70%);
  bottom: -80px; left: -60px;
  pointer-events: none;
}

/* Stats in dark */
.stat-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.stat-big .stat-accent { color: var(--cyan); }
.stat-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
}

/* ── TEAM CARDS ──────────────────────────────────────────── */
.team-card {
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--t) var(--ease);
  height: 100%;
}
.team-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
  border-color: transparent;
}
.team-card-top {
  background: var(--navy);
  padding: 32px 24px 20px;
  position: relative;
  overflow: hidden;
}
.team-card-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(20,102,245,0.2) 0%, transparent 60%);
}
.team-avatar {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.team-card-top h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 4px;
  position: relative; z-index: 1;
}
.team-card-top .team-role {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cyan);
  position: relative; z-index: 1;
}
.team-card-body { padding: 20px 24px; }
.team-card-body p {
  font-size: 0.86rem;
  color: var(--steel);
  line-height: 1.7;
  margin: 0;
}
.team-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.cred-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: var(--ice);
  color: var(--blue);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(20,102,245,0.12);
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: all var(--t-fast);
}
.faq-item.open {
  border-color: rgba(20,102,245,0.25);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  gap: 16px;
}
.faq-question h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  line-height: 1.45;
}
.faq-icon {
  width: 28px; height: 28px;
  background: var(--ice);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: all var(--t-fast);
}
.faq-item.open .faq-icon {
  background: var(--blue);
  color: white;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-answer-inner {
  padding: 0 22px 18px;
  font-size: 0.88rem;
  color: var(--steel);
  line-height: 1.75;
  border-top: 1px solid var(--ice);
  padding-top: 16px;
}
.faq-item.open .faq-answer { max-height: 600px; }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(20,102,245,0.15) 0%, transparent 60%);
}
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.contact-item-icon {
  width: 38px; height: 38px;
  background: rgba(0,212,255,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.contact-item-text { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.contact-item-text strong { display: block; font-weight: 600; color: white; margin-bottom: 2px; font-family: 'Space Grotesk', sans-serif; font-size: 0.78rem; letter-spacing: 0.04em; text-transform: uppercase; }

/* Google Form embed */
.form-container {
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.form-container iframe {
  width: 100%;
  border: none;
  display: block;
}
.form-fallback {
  padding: 32px;
  text-align: center;
  background: var(--ice);
}

/* ── PARTNERS BAR ────────────────────────────────────────── */
.partners-section {
  background: var(--white);
  border-top: 1px solid var(--silver);
  border-bottom: 1px solid var(--silver);
  padding: 32px 0;
}
.partner-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ice);
  border: 1px solid var(--silver);
  color: var(--steel);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 8px 16px;
  border-radius: 100px;
  transition: all var(--t-fast);
  white-space: nowrap;
}
.partner-chip i { color: var(--blue); }
.partner-chip:hover {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}
.partner-chip:hover i { color: white; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  height: 100%;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: rgba(20,102,245,0.08);
  position: absolute;
  top: 16px; left: 24px;
  line-height: 1;
}
.testimonial-stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 18px;
  position: relative; z-index: 1;
}
.testimonial-author {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.03em;
}
.testimonial-role {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 2px;
}

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
  padding: 88px 0;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: 50%;
  top: -200px; right: -150px;
}
.cta-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: white;
  letter-spacing: -0.03em;
}
.cta-sub {
  font-size: 0.96rem;
  color: rgba(255,255,255,0.55);
  max-width: 500px;
  margin: 12px auto 28px;
  line-height: 1.75;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-mid);
  padding: 72px 0 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}
.footer-brand em { color: var(--cyan); font-style: normal; }
.footer-desc {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 0;
}
.footer-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 2px; }
.footer-links a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.38);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 0;
  transition: color var(--t-fast);
}
.footer-links a:hover { color: var(--cyan); }
.footer-links i { font-size: 1rem; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.38);
  margin-bottom: 12px;
  line-height: 1.5;
}
.footer-contact-item i { color: var(--cyan); font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.38); transition: color var(--t-fast); }
.footer-contact-item a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 48px;
  padding: 20px 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.22);
}

/* ── SCROLL TOP ──────────────────────────────────────────── */
.scroll-top-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--blue);
  color: white;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  z-index: 999;
  opacity: 0; visibility: hidden;
  transform: translateY(12px);
  transition: all var(--t) var(--ease);
  box-shadow: var(--shadow-blue);
}
.scroll-top-btn.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top-btn:hover { background: var(--navy); }

/* ── PRELOADER ───────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0;
  background: var(--white);
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}
#preloader.done { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-logo {
  width: 56px; height: 56px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  font-size: 1.4rem;
  margin: 0 auto 16px;
  animation: preloaderPulse 1.5s ease infinite;
}
@keyframes preloaderPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,212,255,0.3); }
  50%      { box-shadow: 0 0 0 18px rgba(0,212,255,0); }
}
.preloader-bar {
  width: 100px; height: 2px;
  background: var(--ice);
  border-radius: 1px;
  overflow: hidden;
  margin: 0 auto;
}
.preloader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  animation: preloaderSlide 1.1s ease-in-out infinite;
}
@keyframes preloaderSlide {
  0%   { width: 0; margin-left: 0; }
  50%  { width: 100%; margin-left: 0; }
  100% { width: 0; margin-left: 100%; }
}

/* ── AOS CUSTOM ──────────────────────────────────────────── */
[data-aos] { transition-property: transform, opacity; }

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Checklist */
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--steel);
  padding: 5px 0;
  line-height: 1.6;
}
.check-list li i { color: var(--blue); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }

/* Value card */
.value-card {
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: all var(--t) var(--ease);
  height: 100%;
}
.value-card:hover {
  border-color: rgba(20,102,245,0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.value-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(20,102,245,0.1), rgba(0,212,255,0.1));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-size: 1.35rem;
  margin: 0 auto 14px;
}
.value-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.value-card p {
  font-size: 0.84rem;
  color: var(--steel);
  margin: 0;
  line-height: 1.65;
}

/* Industry card */
.industry-card {
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--t) var(--ease);
  height: 100%;
  cursor: default;
}
.industry-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(20,102,245,0.2);
  transform: translateY(-5px);
}
.industry-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: var(--ice);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-size: 1.3rem;
  margin-bottom: 16px;
  transition: all var(--t);
}
.industry-card:hover .industry-icon { background: var(--blue); color: white; }
.industry-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.industry-card p {
  font-size: 0.84rem;
  color: var(--steel);
  line-height: 1.65;
  margin: 0;
}

/* Regulatory card */
.reg-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--t) var(--ease);
}
.reg-card:hover {
  border-color: rgba(0,212,255,0.2);
  transform: translateY(-4px);
}
.reg-card h5 { color: white; font-size: 1rem; margin-bottom: 8px; }
.reg-card p { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin: 0; line-height: 1.6; }
.reg-icon {
  width: 44px; height: 44px;
  background: rgba(0,212,255,0.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  font-size: 1.1rem;
  margin-bottom: 14px;
}

/* Sustainability */
.sus-card {
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  padding: 32px 28px;
  height: 100%;
  transition: all var(--t) var(--ease);
  position: relative;
  overflow: hidden;
}
.sus-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease);
}
.sus-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.sus-card:hover::after { transform: scaleX(1); }

/* Careers */
.job-card {
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: all var(--t) var(--ease);
}
.job-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(20,102,245,0.25);
  transform: translateX(4px);
}
.job-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--ice);
  color: var(--blue);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(20,102,245,0.12);
}

/* Map embed */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-container iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* Off-white bg */
.bg-off { background: var(--off-white); }
.bg-ice { background: var(--ice); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media(max-width:768px) {
  .section-pad { padding: 64px 0; }
  .hero-stats { gap: 0; flex-wrap: wrap; }
  .hero-stat {
    width: 50%; border-right: none;
    padding: 0 0 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin: 0 0 16px;
  }
  .hero-stat:last-child { border-bottom: none; margin-bottom: 0; }
}
@media(max-width:576px) {
  .hero-btns { flex-direction: column; }
  .btn-primary-custom, .btn-outline-custom, .btn-white-custom, .btn-outline-white { width: 100%; justify-content: center; }
  .hero-title { font-size: 2.8rem; }
  .page-hero { padding: 110px 0 52px; }
}
