/* ══════════════════════════════════════════════════════════
   BLOOMTECH SOLUTIONS — stylesheet
   Primary: brand blue #1B6B8E · Accent: mint #22D4A0
═══════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────── */
:root {
  /* Brand blues */
  --brand:      #1B6B8E;               /* primary brand blue */
  --brand-dark: #0B3347;               /* hero, process, footer bg */
  --brand-mid:  #0E3E54;               /* stats bar, nav-scrolled bg */
  --brand-dim:  rgba(27, 107, 142, 0.10); /* icon bg on light sections */

  --surface:    #EEF5F8;               /* light section bg */
  --white:      #FFFFFF;

  /* Mint accent */
  --mint:       #22D4A0;
  --mint-dark:  #1AB08B;
  --mint-dim:   rgba(34, 212, 160, 0.12);

  /* Text */
  --text-dark:  #0C2230;
  --text-body:  #3D5A6B;
  --text-muted: #7A9EAF;
  --text-light: #C8DDE6;

  --amber:       #E8961F;
  --amber-dim:   rgba(232,150,31,0.12);

  --border:      #CBE1EC;
  --border-dark: rgba(255, 255, 255, 0.07);

  --font-display: 'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius:    12px;
  --radius-lg: 20px;
  --ease:      0.25s ease;
  --shadow:    0 4px 24px rgba(8, 38, 58, 0.10);
  --shadow-lg: 0 12px 40px rgba(8, 38, 58, 0.16);
}


/* ── RESET ───────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--white); line-height: 1.65; overflow-x: hidden; }
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
address { font-style: normal; }
button  { cursor: pointer; font-family: inherit; }

:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 4px; }


/* ── TYPOGRAPHY ───────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; letter-spacing: -0.03em; }
.section-heading {
  font-size: clamp(1.75rem, 3.8vw, 2.75rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.1rem;
  letter-spacing: -0.03em;
  position: relative;
  padding-left: 1.1rem;
}
.section-heading::before {
  content: '';
  position: absolute;
  left: 0; top: 0.1em; bottom: 0.1em;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(to bottom, var(--mint), var(--amber));
}
.section-heading--light { color: var(--white); }
/* Center-aligned headers reset the offset */
.section-header .section-heading { padding-left: 0; }
.section-header .section-heading::before { display: none; }
.section-sub           { font-size: 1.05rem; color: var(--text-body); max-width: 54ch; margin: 0 auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint);        /* on dark sections */
  margin-bottom: 0.7rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  flex-shrink: 0;
  opacity: 0.8;
}
.eyebrow--brand { color: var(--brand); } /* on light sections */

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-sub { margin-top: 0.5rem; }

/* .gradient-text is defined in the HERO section with shimmer animation */


/* ── LAYOUT ──────────────────────────── */
.container { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: 1.5rem; }
.section   { padding: 6rem 0; }


/* ── BUTTONS ─────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.78rem 1.65rem;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: background var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
  white-space: nowrap;
}
/* Mint CTA — used on dark-bg sections */
.btn--mint {
  background: var(--mint);
  color: var(--brand-dark);
  border-color: var(--mint);
}
.btn--mint:hover {
  background: var(--mint-dark);
  border-color: var(--mint-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 212, 160, 0.30);
}
/* Brand CTA — used on light-bg sections */
.btn--brand {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}
.btn--brand:hover {
  background: #155C7A;
  border-color: #155C7A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 107, 142, 0.30);
}
/* Ghost — secondary on dark bg */
.btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.22);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.44);
  color: var(--white);
}
.btn--full { width: 100%; }


/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background var(--ease), box-shadow var(--ease), padding var(--ease);
}
.nav--scrolled {
  background: rgba(11, 51, 71, 0.97);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.30);
  padding: 0.7rem 0;
}
/* backdrop-filter on ::before so it doesn't break position:fixed children (nav drawer) */
.nav--scrolled::before {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  pointer-events: none;
  z-index: -1;
}
.nav__inner { display: flex; align-items: center; gap: 2rem; }

/* Logo image */
.nav__logo     { flex-shrink: 0; display: flex; align-items: center; }
.nav__logo-img {
  height: 120px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: opacity var(--ease), height var(--ease);
}
.nav--scrolled .nav__logo-img { height: 90px; }
.nav__logo-img:hover { opacity: 0.82; }

/* Desktop links */
.nav__links { display: flex; gap: 1.85rem; margin-left: auto; }
.nav__link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--ease);
  padding: 0.25rem 0;
}
.nav__link:hover { color: var(--mint); }

.nav__cta { margin-left: 0.5rem; padding: 0.58rem 1.2rem; font-size: 0.85rem; }

/* Burger */
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; margin-left: auto; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform var(--ease), opacity var(--ease); }
.nav__burger--open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger--open span:nth-child(2) { opacity: 0; }
.nav__burger--open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, #071e2b 0%, var(--brand-dark) 45%, #0d3145 100%);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Diamond crosshatch */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(-45deg, rgba(27,107,142,0.07) 0px, rgba(27,107,142,0.07) 1px, transparent 1px, transparent 26px),
    repeating-linear-gradient( 45deg, rgba(27,107,142,0.07) 0px, rgba(27,107,142,0.07) 1px, transparent 1px, transparent 26px);
  pointer-events: none;
  z-index: 0;
}
/* Bottom separator */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,150,31,0.5) 35%, rgba(34,212,160,0.5) 65%, transparent);
  z-index: 2;
}

/* ── HERO FX LAYERS ─────────────────── */
/* Ambient glow blob */
.hero__glow {
  position: absolute;
  width: 750px; height: 750px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,107,142,0.14) 0%, transparent 65%);
  top: 50%; right: 2%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
  animation: glowPulse 6s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.55; transform: translateY(-50%) scale(1); }
  50%       { opacity: 1;    transform: translateY(-50%) scale(1.12); }
}

/* Second ambient glow — amber, bottom-left drift */
.hero__glow--alt {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(232,150,31,0.11) 0%, transparent 65%);
  bottom: -8%; left: -6%;
  top: auto; right: auto;
  transform: none;
  animation: glowDrift 11s ease-in-out infinite 1.5s;
}
@keyframes glowDrift {
  0%, 100% { transform: scale(1);                         opacity: 0.55; }
  40%       { transform: scale(1.12) translate(45px,-38px); opacity: 0.85; }
  70%       { transform: scale(0.93) translate(-18px,22px); opacity: 0.48; }
}

/* Scanning light sweep */
.hero__scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero__scan::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 160px;
  top: -160px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(232,150,31,0.03) 30%,
    rgba(27,107,142,0.045) 50%,
    rgba(34,212,160,0.03) 70%,
    transparent 100%
  );
  animation: scanMove 12s linear infinite 1.5s;
}
@keyframes scanMove {
  from { top: -160px; }
  to   { top: 110%; }
}

/* ── HERO LAYOUT ────────────────────── */
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  flex: 1;
  padding-top: 7.5rem;
  padding-bottom: 5rem;
  position: relative;
  z-index: 1;
}

/* ── HERO COPY ENTRANCE ANIMATIONS ──── */
.hero__copy .eyebrow,
.hero__copy .hero__headline,
.hero__copy .hero__sub,
.hero__copy .hero__actions {
  opacity: 0;
  transform: translateY(22px);
}
.hero__copy .eyebrow       { animation: heroIn 0.65s cubic-bezier(0.22,1,0.36,1) 0.15s forwards; color: var(--amber); }
.hero__copy .hero__headline { animation: heroIn 0.75s cubic-bezier(0.22,1,0.36,1) 0.35s forwards; }
.hero__copy .hero__sub     { animation: heroIn 0.75s cubic-bezier(0.22,1,0.36,1) 0.55s forwards; }
.hero__copy .hero__actions { animation: heroIn 0.75s cubic-bezier(0.22,1,0.36,1) 0.75s forwards; }
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero__headline {
  font-size: clamp(2.3rem, 5.2vw, 3.9rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 1.2rem;
}
.hero__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 48ch;
  line-height: 1.75;
  margin-bottom: 2.2rem;
  letter-spacing: 0.01em;
}
.hero__actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* Animated shimmer on the gradient word */
.gradient-text {
  background: linear-gradient(130deg, #E8961F 0%, #22D4A0 28%, #1B6B8E 52%, #22D4A0 76%, #E8961F 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite 1.2s;
}
@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 250% center; }
}

/* ── HERO VISUAL PANEL ──────────────── */
.hero__visual {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: heroIn 1s cubic-bezier(0.22,1,0.36,1) 0.25s forwards;
}

/* Ghost "BLOOM" text */
.ghost-text {
  position: absolute;
  font-family: var(--font-display);
  font-size: 6.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(232, 150, 31, 0.28);
  user-select: none;
  pointer-events: none;
  z-index: 0;
  animation: ghostFloat 9s ease-in-out infinite 1s;
}
@keyframes ghostFloat {
  0%, 100% { transform: translateY(0)    scale(1);     opacity: 1;    }
  50%       { transform: translateY(-10px) scale(1.018); opacity: 0.62; }
}

/* SVG network graphic */
.hero__svg {
  position: relative;
  z-index: 1;
  width: 340px; height: 340px;
  max-width: 100%;
}

/* ── TECH CHIP PILLS ────────────────── */
.hero__chips {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.tech-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(11, 51, 71, 0.65);
  border: 1px solid rgba(27, 107, 142, 0.45);
  border-radius: 100px;
  padding: 5px 13px 5px 9px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(200, 221, 230, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  white-space: nowrap;
  opacity: 0;
}
.chip-dot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}
.chip-dot--mint  { background: var(--mint); }
.chip-dot--brand { background: var(--brand); }
.chip-dot--amber { background: var(--amber); }

/* positions */
.chip--1 { top: 5%;   left: 5%; }
.chip--2 { top: 18%;  right: 3%; }
.chip--3 { top: 43%;  left: 2%; }
.chip--4 { bottom: 28%; right: 2%; }
.chip--5 { bottom: 8%; left: 10%; }
.chip--6 { top: 65%;  right: 5%; }

/* fade in + float (float keyframe handles initial opacity too) */
.chip--1 { animation: chipFloat 7s   ease-in-out infinite 2.6s; }
.chip--2 { animation: chipFloat 8.5s ease-in-out infinite 3.0s; }
.chip--3 { animation: chipFloat 6.5s ease-in-out infinite 3.4s; }
.chip--4 { animation: chipFloat 7.5s ease-in-out infinite 3.8s; border-color: rgba(232,150,31,0.45); }
.chip--5 { animation: chipFloat 9s   ease-in-out infinite 4.2s; }
.chip--6 { animation: chipFloat 7s   ease-in-out infinite 4.6s; border-color: rgba(232,150,31,0.45); }

@keyframes chipFloat {
  0%   { opacity: 0; transform: translateY(0);    box-shadow: 0 0 0   transparent; }
  12%  { opacity: 1; }
  50%  { transform: translateY(-9px); box-shadow: 0 6px 20px rgba(34,212,160,0.22); }
  100% { opacity: 1; transform: translateY(0);    box-shadow: 0 0 0   transparent; }
}

/* ── HERO PARTICLES ─────────────────── */
.hero__particles { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero__particle  { position: absolute; border-radius: 50%; opacity: 0; }
.p--1 { width:3px; height:3px; background:rgba(34,212,160,0.65); top:12%; left:18%; animation:particleDrift 8s   ease-in-out infinite 1.2s; }
.p--2 { width:2px; height:2px; background:rgba(27,107,142,0.75); top:38%; left:73%; animation:particleDrift 10s  ease-in-out infinite 2.7s; }
.p--3 { width:4px; height:4px; background:rgba(232,150,31,0.60); top:58%; left:42%; animation:particleDrift 7s   ease-in-out infinite 0.6s; }
.p--4 { width:2px; height:2px; background:rgba(34,212,160,0.55); top:78%; left:62%; animation:particleDrift 9s   ease-in-out infinite 3.3s; }
.p--5 { width:3px; height:3px; background:rgba(27,107,142,0.65); top:22%; left:52%; animation:particleDrift 11s  ease-in-out infinite 1.9s; }
.p--6 { width:2px; height:2px; background:rgba(232,150,31,0.55); top:88%; left:28%; animation:particleDrift 8.5s ease-in-out infinite 4.2s; }
.p--7 { width:3px; height:3px; background:rgba(232,150,31,0.50); top:48%; left:85%; animation:particleDrift 6.5s ease-in-out infinite 2.1s; }
.p--8 { width:3px; height:3px; background:rgba(27,107,142,0.55); top:68%; left:12%; animation:particleDrift 9.5s ease-in-out infinite 0.9s; }
@keyframes particleDrift {
  0%, 100% { opacity: 0;    transform: translate(0,0); }
  15%       { opacity: 1; }
  50%       { opacity: 0.6; transform: translate(14px,-20px); }
  85%       { opacity: 0.85; }
}

/* ── SCROLL HINT ────────────────────── */
.hero__scroll {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.45rem; padding-bottom: 2rem;
  color: rgba(122, 158, 175, 0.55);
  font-size: 0.67rem; letter-spacing: 0.12em; text-transform: uppercase;
  position: relative; z-index: 1;
}
.hero__scroll-line {
  width: 1px; height: 38px;
  background: linear-gradient(to bottom, rgba(122,158,175,0.5), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }


/* ═══════════════════════════════════════
   CLIENTS
═══════════════════════════════════════ */
.clients {
  background: var(--white);
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--border);
}
.clients__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}
.clients__label {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--text-muted);
}
.clients__logos {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  flex-wrap: wrap;
  justify-content: center;
}
.clients__logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: none;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.clients__logo:hover { opacity: 1; transform: scale(1.07); }
@media (max-width: 480px) {
  .clients__logos { gap: 2rem; }
  .clients__logo  { height: 44px; }
}


/* ═══════════════════════════════════════
   STATS
═══════════════════════════════════════ */
.stats {
  background: var(--brand-mid);
  padding: 3.25rem 0;
  border-top:    1px solid rgba(34, 212, 160, 0.10);
  border-bottom: 1px solid rgba(34, 212, 160, 0.10);
}
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat { text-align: center; }
.stat__number { font-family: var(--font-display); font-size: clamp(2rem, 3.8vw, 3rem); font-weight: 800; color: var(--amber); line-height: 1; margin-bottom: 0.35rem; }
.stat__accent { color: var(--mint); font-size: 0.75em; vertical-align: baseline; }
.stat__label  { font-size: 0.82rem; color: var(--text-muted); letter-spacing: 0.03em; }


/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about { background: var(--white); }
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.about__copy p { color: var(--text-body); font-size: 1.02rem; line-height: 1.78; margin-bottom: 1rem; }
.about__btn { margin-top: 1.75rem; }

.about__values { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.value-card:hover { border-color: var(--brand); box-shadow: var(--shadow); transform: translateY(-3px); }
.value-card__icon  { color: var(--brand); margin-bottom: 0.75rem; display: flex; }
.value-card__title { font-family: var(--font-display); font-size: 0.98rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.45rem; }
.value-card__text  { font-size: 0.87rem; color: var(--text-body); line-height: 1.65; }


/* ═══════════════════════════════════════
   PROCESS
═══════════════════════════════════════ */
.process { background: var(--brand-dark); }
.process .eyebrow { color: var(--mint); }

.process__steps { display: flex; align-items: flex-start; position: relative; }
.process__steps::before {
  content: '';
  position: absolute;
  top: 2.45rem;
  left: calc(10% + 1rem);
  right: calc(10% + 1rem);
  height: 1px;
  background: linear-gradient(90deg, rgba(34, 212, 160, 0.25), rgba(255, 255, 255, 0.08), rgba(34, 212, 160, 0.25));
}
.process__step { flex: 1; text-align: center; padding: 0 0.75rem; position: relative; z-index: 1; }
.process__num {
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(232, 150, 31, 0.55);
  line-height: 1;
  margin-bottom: 0.9rem;
  letter-spacing: -0.04em;
}
.process__title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 0.55rem; }
.process__text  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }
.process__connector { display: none; }


/* ═══════════════════════════════════════
   SOLUTIONS
═══════════════════════════════════════ */
.solutions { background: var(--surface); }
.solutions__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.solution-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--mint);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.solution-card:nth-child(even) { border-top-color: var(--amber); }
.solution-card:hover { border-color: var(--brand); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.solution-card__icon {
  width: 54px; height: 54px;
  background: var(--brand-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  margin-bottom: 1.2rem;
  flex-shrink: 0;
}
.solution-card__title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.65rem; }
.solution-card__text  { font-size: 0.93rem; color: var(--text-body); line-height: 1.72; margin-bottom: 1.2rem; }
.solution-card__link  { font-size: 0.85rem; font-weight: 600; color: var(--brand); transition: color var(--ease); display: inline-flex; align-items: center; gap: 0.25rem; }
.solution-card__link:hover { color: var(--brand-dark); }


/* ═══════════════════════════════════════
   CTA BAND
═══════════════════════════════════════ */
.cta-band {
  background: linear-gradient(145deg, var(--brand-mid) 0%, var(--brand-dark) 100%);
  padding: 5rem 0;
  border-top:    1px solid rgba(34, 212, 160, 0.12);
  border-bottom: 1px solid rgba(34, 212, 160, 0.12);
}
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.cta-band__heading { font-family: var(--font-display); font-size: clamp(1.55rem, 3.2vw, 2.3rem); font-weight: 700; color: var(--white); margin-bottom: 0.65rem; line-height: 1.15; letter-spacing: -0.03em; }
.cta-band__sub     { font-size: 0.98rem; color: var(--text-muted); max-width: 52ch; line-height: 1.7; }
.cta-band__btn     { padding: 1rem 2.2rem; font-size: 0.95rem; flex-shrink: 0; }


/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact { background: var(--white); }
.contact__inner { display: grid; grid-template-columns: 1fr 1.35fr; gap: 5rem; align-items: start; }
.contact__intro { color: var(--text-body); font-size: 1rem; margin-bottom: 2.25rem; line-height: 1.72; }
.contact__details { display: flex; flex-direction: column; gap: 1.4rem; }
.contact__detail  { display: flex; align-items: flex-start; gap: 0.9rem; }
.contact__detail-icon {
  width: 38px; height: 38px;
  background: var(--brand-dim);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact__detail-label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 0.2rem; }
.contact__detail-value { font-size: 0.93rem; color: var(--text-dark); line-height: 1.55; }
.contact__detail-value a { color: var(--brand); transition: color var(--ease); }
.contact__detail-value a:hover { color: var(--brand-dark); }

.contact__form-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.1rem; }
.form-group:last-of-type { margin-bottom: 1.5rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-dark); letter-spacing: 0.01em; }
.form-group input,
.form-group textarea {
  font-family: var(--font-body); font-size: 0.93rem; color: var(--text-dark);
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 8px; padding: 0.72rem 0.95rem;
  outline: none; transition: border-color var(--ease), box-shadow var(--ease); resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-dim); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); opacity: 0.8; }


/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer { background: var(--brand-dark); padding-top: 4rem; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border-dark); }
.footer__logo-img { height: 120px; width: auto; filter: brightness(0) invert(1); margin-bottom: 1rem; display: block; }
.footer__tagline  { font-size: 0.87rem; color: var(--text-muted); max-width: 30ch; line-height: 1.68; }
.footer__col-title { font-family: var(--font-display); font-size: 0.78rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.1rem; }
.footer__links li { margin-bottom: 0.55rem; }
.footer__links a, .footer__address { font-size: 0.88rem; color: var(--text-muted); transition: color var(--ease); line-height: 1.8; }
.footer__links a:hover { color: var(--mint); }
.footer__address a { color: var(--text-muted); transition: color var(--ease); }
.footer__address a:hover { color: var(--mint); }
.footer__bottom { padding: 1.4rem 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.9rem; font-size: 0.82rem; color: rgba(122, 158, 175, 0.55); }
.footer__legal { display: flex; gap: 1.4rem; }
.footer__legal a { color: rgba(122, 158, 175, 0.55); transition: color var(--ease); }
.footer__legal a:hover { color: var(--mint); }


/* ═══════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(11, 51, 71, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(34, 212, 160, 0.15);
  padding: 1.1rem 0;
  z-index: 200;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.cookie-banner--visible { transform: translateY(0); }
.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-banner__text {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.cookie-banner__text a { color: var(--mint); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner__actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.btn--cookie-accept { padding: 0.55rem 1.3rem; font-size: 0.85rem; }
.btn--cookie-decline {
  padding: 0.55rem 1.3rem;
  font-size: 0.85rem;
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  transition: color var(--ease), border-color var(--ease);
}
.btn--cookie-decline:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }

@media (max-width: 768px) {
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .cookie-banner__actions { width: 100%; }
  .btn--cookie-accept, .btn--cookie-decline { flex: 1; justify-content: center; }
}


/* ═══════════════════════════════════════
   FORM SUCCESS STATE
═══════════════════════════════════════ */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3.5rem 2rem;
  gap: 0.75rem;
}
.form-success__icon {
  width: 56px; height: 56px;
  background: var(--mint-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--mint);
  margin-bottom: 0.5rem;
}
.form-success__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}
.form-success__text {
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.65;
  max-width: 34ch;
}


/* ═══════════════════════════════════════
   LEGAL PAGES
═══════════════════════════════════════ */
.legal-hero {
  background: var(--brand-dark);
  padding: 9rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(27, 107, 142, 0.20) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.legal-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 212, 160, 0.45), transparent);
}
.legal-hero__inner { position: relative; z-index: 1; }
.legal-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.legal-hero__meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.legal-body {
  padding: 5rem 0 6rem;
  background: var(--white);
}
.legal-body__inner {
  max-width: 760px;
}
.legal-body h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 2.5rem 0 0.6rem;
  letter-spacing: -0.02em;
}
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.78;
  margin-bottom: 1rem;
}
.legal-body ul {
  list-style: disc;
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}
.legal-body ul li {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.78;
  margin-bottom: 0.35rem;
}
.legal-body a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-body a:hover { color: var(--brand-dark); }
.legal-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0;
}


/* ═══════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════ */
.back-to-top {
  position: fixed; bottom: 1.75rem; right: 1.75rem;
  width: 42px; height: 42px;
  background: var(--brand);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(27, 107, 142, 0.40);
  opacity: 0; transform: translateY(10px); pointer-events: none;
  transition: opacity var(--ease), transform var(--ease), background var(--ease);
  z-index: 90;
}
.back-to-top--visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: #155C7A; }


/* ═══════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22,1,0.36,1); }
.reveal.revealed { opacity: 1; transform: translateY(0); }


/* ═══════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}


/* ═══════════════════════════════════════
   RESPONSIVE — 1024px
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; padding-top: 8.5rem; padding-bottom: 4rem; }
  .hero__visual { display: none; }
  .hero__copy   { max-width: 640px; }
  .about__inner   { grid-template-columns: 1fr; gap: 3rem; }
  .contact__inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer__inner  { grid-template-columns: 1fr 1fr; }
  .footer__brand  { grid-column: 1 / -1; }
}


/* ═══════════════════════════════════════
   RESPONSIVE — 768px
═══════════════════════════════════════ */
@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .nav__logo-img { height: 60px; }
  .nav__links {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(300px, 80vw);
    background: rgba(11, 51, 71, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 0;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--ease);
    box-shadow: -4px 0 40px rgba(0, 0, 0, 0.4);
    z-index: 99;
  }
  .nav__links--open { transform: translateX(0); }
  .nav__link { font-size: 1.05rem; padding: 0.8rem 0; border-bottom: 1px solid var(--border-dark); color: rgba(255,255,255,0.75); }
  .nav__burger { display: flex; z-index: 101; }
  .nav__cta    { display: none; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .about__values { grid-template-columns: 1fr; }
  .process__steps { flex-direction: column; align-items: center; gap: 0; }
  .process__steps::before { display: none; }
  .process__step { padding: 0; width: 100%; max-width: 400px; text-align: left; display: flex; gap: 1rem; align-items: flex-start; }
  .process__num  { font-size: 1.8rem; min-width: 3rem; text-align: center; }
  .process__connector { display: block; width: 1px; height: 28px; background: rgba(34,212,160,0.25); margin: 0.25rem 0 0.25rem calc(1.5rem + 0.5px); }
  .solutions__grid { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; text-align: center; }
  .cta-band__sub { margin-inline: auto; }
  .cta-band__btn { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__brand { grid-column: auto; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .footer__legal { justify-content: center; }
}


/* ═══════════════════════════════════════
   RESPONSIVE — 480px
═══════════════════════════════════════ */
@media (max-width: 480px) {
  .hero__headline { font-size: 2.05rem; }
  .hero__sub      { font-size: 1rem; }
  .hero__actions  { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .contact__form-wrap { padding: 1.5rem; }
  .stats__grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════
   TECH PLATFORMS STRIP
═══════════════════════════════════════ */
.techstack {
  background: var(--white);
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.techstack__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.techstack__label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--text-muted);
}
.techstack__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}
.techstack__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--ease), color var(--ease), background var(--ease);
  cursor: default;
}
.techstack__badge:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-dim);
}


/* ═══════════════════════════════════════
   INDUSTRIES
═══════════════════════════════════════ */
.industries { background: var(--brand-dark); }
.industries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.industry-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}
.industry-card:hover {
  background: rgba(34,212,160,0.06);
  border-color: rgba(34,212,160,0.22);
  transform: translateY(-3px);
}
.industry-card__icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.industry-card__icon--mint  { background: rgba(34,212,160,0.12);  color: var(--mint); }
.industry-card__icon--amber { background: rgba(232,150,31,0.12);  color: var(--amber); }
.industry-card__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.industry-card__sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
}
@media (max-width: 768px) { .industries__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .industries__grid { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq__inner { max-width: 760px; margin: 0 auto; }
.faq__list  { margin-top: 2.5rem; }
.faq__item  { border-bottom: 1px solid var(--border); }
.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  gap: 1rem;
  transition: color var(--ease);
}
.faq__q:hover { color: var(--brand); }
.faq__q::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--brand);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s ease, color 0.3s ease;
}
.faq__item--open .faq__q { color: var(--brand); }
.faq__item--open .faq__q::after { transform: rotate(45deg); color: var(--amber); }
.faq__a {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding-bottom 0.38s ease;
  padding-bottom: 0;
}
.faq__item--open .faq__a { max-height: 240px; padding-bottom: 1.35rem; }


/* ═══════════════════════════════════════
   PAGE LOADER
═══════════════════════════════════════ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--brand-dark);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  transition: opacity 0.55s ease 0.05s, visibility 0.55s ease 0.05s;
}
.page-loader--hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.page-loader__logo {
  width: 120px;
  filter: brightness(0) invert(1);
  animation: loaderFadeUp 0.55s cubic-bezier(0.22,1,0.36,1) forwards;
}
@keyframes loaderFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.page-loader__bar {
  width: 120px; height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.page-loader__fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--amber), var(--mint));
  border-radius: 2px;
  animation: loaderFill 0.85s cubic-bezier(0.4,0,0.2,1) 0.25s forwards;
}
@keyframes loaderFill { to { width: 100%; } }


/* ═══════════════════════════════════════
   ACTIVE NAV LINK
═══════════════════════════════════════ */
.nav__link--active { color: var(--mint) !important; }


/* ═══════════════════════════════════════
   STICKY MOBILE CTA
═══════════════════════════════════════ */
.mobile-cta { display: none; }
@media (max-width: 768px) {
  .mobile-cta {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(90px);
    opacity: 0;
    z-index: 95;
    background: linear-gradient(135deg, var(--amber) 0%, #c97d10 100%);
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    padding: 0.78rem 1.75rem;
    border-radius: 100px;
    box-shadow: 0 4px 22px rgba(232,150,31,0.45);
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.35s ease;
    white-space: nowrap;
    text-decoration: none;
  }
  .mobile-cta--visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  .mobile-cta:hover { box-shadow: 0 6px 28px rgba(232,150,31,0.6); }
}
