/* ==========================================================================
   DI — ENTERPRISE DESIGN SYSTEM
   Theme inspired by: Aera Technology (aeratechnology.com)
   ========================================================================== */

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

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

:root {
  /* Aera-adopted palette */
  --ink: #1a1a1a;
  --body: #5c6476;
  --muted: #8b94a8;
  --border: #bee9f3;
  --border-subtle: #e2eff8;
  --surface: #f4f9fd;
  --white: #FFFFFF;

  /* Aera accent blues */
  --accent: #00619e;
  --accent-hover: #004d80;

  /* Aera teal/mint */
  --teal: #85daca;
  --teal-dark: #6dc9b7;

  /* DI brand maroon kept */
  --maroon: #8D1D15;
  --maroon-hover: #721710;

  /* Supporting */
  --purple: #7B4FA8;

  /* Aera button gradient */
  --btn-gradient: linear-gradient(180deg, #dff9ff 0%, #dee9fb 100%);
  --btn-gradient-hover: linear-gradient(180deg, #dee9fb 0%, #dff9ff 100%);

  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w: 1080px;
  --radius: 8px;
  --radius-pill: 999px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--body);
  background: var(--white);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.wrap-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.15s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}
.nav-item { 
  position: relative; 
}
.dropdown {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 210px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  z-index: 2500 !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  pointer-events: none;
}
/* Invisible bridge covering the gap between link and dropdown */
.dropdown::before {
  content: '';
  position: absolute;
  top: -24px;
  left: -10px;
  right: -10px;
  height: 28px;
  background: transparent;
}
.nav-item:hover .dropdown,
.nav-item.open .dropdown,
.dropdown:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
  pointer-events: auto;
}
.dropdown a {
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dropdown a:hover { background: var(--surface); }
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-purple { background: var(--purple); }
.dot-maroon { background: var(--maroon); }
.dot-blue { background: var(--accent); }
.dot-teal { background: var(--teal); }
.dot-gradient { background: linear-gradient(135deg, var(--accent), var(--maroon)); }
.dot-amber { background: #cd6828; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 2.2em;
  height: 3.2em;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: border-color 0.18s, background-color 0.18s, color 0.18s;
  font-family: var(--font);
  white-space: nowrap;
  background: rgba(255,255,255,0.5);
  color: var(--ink);
}
.btn:hover {
  background: var(--btn-gradient-hover);
  border-color: #dff9ff;
}
.btn-primary {
  background: var(--btn-gradient);
  color: var(--ink);
  border: none;
}
.btn-primary:hover {
  background: var(--btn-gradient-hover);
}
.btn-accent {
  /* DI brand CTA — keeps maroon identity */
  background: var(--maroon);
  color: var(--white);
  border: none;
  letter-spacing: 0.04em;
}
.btn-accent:hover {
  background: var(--maroon-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(141,29,21,0.25);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  background: var(--btn-gradient);
  border-color: var(--teal);
}
.btn-white {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn-white:hover {
  background: var(--surface);
}
.btn-lg {
  padding: 0 2.6em;
  height: 3.6em;
  font-size: 14px;
}

/* ==========================================================================
   HERO — AERA CLEAN PLAIN LIGHT THEME
   ========================================================================== */
.hero-aera {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #ffffff;
  padding: 110px 0 90px;
}

.hero-aera-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 20px 0;
}


.hero-aera .hero-eyebrow {
  display: inline-block;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1.5px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-pill);
  padding: 10px 30px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(0,97,158,0.1);
}

.hero-aera-title {
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-aera-subtitle {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin-bottom: 22px;
}

.hero-aera-desc {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--body);
  line-height: 1.65;
  max-width: 760px;
  margin: 0 auto 38px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}


/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section {
  padding: 100px 0;
}
.section-dark {
  background: var(--ink);
  color: var(--white);
}
.section-surface {
  background: var(--surface);
}

/* ==========================================================================
   AERA TRUST BAR
   ========================================================================== */
.aera-bar {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--surface);
  padding: 24px 0;
}
.aera-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.aera-bar-powered {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}
.aera-bar-divider {
  width: 2px;
  height: 24px;
  background: var(--border);
  flex-shrink: 0;
}
.aera-bar-text {
  font-size: 17px;
  color: var(--ink);
  font-weight: 600;
}


/* ==========================================================================
   AERA-STYLE SECTION HEADER
   ========================================================================== */
.sol-section {
  padding: 0 0 100px;
}
.sol-section-header {
  position: relative;
  text-align: center;
  padding: 70px 20px 50px;
  background: #fff;
}


.sol-header-text {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.sol-header-text .section-label {
  margin-bottom: 14px;
}
.sol-big-heading {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 18px;
}
.sol-big-sub {
  font-size: 16px;
  color: var(--body);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}

/* ==========================================================================
   SOLUTIONS CARD GRID
   ========================================================================== */

.sol-grid-all,
.sol-grid-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.sol-grid-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.sol-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 24px 24px 26px;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.sol-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  border-radius: 12px 12px 0 0;
}
.sol-card--blue::before     { background: #4169e1; }
.sol-card--teal::before     { background: #3b8c82; }
.sol-card--purple::before   { background: #7B4FA8; }
.sol-card--maroon::before   { background: #8d1d15; }
.sol-card--gradient::before { background: linear-gradient(90deg, #4169e1 0%, #4169e1 33.3%, #7B4FA8 33.3%, #7B4FA8 66.6%, #8d1d15 66.6%, #8d1d15 100%); }
.sol-card--amber::before    { background: #cd6828; }

.sol-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.07);
  border-color: var(--border);
}

/* Inset Live Recommendation Box */
.sol-rec-box {
  background: #ffffff;
  border: 1px solid #e8ecf2;
  border-radius: 8px;
  padding: 16px 18px 16px;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}
.sol-rec-header {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3b6b55;
  margin-bottom: 8px;
}
.sol-rec-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  display: inline-block;
}
.sol-rec-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 6px;
}
.sol-rec-sub {
  font-size: 12px;
  color: #64748b;
  line-height: 1.4;
  margin-bottom: 14px;
}
.sol-rec-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sol-rec-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.sol-rec-btn:hover {
  opacity: 0.92;
}
.sol-rec-btn--blue      { background: #5c7cfa; color: #ffffff; }
.sol-rec-btn--teal      { background: #489389; color: #ffffff; }
.sol-rec-btn--purple    { background: #8b5cf6; color: #ffffff; }
.sol-rec-btn--maroon    { background: #962820; color: #ffffff; }
.sol-rec-btn--shortlist { background: #805ad5; color: #ffffff; }
.sol-rec-btn--amber     { background: #cd6828; color: #ffffff; }

.sol-rec-btn--subtle {
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
}
.sol-rec-btn--subtle:hover {
  background: #e2e8f0;
}

.sol-card-body h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.sol-card-body p {
  font-size: 14px;
  color: #556987;
  line-height: 1.5;
  margin-bottom: 16px;
}
.sol-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13.5px;
  font-weight: 700;
  transition: gap 0.15s ease;
}
.sol-card--blue   .sol-card-link { color: #4169e1; }
.sol-card--teal   .sol-card-link { color: #3b8c82; }
.sol-card--purple .sol-card-link { color: #7b4fa8; }
.sol-card--maroon .sol-card-link { color: #8d1d15; }
.sol-card--gradient .sol-card-link { color: #7b4fa8; }
.sol-card--amber  .sol-card-link { color: #cd6828; }

.sol-card:hover .sol-card-link {
  gap: 8px;
}

/* Loop headline */
.loop-headline {
  font-weight: 600;
  color: var(--accent);
  font-size: 15px !important;
  letter-spacing: 0.5px;
}



.section-label {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-dark .section-label {
  color: rgba(255,255,255,0.6);
}


.section-heading {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-dark .section-heading {
  color: var(--white);
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.55;
}
.section-dark .section-sub {
  color: rgba(255,255,255,0.5);
}

/* ==========================================================================
   SOLUTIONS — CLEAN PHOTO CARDS
   ========================================================================== */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.solution-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  text-decoration: none;
  transition: transform 0.2s;
}
.solution-card:hover {
  transform: translateY(-4px);
}
.solution-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.solution-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.solution-card.card-purple::after {
  background: linear-gradient(to top, rgba(123,79,168,0.92) 0%, rgba(123,79,168,0.3) 50%, transparent 100%);
}
.solution-card.card-maroon::after {
  background: linear-gradient(to top, rgba(141,29,21,0.92) 0%, rgba(141,29,21,0.3) 50%, transparent 100%);
}
.solution-card.card-blue::after {
  background: linear-gradient(to top, rgba(72,98,236,0.92) 0%, rgba(72,98,236,0.3) 50%, transparent 100%);
}
.solution-card.card-teal::after {
  background: linear-gradient(to top, rgba(74,122,120,0.92) 0%, rgba(74,122,120,0.3) 50%, transparent 100%);
}
.solution-card.card-dark::after {
  background: linear-gradient(to top, rgba(26,26,46,0.92) 0%, rgba(26,26,46,0.3) 50%, transparent 100%);
}
.solution-card-body {
  position: relative;
  z-index: 2;
  padding: 28px 24px;
}
.solution-card-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.solution-card-body p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.45;
}
.solution-card-body .card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-top: 12px;
  opacity: 0.8;
  transition: opacity 0.15s;
}
.solution-card:hover .card-arrow { opacity: 1; }

/* Two-column card row */
.solutions-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.solution-card-wide {
  aspect-ratio: 16/9;
}

/* ==========================================================================
   STATS ROW — CLEAN PLAIN WHITE WITH BRAND COLORS
   ========================================================================== */
.section-stats {
  padding: 60px 0 90px;
  background: var(--white);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  margin-top: 0;
}

.stat-item {
  padding: 24px 20px;
  text-align: center;
  background: transparent;
  position: relative;
  border: none;
  box-shadow: none;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border);
}

.stat-num {
  font-size: clamp(48px, 5.5vw, 68px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 12px;
  display: inline-block;
  color: var(--accent);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.stat-item:hover .stat-num {
  transform: translateY(-3px);
  color: var(--accent-hover);
}

.stat-label {
  font-size: 13.5px;
  color: var(--body);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 700;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.stat-item:hover .stat-label {
  color: var(--ink);
}

/* ==========================================================================
   HOW IT WORKS — DECISION LOOP GLOSSY NUMBERS & SMOOTH TRANSITIONS
   ========================================================================== */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 32px 24px 28px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.03);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 97, 158, 0.1);
  border-color: var(--border);
}

.step-number {
  font-size: clamp(40px, 4vw, 54px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 16px;
  display: inline-block;

  /* Glossy gradient shine on step numbers */
  background: linear-gradient(
    120deg,
    #00619e 0%,
    #00a4d6 20%,
    #38bdf8 38%,
    #4ade80 58%,
    #7B4FA8 78%,
    #00619e 100%
  );
  background-size: 260% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glossyStepShine 6s linear infinite;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
}

@keyframes glossyStepShine {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.step:hover .step-number {
  transform: scale(1.1) translateY(-2px);
  filter: drop-shadow(0 4px 14px rgba(0, 164, 214, 0.4));
}

.step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.step:hover h3 {
  color: var(--accent);
}

.step p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.55;
  transition: color 0.3s ease;
}
.step:hover p {
  color: var(--ink);
}


/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-section {
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.cta-section h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

/* ==========================================================================
   PARTNER & CUSTOMER LOGO MARQUEE (SEAMLESS INFINITE LOOP)
   ========================================================================== */
.partner-marquee-section {
  padding: 56px 0 64px;
  background: var(--surface);
  border-top: 1px solid var(--border-subtle);
  overflow: hidden;
  text-align: center;
}

.marquee-label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center;
  gap: 56px;
  width: max-content;
  white-space: nowrap;
  animation: continuousMarquee 26s linear infinite;
  will-change: transform;
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes continuousMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 28px));
  }
}

.marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 24px;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: grayscale(10%) opacity(0.88);
}

.marquee-item:hover {
  transform: scale(1.08);
  filter: grayscale(0%) opacity(1);
}

.marquee-item img {
  height: 38px;
  max-width: 145px;
  width: auto;
  object-fit: contain;
  display: block;
}


/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 24px;
  font-size: 13.5px;
  color: var(--muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.6fr;
  gap: 48px;
  margin-bottom: 44px;
}
.footer-brand p {
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--body);
  line-height: 1.6;
  max-width: 320px;
}
.footer-social {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 6px;
  background: #0077b5;
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}
.footer-social-link:hover {
  background: #005e93;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 119, 181, 0.25);
  color: #ffffff !important;
}
.footer-social-link svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}
.footer-social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.footer-social-icon-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.footer-linkedin-logo {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  display: block;
  box-shadow: 0 3px 10px rgba(0, 119, 181, 0.22);
  transition: box-shadow 0.2s ease;
}
.footer-social-icon-btn:hover .footer-linkedin-logo {
  box-shadow: 0 5px 14px rgba(0, 119, 181, 0.35);
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col a {
  font-size: 13.5px;
  color: var(--muted);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--ink); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.45;
}
.footer-contact-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--ink);
}
.footer-contact-item a {
  color: var(--ink);
  font-weight: 500;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-badges {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--muted);
}

/* ==========================================================================
   DOMAIN PAGES
   ========================================================================== */
.domain-hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}
.domain-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.domain-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.domain-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
}
.domain-hero.purple .domain-hero-bg::after {
  background: linear-gradient(135deg, rgba(123,79,168,0.9) 0%, rgba(26,26,46,0.8) 100%);
}
.domain-hero.maroon .domain-hero-bg::after {
  background: linear-gradient(135deg, rgba(141,29,21,0.9) 0%, rgba(26,26,46,0.8) 100%);
}
.domain-hero.blue .domain-hero-bg::after {
  background: linear-gradient(135deg, rgba(72,98,236,0.9) 0%, rgba(26,26,46,0.8) 100%);
}
.domain-hero.teal .domain-hero-bg::after {
  background: linear-gradient(135deg, rgba(74,122,120,0.9) 0%, rgba(26,26,46,0.8) 100%);
}
.domain-hero.dark .domain-hero-bg::after {
  background: linear-gradient(135deg, rgba(26,26,46,0.92) 0%, rgba(72,98,236,0.7) 100%);
}
.domain-hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.domain-hero h1 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.domain-hero-subheading {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700;
  color: #dff9ff;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
}
.domain-hero p, .domain-hero-lead {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  max-width: 780px;
}
.domain-hero-lead strong {
  color: var(--white);
  font-weight: 700;
}

/* Domain Hero Light Theme */
.domain-hero.light {
  background: var(--white);
  padding: 80px 0 20px;
}
.domain-hero.light .domain-hero-content {
  max-width: 860px;
}
.domain-hero.light h1 {
  font-size: clamp(34px, 4.2vw, 48px);
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.domain-hero.light .domain-hero-subheading {
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.domain-hero.light p, .domain-hero.light .domain-hero-lead {
  font-size: 16px;
  color: var(--body);
  line-height: 1.65;
  max-width: 820px;
}
.domain-hero.light .domain-hero-lead strong {
  color: var(--ink);
  font-weight: 700;
}

.capabilities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.cap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.cap-clickable {
  cursor: pointer;
}
.cap-clickable:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 97, 158, 0.1);
  border-color: var(--accent);
}
.cap-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.cap-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--accent);
  background: #e0f2fe;
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  flex-shrink: 0;
}
.cap-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 16px;
  transition: gap 0.2s ease;
}
.cap-clickable:hover .cap-link {
  gap: 9px;
}
.cap h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.cap p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* Domain proof stats */
.domain-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: var(--max-w);
  margin: 56px auto 0;
}
.domain-stat {
  text-align: center;
  padding: 32px 20px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.domain-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 97, 158, 0.08);
  border-color: var(--accent);
}
.domain-stat-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
}
/* Clean bullet list */
.clean-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.clean-bullet-list li {
  position: relative;
  padding-left: 24px;
  font-size: 15.5px;
  color: var(--body);
  line-height: 1.6;
}
.clean-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.clean-bullet-list.bullet-maroon li::before { background: var(--maroon); }
.clean-bullet-list.bullet-purple li::before { background: var(--purple); }
.clean-bullet-list.bullet-blue li::before { background: #3366ff; }
.clean-bullet-list.bullet-amber li::before { background: #cd6828; }
.clean-bullet-list li strong {
  color: var(--ink);
  font-weight: 700;
}

/* Dashboard Inline Showcase */
.dashboard-showcase-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  margin-top: 16px;
}
.dashboard-showcase-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Domain proof stats - Split Box */
.domain-stats-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 860px;
  margin: 48px auto 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}
.domain-stat-split-item {
  padding: 32px 24px;
  text-align: center;
}
.domain-stat-split-item:first-child {
  border-right: 1px solid var(--border);
}
.domain-stat-split-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.15;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.domain-stat-split-num.num-maroon { color: #8d1d15; }
.domain-stat-split-num.num-purple { color: #7b4fa8; }
.domain-stat-split-num.num-blue   { color: #3366ff; }
.domain-stat-split-num.num-amber  { color: #cd6828; }

.domain-stat-split-label {
  font-size: 14px;
  font-weight: 600;
  color: #5c6476;
}

@media (max-width: 640px) {
  .domain-stats-split {
    grid-template-columns: 1fr;
  }
  .domain-stat-split-item:first-child {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

/* ==========================================================================
   PLATFORM PAGE
   ========================================================================== */
.partner-callout {
  background: linear-gradient(135deg, rgba(0, 97, 158, 0.04) 0%, rgba(26, 26, 46, 0.02) 100%);
  border: 1px solid rgba(0, 97, 158, 0.18);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin-bottom: 56px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.partner-callout-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0, 97, 158, 0.1);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}
.partner-callout-text {
  font-size: 17px;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.55;
}

.aera-story-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.aera-story-box p {
  font-size: 15.5px;
  color: var(--body);
  margin-bottom: 16px;
}
.aera-story-box p:last-child {
  margin-bottom: 0;
}

/* About Us Track Record */
.track-record-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.track-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.track-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(0, 97, 158, 0.08);
}
.track-card h3 {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.track-card h3::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.track-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.components-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.comp-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.comp-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(0, 97, 158, 0.08);
}
.comp-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.comp-card h3::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.comp-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.attributes-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.attr-pill {
  flex: 1 1 calc(25% - 12px);
  min-width: 180px;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.attr-pill strong {
  display: block;
  font-size: 13.5px;
  color: var(--ink);
  margin-bottom: 4px;
}
.attr-pill span {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.4;
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.rec-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fbfe 100%);
  border: 1px solid rgba(0, 97, 158, 0.2);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.rec-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0, 97, 158, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rec-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.rec-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.eco-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.eco-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}
.eco-logo {
  height: 36px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}
.eco-logo img {
  max-height: 32px;
  max-width: 110px;
  object-fit: contain;
}
.eco-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.eco-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.why-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.why-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */
.legal-hero {
  padding: 56px 0 36px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.legal-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 10px;
}
.legal-hero h1 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.4px;
  margin-bottom: 10px;
}
.legal-hero p {
  font-size: 15px;
  color: var(--muted);
  max-width: 700px;
  margin-bottom: 12px;
}
.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: var(--muted);
}

.legal-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 24px 80px;
}
.legal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 84px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.toc-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--ink);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.toc-list a {
  font-size: 12px;
  color: var(--muted);
  transition: color 0.15s;
}
.toc-list a:hover { color: var(--maroon); }

.legal-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.legal-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.legal-section h2 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.legal-section p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.65;
  margin-bottom: 10px;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-bullets, .legal-numbered {
  margin: 10px 0;
  padding-left: 20px;
  font-size: 13.5px;
  color: var(--body);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.legal-highlight-box {
  background: var(--surface);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 12px 14px;
  margin: 12px 0;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.55;
}
.legal-highlight-box.blue {
  background: #EEF2FD;
  border-left-color: var(--accent);
}
.legal-highlight-box h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.dpo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  margin-top: 12px;
}
.dpo-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.dpo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  font-size: 13px;
  color: var(--body);
  line-height: 1.55;
}
.dpo-grid a {
  color: var(--maroon);
  font-weight: 600;
}

/* Tag badge for legal pages */
.tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--maroon);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.tag-badge svg {
  width: 14px;
  height: 14px;
}

/* ==========================================================================
   MODAL
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,46,0.6);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  position: relative;
  animation: modalIn 0.2s ease;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 4px;
}
.modal-close:hover { color: var(--ink); }
.modal-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.modal-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.modal-box-contact {
  max-width: 520px;
  padding: 36px 32px 32px;
  border-radius: 14px;
}
.modal-form-row {
  display: flex;
  gap: 12px;
}
@media (max-width: 540px) {
  .modal-form-row {
    flex-direction: column;
    gap: 12px;
  }
}
.modal-input, .modal-select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 7px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  background: var(--white);
}
.modal-input:focus, .modal-select:focus {
  border-color: var(--accent);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Detail Modal Large */
.modal-box-large {
  max-width: 900px;
  max-height: 88vh;
  overflow-y: auto;
  padding: 36px 36px 32px;
  border-radius: 16px;
}
.detail-callout {
  background: #f0fdfa;
  border: 1px solid #ccfbf1;
  border-left: 4px solid var(--teal-dark);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: 14.5px;
  color: #134e4a;
  line-height: 1.55;
}
.modal-detail-media {
  margin: 18px 0 24px;
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}
.modal-detail-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
.modal-detail-section {
  margin-bottom: 24px;
}
.modal-section-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.modal-detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}
.modal-detail-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--body);
  line-height: 1.6;
}
.modal-detail-list li::before {
  content: "•";
  position: absolute;
  left: 4px;
  top: 0;
  color: var(--accent);
  font-size: 18px;
  line-height: 1.3;
}
.modal-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 18px;
  margin-top: 18px;
}
.modal-detail-box {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 20px 22px;
}
.modal-detail-box.highlight-outcome {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-color: #bae6fd;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.outcome-pill {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.outcome-number {
  font-size: 38px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
}
.outcome-label {
  font-size: 12.5px;
  color: var(--body);
  font-weight: 600;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
/* ==========================================================================
/* ==========================================================================
   MOBILE MENU & DRAWER NAVIGATION
   ========================================================================== */
.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--ink);
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  transition: background 0.15s, border-color 0.15s;
}
.mobile-menu-btn:hover {
  background: var(--surface);
  border-color: var(--accent);
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0.25s ease;
}
.mobile-drawer.open {
  pointer-events: auto;
  visibility: visible;
}
.mobile-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.mobile-drawer.open .mobile-drawer-backdrop {
  opacity: 1;
}
.mobile-drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(86vw, 340px);
  background: var(--white);
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}
.mobile-drawer.open .mobile-drawer-content {
  transform: translateX(0);
}
.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
}
.mobile-drawer-close {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-drawer-close:hover {
  color: var(--ink);
  background: var(--surface);
}
.mobile-drawer-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 20px;
}
.mobile-nav-group {
  margin-bottom: 22px;
}
.mobile-nav-heading {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  padding-left: 8px;
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.mobile-nav-link:hover, .mobile-nav-link:active {
  background: var(--surface);
  color: var(--accent);
}
.mobile-drawer-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border-subtle);
  background: var(--surface);
}

/* ==========================================================================
   RESPONSIVE OPTIMIZATIONS ACROSS ALL SCREENS (Mobile, iPad/Tablet, Desktop)
   ========================================================================== */

/* Tablets & iPads (768px - 1024px) */
@media (max-width: 1024px) {
  .sol-grid-all {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px;
    margin-top: 36px;
  }
  .sol-grid-top, .sol-grid-bottom {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px;
  }
  .solutions-grid { grid-template-columns: 1fr 1fr; }
  .solutions-row-2 { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .platform-flow { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .components-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .recognition-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .ecosystem-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .attributes-strip { flex-wrap: wrap; gap: 12px; }
  .attr-pill { flex: 1 1 calc(50% - 12px); min-width: 240px; }
  .track-record-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { display: none; }
}

/* Mobile Devices & Phones (<= 768px) */
@media (max-width: 768px) {
  .wrap { padding: 0 16px; }
  .nav-inner { padding: 0 14px; height: 60px; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: inline-flex; }
  .logo-img { height: 30px; }
  .nav-inner .btn { font-size: 11px; padding: 0 1.1em; height: 2.5em; }
  
  .hero-aera { padding: 48px 0 36px; }
  .hero-aera .hero-eyebrow { font-size: 12px; padding: 7px 16px; margin-bottom: 16px; }
  .hero-aera-title { font-size: 26px; line-height: 1.22; }
  .hero-aera-subtitle { font-size: 17px; line-height: 1.35; margin-bottom: 12px; }
  .hero-aera-desc { font-size: 14.5px; line-height: 1.55; margin-bottom: 24px; }
  .hero-actions { flex-direction: column; width: 100%; gap: 10px; }
  .hero-actions .btn { width: 100%; }

  .domain-hero { padding: 40px 0 28px; }
  .domain-hero h1 { font-size: 26px; line-height: 1.25; margin-bottom: 10px; }
  .domain-hero-subheading { font-size: 16px; margin-bottom: 10px; }
  .domain-hero-lead { font-size: 14.5px; line-height: 1.55; }

  .section { padding: 40px 0; }
  .sol-section-header { margin-bottom: 20px; }
  .sol-big-heading { font-size: 24px; }
  .sol-big-sub { font-size: 14.5px; }

  /* Single Column Stacked Solution Cards on Mobile */
  .sol-grid-all,
  .sol-grid-top,
  .sol-grid-bottom {
    grid-template-columns: 1fr !important;
    gap: 16px;
    margin-top: 20px;
  }
  .sol-card { padding: 18px 18px 20px; border-radius: 12px; }
  .sol-rec-box { padding: 14px 14px; margin-bottom: 16px; }
  .sol-rec-title { font-size: 14px; line-height: 1.35; }
  .sol-rec-sub { font-size: 11.5px; }
  .sol-rec-actions { gap: 6px; }
  .sol-rec-btn { padding: 6px 12px; font-size: 11.5px; }
  .sol-card-body h3 { font-size: 18px; }
  .sol-card-body p { font-size: 13.5px; }

  .stats-row { grid-template-columns: 1fr; gap: 16px; }
  .stat-item { padding: 20px 16px; }
  .stat-item:not(:last-child)::after { display: none; }
  .stat-num { font-size: 38px; }

  .steps-row { grid-template-columns: 1fr; gap: 20px; }
  .capabilities { grid-template-columns: 1fr; gap: 14px; }
  .domain-stats { grid-template-columns: 1fr; gap: 14px; margin-top: 32px; }
  .domain-stat { padding: 22px 16px; }
  .domain-stat-num { font-size: 32px; }
  
  .domain-stats-split { grid-template-columns: 1fr; margin-top: 28px; }
  .domain-stat-split-item { padding: 22px 16px; }
  .domain-stat-split-item:first-child { border-right: none; border-bottom: 1px solid var(--border); }
  .domain-stat-split-num { font-size: 26px; }

  .partner-callout { padding: 22px 16px; flex-direction: column; gap: 10px; }
  .partner-callout-text { font-size: 14.5px; }
  .aera-story-box { padding: 22px 16px; }
  .track-record-grid { grid-template-columns: 1fr; gap: 14px; }
  .components-grid { grid-template-columns: 1fr; gap: 14px; }
  .recognition-grid { grid-template-columns: 1fr; gap: 14px; }
  .ecosystem-grid { grid-template-columns: 1fr; gap: 14px; }
  .attributes-strip { flex-direction: column; gap: 10px; }
  .attr-pill { min-width: 100%; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  
  /* Modals on Mobile */
  .modal-overlay { padding: 12px; }
  .modal-box { padding: 22px 16px; max-width: 100%; }
  .modal-box-large { padding: 22px 16px; max-height: 92vh; width: 100%; }
  .modal-box-contact { padding: 24px 16px; width: 100%; }
  .modal-detail-grid { grid-template-columns: 1fr; gap: 14px; }
  .modal-form-row { flex-direction: column; gap: 10px; }
  .modal-input, .modal-select, textarea.modal-input { font-size: 16px !important; }
}

/* Very Small Phones (e.g. iPhone SE, 320px - 380px) */
@media (max-width: 380px) {
  .hero-aera-title { font-size: 23px; }
  .hero-aera-subtitle { font-size: 15.5px; }
  .domain-hero h1 { font-size: 23px; }
  .sol-card { padding: 16px 14px 18px; }
  .sol-rec-box { padding: 12px 12px; }
  .sol-rec-title { font-size: 13.5px; }
  .nav-inner .btn { display: none; }
}

/* ==========================================================================
   ABOUT US — REGIONAL FOOTPRINT (HEADQUARTERED IN SINGAPORE / APAC NETWORK)
   ========================================================================== */
.about-regional-section {
  margin-top: 56px;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.03);
}

.regional-header-block {
  margin-bottom: 24px;
}

.network-graphic-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
}

.network-graphic-img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .about-regional-section {
    padding: 24px 16px;
  }
  .regional-header-block {
    margin-bottom: 16px;
  }
}

/* ==========================================================================
   DI NEWS TICKER (BELOW HEADER — LIGHT THEME & READABLE)
   ========================================================================== */
.market-news-ticker-bar {
  width: 100%;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  font-family: 'Inter', sans-serif;
  height: 38px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 10;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.ticker-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.ticker-label-badge {
  flex-shrink: 0;
  height: 100%;
  padding: 0 16px;
  background: #ffffff;
  border-right: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.03);
}

.ticker-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 6px rgba(239, 68, 68, 0.5);
  animation: tickerPulse 1.8s infinite ease-in-out;
}

@keyframes tickerPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.ticker-label-text {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #0f172a;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-track-container {
  flex-grow: 1;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: tickerScroll 85s linear infinite; /* Slowed down for comfortable reading */
  will-change: transform;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  cursor: pointer;
  transition: opacity 0.2s ease;
  user-select: none;
}

.ticker-item:hover .ticker-headline {
  color: #c93b2b;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ticker-source-tag {
  background: #e0f2fe;
  color: #0369a1;
  border: 1px solid #bae6fd;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
}

.ticker-headline {
  font-size: 12.5px;
  color: #334155;
  font-weight: 500;
  transition: color 0.15s ease;
}

/* ==========================================================================
   MULTI-LANGUAGE SELECTOR (DESKTOP & MOBILE)
   ========================================================================== */
.lang-selector-wrap {
  position: relative;
  margin-right: 14px;
  display: inline-flex;
  align-items: center;
}

.lang-trigger-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.18s ease;
}

.lang-trigger-btn:hover {
  background: var(--white);
  border-color: var(--border-focus, #cbd5e1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.lang-trigger-btn .globe-icon {
  width: 15px;
  height: 15px;
  color: var(--muted);
}

.lang-trigger-btn .chevron-icon {
  width: 12px;
  height: 12px;
  color: var(--muted);
  transition: transform 0.2s ease;
}

.lang-trigger-btn[aria-expanded="true"] .chevron-icon {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
  min-width: 170px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2000;
}

.lang-dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-opt-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: none;
  background: transparent;
  border-radius: 6px;
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s ease;
}

.lang-opt-item:hover {
  background: var(--surface);
}

.lang-opt-item.active {
  background: rgba(201, 59, 43, 0.08);
  color: #c93b2b;
  font-weight: 600;
}

.lang-opt-flag {
  font-size: 15px;
  line-height: 1;
}

.lang-opt-label {
  flex-grow: 1;
}

.lang-check {
  color: #c93b2b;
  font-weight: bold;
  font-size: 12px;
}

/* Mobile drawer language box */
.mobile-lang-box {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.mobile-lang-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 12px;
}

.mobile-lang-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.mobile-lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: all 0.15s ease;
}

.mobile-lang-btn.active {
  border-color: #c93b2b;
  background: rgba(201, 59, 43, 0.06);
  color: #c93b2b;
  font-weight: 600;
}

/* ==========================================================================
   MODAL TOPIC BANNER (CLICK-TO-CONTACT ON NEWS TICKER)
   ========================================================================== */
.modal-topic-banner {
  margin: 12px 0 18px;
  padding: 10px 14px;
  background: #f8fafc;
  border-left: 3px solid #c93b2b;
  border-radius: 4px;
}

.topic-badge-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.topic-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c93b2b;
}

.topic-title {
  font-size: 12.5px;
  color: var(--ink);
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

/* Hide Google Translate toolbar bar if injected */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame {
  display: none !important;
}
body {
  top: 0px !important;
}
.goog-tooltip {
  display: none !important;
}
.goog-tooltip:hover {
  display: none !important;
}
.goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
#goog-gt-tt {
  display: none !important;
}

@media (max-width: 640px) {
  .ticker-label-badge {
    padding: 0 10px;
  }
  .ticker-label-text {
    font-size: 10px;
  }
  .ticker-headline {
    font-size: 12px;
  }
  .ticker-item {
    padding: 0 18px;
    gap: 8px;
  }
}




