/* ============================================================
   HYDRA GROUP — Main Stylesheet
   Theme: Deep Teal / Dark Tech + Language
   Colors pulled from logo: #0a1628 (deep navy), #1a8a8a (teal),
   #2ec4c4 (bright teal), #1dd1d1 (cyan), #0d4f5c (mid teal)
   ============================================================ */

:root {
  --navy:       #07111f;
  --navy-soft:  #0d1e30;
  --navy-card:  #102030;
  --navy-border:#1a3048;
  --teal:       #1a8a8a;
  --teal-bright:#2ec4c4;
  --teal-glow:  #1dd1d1;
  --teal-dim:   #0d4f5c;
  --teal-muted: #4a9a9a;
  --white:      #f0fafa;
  --white-soft: #d4ecec;
  --white-dim:  rgba(240,250,250,0.55);
  --border:     rgba(46,196,196,0.15);
  --border-mid: rgba(46,196,196,0.25);
  --border-bright: rgba(46,196,196,0.5);
  --glow:       0 0 20px rgba(29,209,209,0.2);
  --glow-strong:0 0 40px rgba(29,209,209,0.35);

  --font-display: 'Exo 2', sans-serif;
  --font-body:    'Space Grotesk', sans-serif;
  --font-mono:    'DM Mono', monospace;

  --max-w: 1200px;
  --nav-h: 70px;
  --radius: 3px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Utility ── */
.mono { font-family: var(--font-mono); }
.label-text {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-bright);
  display: block;
  margin-bottom: 0.75rem;
}
.center { text-align: center; }
.section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 6rem 2rem;
}

/* ── Typography ── */
h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; }
h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; }
h5 { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-muted); margin-bottom: 0.75rem; }
p { color: var(--white-dim); font-size: 1rem; }
em { font-style: italic; color: var(--teal-bright); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-bright));
  color: var(--navy);
  border: 2px solid transparent;
  font-weight: 600;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--teal-bright), var(--teal-glow));
  transform: translateY(-2px);
  box-shadow: var(--glow-strong);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--border-mid);
}
.btn-ghost:hover {
  border-color: var(--teal-bright);
  color: var(--teal-bright);
  box-shadow: var(--glow);
}
.btn-outline {
  background: transparent;
  color: var(--teal-bright);
  border: 2px solid var(--teal-bright);
}
.btn-outline:hover {
  background: var(--teal-bright);
  color: var(--navy);
  box-shadow: var(--glow-strong);
}
.btn.large { padding: 1rem 2.5rem; font-size: 0.78rem; }
.btn.full-width { width: 100%; justify-content: center; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(7,17,31,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 30px rgba(0,0,0,0.4), 0 1px 0 var(--border-mid); }
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}
.nav-logo-img {
  height: 38px;
  width: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(46,196,196,0.4));
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--white);
  line-height: 1;
}
.nav-logo-text em {
  font-style: normal;
  color: var(--teal-bright);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--teal-bright);
  transform: scaleX(0);
  transition: transform var(--transition);
  box-shadow: 0 0 8px var(--teal-glow);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--teal-bright); transition: all var(--transition); }

/* ── HERO — Split Screen ── */
.hero {
  height: 100vh;
  min-height: 680px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-h);
  overflow: hidden;
}

/* LEFT visual panel */
.hero-visual {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.4) brightness(0.45);
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero-bg-img { transform: scale(1.0); }
.hero-visual-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, transparent 40%, var(--navy) 100%),
    linear-gradient(180deg, rgba(7,17,31,0.4) 0%, transparent 40%, rgba(7,17,31,0.6) 100%),
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(26,138,138,0.25) 0%, transparent 70%);
}

/* Floating language bubbles */
.lang-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.lang-bubble {
  position: absolute;
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 1.2vw, 1.1rem);
  font-weight: 600;
  color: var(--teal-bright);
  background: rgba(7,17,31,0.7);
  border: 1px solid var(--border-mid);
  border-radius: 30px;
  padding: 0.35rem 0.9rem;
  backdrop-filter: blur(6px);
  animation: floatBubble 6s ease-in-out infinite;
  box-shadow: 0 0 16px rgba(46,196,196,0.15);
  white-space: nowrap;
}
@keyframes floatBubble {
  0%,100% { transform: translateY(0px); opacity: 0.75; }
  50%      { transform: translateY(-10px); opacity: 1; }
}

/* Scrolling code lines */
.hero-code-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.code-line {
  position: absolute;
  left: 0; right: 0;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  color: rgba(46,196,196,0.22);
  padding: 0 1.5rem;
  white-space: nowrap;
  animation: codeScroll 10s linear infinite;
}
@keyframes codeScroll {
  0%   { opacity: 0; transform: translateX(-30px); }
  10%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { opacity: 0; transform: translateX(60px); }
}

/* Vertical label */
.hero-visual-label {
  position: absolute;
  bottom: 2rem; left: 1.5rem;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(46,196,196,0.35);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* RIGHT content panel */
.hero-content {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 3.5rem;
  border-left: 1px solid var(--border);
  position: relative;
}
.hero-content::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 50%, rgba(13,79,92,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  z-index: 1;
  animation: heroFadeIn 0.8s ease forwards;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Logo lockup */
.hero-logo-lockup {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-logo-img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(46,196,196,0.5));
}
.hero-logo-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.hero-logo-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--white);
  line-height: 1;
}
.hero-logo-name em {
  font-style: normal;
  color: var(--teal-bright);
}
.hero-logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-muted);
}

/* Headline */
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0;
}
.hero-headline em {
  font-style: italic;
  color: var(--teal-bright);
  text-shadow: 0 0 30px rgba(46,196,196,0.4);
}

/* Service pillars */
.hero-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.hero-pillar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1rem;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: var(--white-soft);
  transition: all var(--transition);
}
.hero-pillar:hover {
  border-color: var(--teal-bright);
  color: var(--teal-bright);
  box-shadow: var(--glow);
}
.hero-pillar-icon {
  font-size: 1rem;
  color: var(--teal-bright);
  flex-shrink: 0;
}

/* CTA buttons */
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Stats strip */
.hero-stat-strip {
  display: flex;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  align-items: center;
}
.stat { flex: 1; display: flex; flex-direction: column; gap: 0.2rem; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--teal-bright), var(--teal-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label { font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white-dim); }
.stat-divider { width: 1px; height: 36px; background: var(--border); margin: 0 0.5rem; }

/* Mobile hero */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 45vh 1fr;
    height: auto;
    min-height: 100vh;
  }
  .hero-visual { min-height: 45vh; }
  .hero-visual-overlay {
    background:
      linear-gradient(180deg, rgba(7,17,31,0.2) 0%, rgba(7,17,31,0.75) 100%),
      radial-gradient(ellipse 80% 60% at 50% 50%, rgba(26,138,138,0.2) 0%, transparent 70%);
  }
  .hero-content { padding: 2.5rem 1.5rem; border-left: none; border-top: 1px solid var(--border); }
  .hero-content-inner { max-width: 100%; gap: 1.5rem; }
  .hero-pillars { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero-pillars { grid-template-columns: 1fr; }
  .hero-stat-strip { flex-wrap: wrap; gap: 1rem; }
  .stat-divider { display: none; }
  .stat { min-width: 80px; }
}

/* ── MARQUEE ── */
.marquee-wrap {
  background: linear-gradient(90deg, var(--teal-dim), var(--teal), var(--teal-dim));
  overflow: hidden;
  padding: 0.9rem 0;
  white-space: nowrap;
  border-top: 1px solid var(--border-bright);
  border-bottom: 1px solid var(--border-bright);
}
.marquee-track {
  display: inline-flex;
  gap: 1.5rem;
  animation: marquee 35s linear infinite;
}
.marquee-track span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 500;
}
.marquee-track .dot { opacity: 0.4; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SERVICES PREVIEW ── */
.services-preview { padding-top: 7rem; padding-bottom: 7rem; }
.section-header { margin-bottom: 3.5rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--navy-card);
  padding: 2.5rem;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow: hidden;
}
.service-card::before {
  content: attr(data-index);
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--teal-muted);
  letter-spacing: 0.1em;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover {
  background: var(--navy-soft);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3), var(--glow);
  z-index: 2;
}
.service-card:hover .service-card-icon { text-shadow: 0 0 20px var(--teal-bright); }
.service-card:hover .card-arrow { color: var(--teal-bright); transform: translateX(6px); }
.service-card-icon { font-size: 1.5rem; color: var(--teal-bright); line-height: 1; margin-bottom: 0.5rem; transition: all var(--transition); }
.service-card h3 { color: var(--white); margin-bottom: 0.25rem; }
.service-card p { font-size: 0.88rem; flex: 1; line-height: 1.6; }
.card-arrow { font-size: 1.1rem; color: var(--teal-muted); transition: all var(--transition); align-self: flex-end; margin-top: 1rem; }

/* ── SPLIT FEATURE ── */
.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.split-img { position: relative; overflow: hidden; }
.split-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.7) brightness(0.8); transition: transform 0.6s ease; }
.split-feature:hover .split-img img { transform: scale(1.04); }
.split-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--navy) 100%),
              linear-gradient(0deg, rgba(7,17,31,0.5) 0%, transparent 50%);
}
.split-content {
  background: var(--navy-soft);
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  border-left: 1px solid var(--border);
}
.split-content h2 { margin-bottom: 0; }
.split-stats { display: flex; gap: 2.5rem; margin: 0.5rem 0; }
.split-stat { display: flex; flex-direction: column; gap: 0.2rem; }
.split-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--teal-bright), var(--teal-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.split-stat-label { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white-dim); }

/* ── WHY US ── */
.why-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
  padding-top: 7rem;
  padding-bottom: 7rem;
}
.why-left { position: sticky; top: calc(var(--nav-h) + 2rem); }
.why-body { color: var(--white-dim); margin-bottom: 2rem; font-size: 1rem; line-height: 1.75; }
.why-right { display: flex; flex-direction: column; }
.why-item {
  display: flex;
  gap: 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.why-item:first-child { border-top: 1px solid var(--border); }
.why-num { font-size: 0.62rem; letter-spacing: 0.1em; color: var(--teal-bright); padding-top: 0.3rem; min-width: 2rem; }
.why-item h4 { color: var(--white); }
.why-item p { font-size: 0.88rem; margin-top: 0.3rem; }

/* ── IMAGE BAND ── */
.img-band {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  height: 260px;
  overflow: hidden;
}
.img-band-item { position: relative; overflow: hidden; }
.img-band-item img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.5) brightness(0.7); transition: all 0.5s ease; }
.img-band-item:hover img { filter: saturate(0.8) brightness(0.85); transform: scale(1.06); }
.img-band-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,17,31,0.5) 0%, transparent 60%); }

/* ── TESTIMONIALS ── */
.testimonials-section { padding-top: 7rem; padding-bottom: 7rem; }
.testimonials-section h2 { margin-bottom: 3rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.testimonial { background: var(--navy-card); padding: 2.5rem; }
.testimonial.featured {
  background: linear-gradient(135deg, var(--teal-dim), var(--navy-card) 60%);
  border-top: 2px solid var(--teal-bright);
}
.testimonial p { font-style: italic; font-size: 1rem; margin-bottom: 1.5rem; line-height: 1.7; color: var(--white-soft); }
.testimonial.featured p { color: var(--white); }
.testimonial cite { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-muted); font-style: normal; }
.testimonial.featured cite { color: var(--teal-bright); }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--teal-dim) 0%, var(--navy-soft) 50%, var(--teal-dim) 100%);
  padding: 5rem 2.5rem;
  border-top: 1px solid var(--border-mid);
  border-bottom: 1px solid var(--border-mid);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(46,196,196,0.1) 0%, transparent 70%);
}
.cta-band-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-band h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--white); margin-bottom: 0; }

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 2.5rem 2rem;
  border-top: 1px solid var(--border);
}
.footer-top {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-logo-wrap { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.75rem; }
.footer-logo-img { height: 32px; width: 32px; object-fit: contain; filter: drop-shadow(0 0 6px rgba(46,196,196,0.4)); }
.footer-logo-text { font-family: var(--font-display); font-size: 0.95rem; font-weight: 800; letter-spacing: 0.1em; color: var(--white); }
.footer-logo-text em { font-style: normal; color: var(--teal-bright); }
.footer-brand p { color: var(--white-dim); font-size: 0.88rem; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a, .footer-col span { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.05em; color: var(--white-dim); transition: color var(--transition); }
.footer-col a:hover { color: var(--teal-bright); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: rgba(240,250,250,0.25);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── PAGE HERO ── */
.page-hero {
  padding-top: calc(var(--nav-h) + 5rem);
  padding-bottom: 5rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 70% 50%, rgba(26,138,138,0.18) 0%, transparent 70%);
}
.page-hero-content {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; max-width: 700px; }
.page-hero p { color: var(--white-dim); max-width: 540px; font-size: 1rem; }
.page-hero-deco {
  position: absolute;
  right: -1rem; bottom: -1rem;
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 16rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(46,196,196,0.06);
  user-select: none; pointer-events: none;
  line-height: 1;
}

/* ── SERVICES HERO IMAGE ── */
.services-hero-img { position: relative; height: 320px; overflow: hidden; }
.services-hero-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.6) brightness(0.6); }
.services-hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(7,17,31,0.85) 0%, rgba(7,17,31,0.3) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2.5rem;
}
.services-hero-tabs { display: flex; gap: 1rem; }
.stab {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--border-mid);
  color: var(--white-dim);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.stab:hover, .stab.active {
  background: var(--teal);
  border-color: var(--teal-bright);
  color: var(--white);
  box-shadow: var(--glow);
}

/* ── SERVICES DETAIL ── */
.services-detail { padding-top: 5rem; }
.services-section-label { margin-bottom: 3rem; }
.services-category-title { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.service-detail-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 4rem;
  padding: 4rem 0;
  align-items: start;
}
.service-detail-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 0.5rem;
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.service-detail-label .mono { font-size: 0.62rem; color: var(--teal-bright); letter-spacing: 0.12em; }
.service-detail-icon.large { font-size: 3rem; color: var(--teal-bright); text-shadow: 0 0 20px rgba(46,196,196,0.5); }
.service-detail-body h2 { margin-bottom: 1rem; }
.service-intro { font-style: italic; font-size: 1.1rem; color: var(--white-soft); margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border); line-height: 1.65; }
.service-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
.feature-item {
  padding: 1.4rem;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.feature-item:hover { border-color: var(--border-bright); box-shadow: var(--glow); }
.feature-item h4 { color: var(--white); margin-bottom: 0.4rem; }
.feature-item p { font-size: 0.88rem; }
.service-meta { display: flex; gap: 1.5rem; font-size: 0.62rem; letter-spacing: 0.08em; color: var(--teal-muted); align-items: center; flex-wrap: wrap; }
.service-divider { height: 1px; background: var(--border); margin: 0; }

/* ── IT DIVIDER BAND ── */
.it-divider-band {
  position: relative;
  height: 380px;
  overflow: hidden;
  margin: 2rem 0;
}
.it-divider-img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.5) brightness(0.5); }
.it-divider-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(7,17,31,0.85) 0%, rgba(13,79,92,0.6) 50%, rgba(7,17,31,0.85) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.it-divider-overlay h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1rem; }
.it-divider-overlay p { color: var(--white-dim); max-width: 500px; }

/* ── PRICING BAND ── */
.pricing-band {
  background: linear-gradient(135deg, var(--navy-soft), var(--teal-dim));
  padding: 5rem 2.5rem;
  border-top: 1px solid var(--border-mid);
}
.pricing-band-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.pricing-band h2 { color: var(--white); margin-bottom: 0.75rem; }
.pricing-band p { max-width: 460px; }
.pricing-band .label-text.light { color: var(--teal-bright); }

/* ── ABOUT HERO ── */
.about-hero {
  min-height: 90vh;
  background: var(--navy);
  padding: calc(var(--nav-h) + 5rem) 2.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.3) brightness(0.35); }
.about-hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(7,17,31,0.9) 0%, rgba(7,17,31,0.6) 60%, rgba(13,79,92,0.4) 100%);
}
.about-hero-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  width: 100%;
  position: relative;
  z-index: 2;
}
.about-headline { color: var(--white); }
.about-pull-quote {
  border-left: 3px solid var(--teal-bright);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}
.about-pull-quote p { font-style: italic; font-size: 1.15rem; color: var(--white-soft); margin-bottom: 0.75rem; line-height: 1.65; }
.about-pull-quote span { color: var(--teal-bright); font-size: 0.62rem; }
.about-hero-body { font-size: 0.95rem; line-height: 1.75; }
.about-scroll-marker {
  color: var(--teal-muted);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-align: center;
  margin-top: 4rem;
  position: relative;
  z-index: 2;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ── TIMELINE ── */
.about-timeline { padding-top: 7rem; padding-bottom: 5rem; }
.about-timeline h2 { margin-bottom: 4rem; }
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--border-bright) 10%, var(--border-bright) 90%, transparent);
  transform: translateX(-50%);
}
.timeline-item { display: flex; gap: 2rem; margin-bottom: 3.5rem; position: relative; }
.timeline-item.left { padding-right: calc(50% + 2rem); }
.timeline-item.right { flex-direction: row-reverse; padding-left: calc(50% + 2rem); }
.timeline-item::after {
  content: '';
  position: absolute;
  left: 50%; top: 0.5rem;
  width: 10px; height: 10px;
  background: var(--teal-bright);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px var(--teal-bright);
}
.timeline-year { font-size: 0.62rem; color: var(--teal-bright); letter-spacing: 0.12em; padding-top: 0.3rem; min-width: 3rem; }
.timeline-content h4 { color: var(--white); margin-bottom: 0.5rem; }
.timeline-content p { font-size: 0.88rem; }

/* ── VALUES ── */
.about-values { padding-top: 0; padding-bottom: 7rem; }
.values-intro { margin-bottom: 3rem; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.value-card {
  background: var(--navy-card);
  padding: 2.25rem;
  transition: all var(--transition);
}
.value-card:hover { background: var(--teal-dim); }
.value-card:hover h3, .value-card:hover p { color: var(--white); }
.value-glyph { font-size: 1.4rem; color: var(--teal-bright); margin-bottom: 1rem; transition: all var(--transition); }
.value-card:hover .value-glyph { text-shadow: 0 0 20px var(--teal-glow); }
.value-card h3 { color: var(--white); margin-bottom: 0.65rem; }
.value-card p { font-size: 0.88rem; }

/* ── TEAM ── */
.team-section { padding-top: 0; }
.team-intro { max-width: 600px; margin: 0.5rem auto 3.5rem; font-size: 1rem; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-bottom: 1.5rem; }
.team-card {
  border: 1px solid var(--border);
  padding: 2rem;
  background: var(--navy-card);
  transition: all var(--transition);
  border-radius: var(--radius);
}
.team-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.3), var(--glow); transform: translateY(-4px); border-color: var(--border-mid); }
.team-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-dim), var(--teal));
  border: 1px solid var(--teal-bright);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  margin-bottom: 1.1rem;
  box-shadow: 0 0 12px rgba(46,196,196,0.2);
}
.team-card h4 { color: var(--white); margin-bottom: 0.25rem; }
.team-role { font-size: 0.6rem; color: var(--teal-bright); letter-spacing: 0.1em; display: block; margin-bottom: 0.65rem; }
.team-card p { font-size: 0.84rem; }
.team-footnote { font-size: 0.62rem; letter-spacing: 0.1em; color: var(--teal-muted); margin-top: 0.75rem; }

/* ── OFFICE IMAGE BAND ── */
.office-img-band { display: grid; grid-template-columns: repeat(3,1fr); height: 280px; }
.office-img-item { position: relative; overflow: hidden; }
.office-img-item img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.5) brightness(0.65); transition: all 0.5s; }
.office-img-item:hover img { filter: saturate(0.8) brightness(0.8); transform: scale(1.05); }
.office-img-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,17,31,0.7) 0%, transparent 50%); }
.office-img-label {
  position: absolute; bottom: 1.25rem; left: 1.5rem; z-index: 2;
  font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal-bright);
}

/* ── PHILOSOPHY ── */
.philosophy-section {
  background: var(--navy-soft);
  padding: 7rem 2.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.philosophy-inner { max-width: 720px; margin: 0 auto; }
.philosophy-section h2 { color: var(--white); margin-bottom: 2.5rem; }
.philosophy-text p { font-size: 1.05rem; line-height: 1.85; margin-bottom: 1.75rem; }
.philosophy-text em { color: var(--teal-bright); font-style: italic; }

/* ── CONTACT ── */
.contact-section { padding-top: 5rem; }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: start; }
.contact-form-wrap h2 { margin-bottom: 0.5rem; }
.form-sub { color: var(--teal-muted); font-size: 0.68rem; letter-spacing: 0.05em; margin-bottom: 2rem; display: block; }
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-muted); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--navy-card);
  border: 1px solid var(--border);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  border-radius: var(--radius);
  transition: border-color var(--transition);
  appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(240,250,250,0.25); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--teal-bright);
  box-shadow: 0 0 0 3px rgba(46,196,196,0.12);
}
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%232ec4c4' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; background-size: 16px; padding-right: 2.5rem; cursor: pointer; }
.form-group select option { background: var(--navy-soft); }
.form-group textarea { resize: vertical; min-height: 120px; }
.file-drop-zone {
  border: 1.5px dashed var(--border-mid);
  background: var(--navy-card);
  padding: 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  text-align: center; cursor: pointer;
  transition: all var(--transition); border-radius: var(--radius);
}
.file-drop-zone:hover, .file-drop-zone.drag-over { background: rgba(46,196,196,0.05); border-color: var(--teal-bright); box-shadow: var(--glow); }
.file-drop-icon { font-size: 1.5rem; color: var(--teal-bright); }
.file-drop-zone span { font-size: 0.88rem; }
.file-formats { font-size: 0.6rem !important; color: var(--teal-muted) !important; }
.file-browse-link { color: var(--teal-bright); cursor: pointer; text-decoration: underline; }
.file-name-display { font-size: 0.62rem; color: var(--teal-bright); letter-spacing: 0.05em; min-height: 1em; }
.form-note { font-size: 0.6rem; color: var(--teal-muted); text-align: center; margin-top: 0.25rem; }
.form-success { display: none; flex-direction: column; align-items: center; gap: 0.5rem; text-align: center; padding: 2rem; background: rgba(46,196,196,0.08); border: 1px solid var(--border-mid); }
.form-success.show { display: flex; }
.success-icon { font-size: 2rem; color: var(--teal-bright); }
.form-success h4 { color: var(--white); margin-bottom: 0; }

/* Contact info */
.contact-info-wrap { display: flex; flex-direction: column; gap: 2rem; position: sticky; top: calc(var(--nav-h) + 2rem); }
.contact-info-block { padding: 2rem; background: var(--navy-card); border: 1px solid var(--border); }
.contact-info-block .label-text { margin-bottom: 1.1rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; padding: 0.75rem 0; border-bottom: 1px solid var(--border); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon { font-size: 1.1rem; color: var(--teal-bright); padding-top: 0.1rem; min-width: 1.5rem; }
.contact-info-item h4 { color: var(--white); margin-bottom: 0.15rem; font-size: 0.85rem; }
.contact-info-item a { color: var(--white-soft); font-family: var(--font-mono); font-size: 0.78rem; display: block; margin-bottom: 0.2rem; transition: color var(--transition); }
.contact-info-item a:hover { color: var(--teal-bright); }
.contact-info-item .mono { font-size: 0.6rem; color: var(--teal-muted); }
.office-list { display: flex; flex-direction: column; gap: 0.9rem; }
.office-item { padding-bottom: 0.9rem; border-bottom: 1px solid var(--border); }
.office-item:last-child { border-bottom: none; padding-bottom: 0; }
.office-item h5 { font-family: var(--font-display); font-size: 0.88rem; font-weight: 600; color: var(--white); text-transform: none; letter-spacing: 0; margin-bottom: 0.25rem; }
.office-item .mono { font-size: 0.62rem; color: var(--teal-muted); display: block; }
.response-times .rt-row { display: flex; justify-content: space-between; align-items: center; padding: 0.55rem 0; border-bottom: 1px solid var(--border); font-size: 0.88rem; }
.response-times .rt-row:last-child { border-bottom: none; }
.accent { color: var(--teal-bright); }

/* ── FAQ ── */
.faq-section { padding-top: 5rem; padding-bottom: 7rem; }
.faq-section h2 { margin-bottom: 3rem; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; padding: 1.2rem 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--white);
  background: none; border: none; cursor: pointer; gap: 1rem;
}
.faq-q::after { content: '+'; font-size: 1.3rem; font-weight: 300; color: var(--teal-bright); transition: transform var(--transition); flex-shrink: 0; }
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a.open { max-height: 300px; }
.faq-a p { padding-bottom: 1.5rem; font-size: 0.9rem; }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .why-section { grid-template-columns: 1fr; gap: 3rem; }
  .why-left { position: static; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-info-wrap { position: static; }
  .about-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-detail-row { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail-label { flex-direction: row; position: static; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-feature { grid-template-columns: 1fr; }
  .split-img { height: 280px; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--navy); padding: 2rem; gap: 1.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5); z-index: 99;
  }
  .nav-links.open a { font-size: 1rem; }
  .nav-hamburger { display: flex; }
  .hero-stat-strip { flex-wrap: wrap; gap: 1.5rem; }
  .stat-divider { display: none; }
  .stat { min-width: 120px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-features { grid-template-columns: 1fr; }
  .img-band { grid-template-columns: repeat(2,1fr); height: auto; }
  .img-band-item { height: 180px; }
  .office-img-band { grid-template-columns: 1fr; height: auto; }
  .office-img-item { height: 200px; }
  .timeline::before { left: 2rem; }
  .timeline-item.left, .timeline-item.right { padding: 0 0 0 4.5rem; flex-direction: column; }
  .timeline-item::after { left: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .cta-band-inner, .pricing-band-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .values-grid, .team-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .hero, .section, .page-hero { padding-left: 1.25rem; padding-right: 1.25rem; }
}

/* ═══════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
═══════════════════════════════════════════════ */
.wa-float-wrap {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  pointer-events: none;
}
.wa-float-btn {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d4f3c, #128c7e, #25d366);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35), 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  pointer-events: auto;
  text-decoration: none;
  flex-shrink: 0;
}
.wa-float-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5), 0 4px 12px rgba(0,0,0,0.3);
}
.wa-float-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: waPulse 2.5s ease-out infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* Tooltip bubble */
.wa-tooltip {
  background: var(--navy-card);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  max-width: 220px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  pointer-events: auto;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  animation: waTooltipIn 0.4s ease forwards;
  position: relative;
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  bottom: -7px;
  right: 22px;
  width: 14px;
  height: 14px;
  background: var(--navy-card);
  border-right: 1px solid rgba(37,211,102,0.3);
  border-bottom: 1px solid rgba(37,211,102,0.3);
  transform: rotate(45deg);
}
.wa-tooltip p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--white);
  line-height: 1.4;
  flex: 1;
}
.wa-tooltip-close {
  background: none;
  border: none;
  color: var(--white-dim);
  font-size: 0.75rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
  transition: color 0.2s;
}
.wa-tooltip-close:hover { color: var(--teal-bright); }
@keyframes waTooltipIn {
  from { opacity: 0; transform: translateY(8px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.wa-tooltip.wa-hidden {
  display: none;
}

/* WhatsApp sidebar button in contact page */
.wa-sidebar-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #0d4f3c, #128c7e);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: 3px;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  justify-content: center;
}
.wa-sidebar-btn:hover {
  background: linear-gradient(135deg, #128c7e, #25d366);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════
   CONTACT FORM ENHANCEMENTS
═══════════════════════════════════════════════ */
.req { color: var(--teal-bright); font-size: 0.75rem; }
.form-optional { font-family: var(--font-mono); font-size: 0.58rem; color: var(--teal-muted); font-weight: 300; margin-left: 0.3rem; }
.field-error {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: #ff6b6b;
  letter-spacing: 0.05em;
  min-height: 1em;
  display: block;
  margin-top: 0.2rem;
}
.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 3px rgba(255,107,107,0.12);
}
.form-group input.valid,
.form-group select.valid,
.form-group textarea.valid {
  border-color: #25d366;
}
.form-status {
  padding: 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  min-height: 0;
  transition: all 0.3s;
}
.form-status.error {
  padding: 0.85rem 1.1rem;
  background: rgba(255,107,107,0.1);
  border: 1px solid rgba(255,107,107,0.3);
  color: #ff6b6b;
  border-radius: 3px;
  margin-bottom: 1rem;
}
.form-status.success {
  padding: 0.85rem 1.1rem;
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.3);
  color: #25d366;
  border-radius: 3px;
  margin-bottom: 1rem;
}
.btn-spinner { font-family: var(--font-mono); letter-spacing: 0.05em; }
#submitBtn:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

/* Office single block */
.office-single {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.office-flag { font-size: 2rem; flex-shrink: 0; margin-top: 0.1rem; }
.office-single h4 { color: var(--white); margin-bottom: 0.25rem; }
.office-single .mono { font-size: 0.65rem; color: var(--teal-muted); display: block; }
.map-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.62rem;
  color: var(--teal-bright);
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.map-link:hover { color: var(--teal-glow); }
.office-map-embed { border-radius: 3px; overflow: hidden; }

/* ═══════════════════════════════════════════════
   HERO LOGO LOCKUP — image + text side by side
═══════════════════════════════════════════════ */
.hero-logo-lockup {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-logo-img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(46,196,196,0.5));
  flex-shrink: 0;
}
.hero-logo-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.hero-logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--white);
  line-height: 1;
}
.hero-logo-name em {
  font-style: normal;
  color: var(--teal-bright);
}
.hero-logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-muted);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — WhatsApp + contact
═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  .wa-float-wrap { bottom: 1.25rem; right: 1.25rem; }
  .wa-float-btn { width: 52px; height: 52px; }
  .wa-float-btn svg { width: 26px; height: 26px; }
  .wa-tooltip { max-width: 180px; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-info-wrap { position: static; }
  .office-map-embed iframe { height: 150px; }
}
@media (max-width: 480px) {
  .wa-float-wrap { bottom: 1rem; right: 1rem; }
  .wa-float-btn { width: 48px; height: 48px; }
}

/* ═══════════════════════════════════════════════════════
   IMPACT VISUALISATION SECTION
═══════════════════════════════════════════════════════ */
.impact-viz-section {
  padding: 6rem 0;
  background: var(--navy);
  overflow: hidden;
}
.impact-viz-header {
  max-width: var(--max-w);
  margin: 0 auto 4rem;
  padding: 0 2rem;
}
.impact-viz-sub {
  max-width: 520px;
  margin: 0 auto;
  color: var(--white-dim);
}

/* ── ROW 1 ── */
.impact-row-1 {
  max-width: var(--max-w);
  margin: 0 auto 5rem;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
}

/* Live ticker */
.impact-ticker-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}
.impact-ticker-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-bright), var(--teal));
  animation: shimmer 2s linear infinite;
  background-size: 200% 100%;
}
@keyframes shimmer {
  from { background-position: -200% 0; }
  to   { background-position:  200% 0; }
}
.ticker-display {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.ticker-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--teal-bright), var(--teal-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.02em;
  transition: all 0.3s;
}
.ticker-unit {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-muted);
}
.ticker-sub { font-size: 0.75rem; color: var(--white-dim); }
.ticker-bar-wrap {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin: 0.25rem 0;
}
.ticker-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--teal-bright));
  border-radius: 2px;
  width: 0%;
  transition: width 0.4s ease;
}
.ticker-langs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.tlang {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--white-dim);
  transition: all 0.3s;
}
.tlang.active {
  border-color: var(--teal-bright);
  color: var(--teal-bright);
  background: rgba(46,196,196,0.08);
}
.ticker-note { font-size: 0.58rem; color: var(--teal-muted); }

/* Radial rings SVG */
.impact-rings-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.impact-rings-svg { width: 100%; max-width: 340px; }
.ring-track {
  fill: none;
  stroke: rgba(46,196,196,0.08);
  stroke-width: 12;
}
.ring-fill {
  fill: none;
  stroke-width: 10;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 170px 170px;
  transition: stroke-dasharray 1.4s cubic-bezier(0.4,0,0.2,1);
}
.rf-1 { stroke: #2ec4c4; filter: drop-shadow(0 0 6px rgba(46,196,196,0.5)); }
.rf-2 { stroke: #1dd1d1; }
.rf-3 { stroke: #4a9a9a; }
.rf-4 { stroke: #0d4f5c; }
.ring-centre-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  fill: var(--white);
  text-anchor: middle;
  dominant-baseline: middle;
}
.ring-centre-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  fill: var(--teal-muted);
  text-anchor: middle;
}
.ring-dot { fill: var(--teal-bright); filter: drop-shadow(0 0 4px var(--teal-bright)); }
.rings-legend {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  max-width: 280px;
}
.rl-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.65rem;
  color: var(--white-dim);
}
.rl-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.rl-item strong { color: var(--white); margin-left: 0.25rem; }

/* Side cards */
.impact-side-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.isc-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  transition: border-color var(--transition);
}
.isc-card:hover { border-color: var(--border-mid); }

/* Gauge */
.isc-gauge-wrap { margin: 0.5rem 0; }
.isc-gauge { width: 100%; max-width: 130px; display: block; }
.gauge-track { fill: none; stroke: rgba(46,196,196,0.1); stroke-width: 8; stroke-linecap: round; }
.gauge-fill {
  fill: none;
  stroke: url(#radarGrad);
  stroke: var(--teal-bright);
  stroke-width: 8;
  stroke-linecap: round;
  transform: rotate(-180deg);
  transform-origin: 60px 65px;
  transition: stroke-dasharray 1.4s cubic-bezier(0.4,0,0.2,1);
  filter: drop-shadow(0 0 4px var(--teal-bright));
}
.gauge-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  fill: var(--white);
  text-anchor: middle;
}
.isc-label { font-size: 0.6rem; color: var(--teal-muted); margin-top: 0.3rem; }

/* Stars */
.stars-wrap { display: flex; align-items: center; gap: 0.75rem; margin: 0.5rem 0; }
.stars-track {
  flex: 1; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden;
}
.stars-fill {
  height: 100%;
  background: linear-gradient(90deg, #f0b429, #f6d860);
  border-radius: 3px;
  width: 0%;
  transition: width 1.2s ease;
}
.stars-num { font-size: 0.85rem; color: var(--white); min-width: 2rem; }
.stars-row { display: flex; gap: 0.2rem; font-size: 1rem; color: #f0b429; }
.stars-row span { transition: transform 0.2s; }
.stars-row span.lit { text-shadow: 0 0 8px #f0b429; }

/* Years card */
.isc-years { }
.isc-year-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--teal-bright), var(--teal-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin: 0.4rem 0;
}
.isc-year-bar-wrap {
  height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; margin: 0.5rem 0;
}
.isc-year-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--teal-dim), var(--teal-bright));
  width: 0%;
  transition: width 1.4s ease;
  border-radius: 2px;
}

/* ── ROW 2 ── */
.impact-row-2 {
  max-width: var(--max-w);
  margin: 0 auto 5rem;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

/* Radar */
.impact-radar-wrap {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
}
.radar-container { margin-top: 1rem; }
.radar-svg { width: 100%; max-height: 300px; }
.radar-grid {
  fill: rgba(46,196,196,0.03);
  stroke: rgba(46,196,196,0.12);
  stroke-width: 1;
}
.radar-axis { stroke: rgba(46,196,196,0.15); stroke-width: 1; }
.radar-data {
  fill: url(#radarGrad);
  fill-opacity: 0.35;
  stroke: var(--teal-bright);
  stroke-width: 1.5;
  filter: drop-shadow(0 0 8px rgba(46,196,196,0.3));
  transition: all 0.8s ease;
}
.radar-dot { fill: var(--teal-bright); filter: drop-shadow(0 0 3px var(--teal-bright)); }
.radar-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  fill: var(--white-dim);
  text-anchor: middle;
  dominant-baseline: middle;
  letter-spacing: 0.05em;
}

/* Timeline bar chart */
.impact-timeline-wrap {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
}
.timeline-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.4rem;
  height: 180px;
  margin: 1.5rem 0 0.5rem;
  position: relative;
}
.timeline-chart::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent calc(25% - 1px),
    rgba(46,196,196,0.05) calc(25% - 1px), rgba(46,196,196,0.05) 25%
  );
  pointer-events: none;
}
.tc-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  height: 100%;
}
.tc-bar-lang {
  width: 100%;
  background: linear-gradient(180deg, var(--teal-bright), var(--teal));
  border-radius: 2px 2px 0 0;
  height: 0%;
  transition: height 1.2s cubic-bezier(0.4,0,0.2,1);
  min-height: 2px;
}
.tc-bar-it {
  width: 100%;
  background: linear-gradient(180deg, #4a9a9a, var(--teal-dim));
  border-radius: 2px 2px 0 0;
  height: 0%;
  transition: height 1.2s cubic-bezier(0.4,0,0.2,1);
  transition-delay: 0.2s;
  min-height: 2px;
}
.timeline-chart-xaxis {
  display: flex;
  justify-content: space-between;
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  color: var(--teal-muted);
  padding: 0 0.1rem;
  margin-bottom: 1rem;
}
.timeline-chart-legend {
  display: flex;
  gap: 1.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
}
.tcl-lang { color: var(--teal-bright); }
.tcl-it   { color: #4a9a9a; }

/* ── ROW 3 — Language heatmap ── */
.impact-row-3 {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.impact-row3-title { margin-bottom: 2rem; color: var(--white); }
.lang-heatmap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
}
.lh-cell {
  font-family: var(--font-mono);
  font-size: clamp(0.55rem, 1.2vw, 0.72rem);
  letter-spacing: 0.06em;
  padding: 0.35rem 0.75rem;
  border-radius: 3px;
  background: var(--navy-card);
  border: 1px solid transparent;
  color: var(--white-dim);
  transition: all 0.3s;
  cursor: default;
  white-space: nowrap;
}
.lh-cell:hover {
  transform: scale(1.08);
  box-shadow: 0 0 16px rgba(46,196,196,0.25);
  z-index: 2;
  position: relative;
}
.lh-active-5 { background: rgba(46,196,196,0.35); border-color: #2ec4c4; color: #fff; }
.lh-active-4 { background: rgba(46,196,196,0.22); border-color: rgba(46,196,196,0.5); color: #dff9f9; }
.lh-active-3 { background: rgba(46,196,196,0.12); border-color: rgba(46,196,196,0.3); color: var(--white-soft); }
.lh-active-2 { background: rgba(46,196,196,0.07); border-color: rgba(46,196,196,0.18); color: var(--white-dim); }
.lh-active-1 { background: rgba(13,79,92,0.4);   border-color: rgba(46,196,196,0.1); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .impact-row-1 { grid-template-columns: 1fr 1fr; }
  .impact-side-cards { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; }
  .isc-card { flex: 1; min-width: 160px; }
  .impact-row-2 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .impact-row-1 { grid-template-columns: 1fr; }
  .impact-rings-wrap { order: -1; }
  .impact-side-cards { flex-direction: column; }
  .isc-card { width: 100%; }
  .timeline-chart { height: 130px; }
}
