/* ANIBA Consulting Services shared site styles
   Palette: navy #071D36, blue #1467A4/#2D8CFF, green #0E8A63/#20A77B */

:root {
  --navy: #071D36;
  --blue: #1467A4;
  --blue-accent: #2D8CFF;
  --green: #0E8A63;
  --green-accent: #20A77B;
  --bg: #F8FAFC;
  --ink: #0F172A;
  --slate: #475569;
  --slate-light: #64748B;
  --border: #EEF2F7;
  --header-h: 92px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  overflow-x: hidden;
}
html { max-width: 100%; overflow-x: hidden; }

a { color: var(--blue-accent); text-decoration: none; }
a:hover { color: var(--green); }

img { max-width: 100%; display: block; }

.heading-font { font-family: 'Plus Jakarta Sans', sans-serif; }

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

@keyframes anibaFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ── Reveal-on-scroll ───────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ── Header ─────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(7, 29, 54, 0.10);
  transition: background 0.35s ease, box-shadow 0.35s ease;
  font-family: 'Inter', sans-serif;
}
.site-header.is-scrolled,
.site-header.is-menu-open {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 30px rgba(7, 29, 54, 0.10);
}

.site-header__bar {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand__logo {
  height: 56px;
  width: auto;
  display: block;
  /* Header is white site-wide, so use the original coloured logo */
  filter: none;
}
@media (max-width: 640px) {
  .site-header__bar { padding: 0 16px; height: 68px; gap: 10px; }
  .brand__logo { height: 40px; }
  .header-actions { gap: 8px; }
  .btn-cta { padding: 9px 14px; font-size: 12.5px; line-height: 1.15; }
  .hamburger { width: 40px; height: 40px; font-size: 18px; }
}
@media (max-width: 380px) {
  .brand__logo { height: 34px; }
  .btn-cta { padding: 8px 11px; font-size: 12px; }
}
.brand__word {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  gap: 3px;
}
.brand__word span:first-child {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 27px;
  letter-spacing: 0.32em;
  margin-right: -0.32em;
  color: #ffffff;
  transition: color 0.3s ease;
}
.brand__word span:last-child {
  font-family: 'Jost', sans-serif;
  font-size: 9.4px;
  letter-spacing: 0.08em;
  margin-right: -0.08em;
  font-weight: 500;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s ease;
}
.site-header.is-scrolled .brand__word span:first-child,
.site-header.is-menu-open .brand__word span:first-child { color: var(--ink); }
.site-header.is-scrolled .brand__word span:last-child,
.site-header.is-menu-open .brand__word span:last-child { color: var(--slate-light); }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-desktop > a,
.nav-desktop > .nav-drop > a {
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}
.nav-desktop > a:hover,
.nav-desktop > .nav-drop > a:hover { color: var(--blue-accent); }
.nav-desktop a.is-active { font-weight: 700; }
/* Active page indicator: smooth animated underline (Task 1) */
.nav-desktop > a,
.nav-desktop > .nav-drop > a { position: relative; }
.nav-desktop > a::after,
.nav-desktop > .nav-drop > a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 3px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--green), var(--blue-accent));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.nav-desktop > a.is-active::after,
.nav-desktop > .nav-drop > a.is-active::after { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) {
  .nav-desktop > a::after,
  .nav-desktop > .nav-drop > a::after { transition: none; }
}
/* Active child inside the Technical Consulting dropdown */
.nav-drop__inner a.is-active-child { background: #EAF2FB; }
.nav-drop__inner a.is-active-child strong { color: var(--blue-accent); }
/* Active page in the mobile menu */
.nav-mobile a.is-active {
  background: #F1F6FB;
  color: var(--blue-accent);
  box-shadow: inset 3px 0 0 var(--green);
}
.site-header.is-scrolled .nav-desktop > a,
.site-header.is-menu-open .nav-desktop > a,
.site-header.is-scrolled .nav-desktop > .nav-drop > a,
.site-header.is-menu-open .nav-desktop > .nav-drop > a { color: var(--ink); }

.nav-drop { position: relative; }
.nav-drop__caret { font-size: 9px; transform: translateY(1px); }
.nav-drop__panel {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 10px;
  display: none;
}
.nav-drop:hover .nav-drop__panel,
.nav-drop:focus-within .nav-drop__panel { display: block; }
.nav-drop__inner {
  display: flex;
  flex-direction: column;
  min-width: 280px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(7, 29, 54, 0.18);
  padding: 10px;
  border: 1px solid var(--border);
}
.nav-drop__inner a {
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--ink);
  transition: background 0.15s ease;
}
.nav-drop__inner a:hover { background: #F1F6FB; color: var(--ink); }
.nav-drop__inner a strong {
  display: block;
  font-weight: 600;
  font-size: 14px;
}
.nav-drop__inner a small {
  display: block;
  font-size: 12.5px;
  color: var(--slate-light);
  margin-top: 2px;
}

.header-actions { display: flex; align-items: center; gap: 12px; }
.btn-cta {
  padding: 11px 22px;
  border-radius: 12px;
  background: linear-gradient(120deg, var(--green), var(--blue-accent));
  background-size: 160% 160%;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 6px 18px rgba(14, 138, 99, 0.3);
  transition: background-position 0.4s ease, transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-block;
}
.btn-cta:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(45, 140, 255, 0.35);
  color: #ffffff;
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: rgba(7, 29, 54, 0.06);
  color: var(--ink);
  font-size: 20px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.site-header.is-scrolled .hamburger,
.site-header.is-menu-open .hamburger { color: var(--ink); }

.nav-mobile {
  display: none;
  background: #ffffff;
  border-top: 1px solid var(--border);
  box-shadow: 0 24px 40px rgba(7, 29, 54, 0.15);
  flex-direction: column;
  padding: 12px 20px 20px;
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a {
  padding: 14px 12px;
  border-radius: 12px;
  font-weight: 600;
  color: var(--ink);
  transition: background 0.15s ease;
}
.nav-mobile a:hover { background: #F1F6FB; }

@media (max-width: 1080px) {
  .nav-desktop { display: none !important; }
  .hamburger { display: flex !important; }
}

/* ── Hero ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 29, 54, 1) 0%,
    rgba(7, 29, 54, 1) 42%,
    rgba(7, 29, 54, 0.95) 55%,
    rgba(7, 29, 54, 0.6) 66%,
    rgba(7, 29, 54, 0.2) 82%,
    rgba(7, 29, 54, 0) 100%
  );
  pointer-events: none;
}
@media (max-width: 640px) {
  .hero__bg { object-position: right center; }
  .hero__scrim {
    background: linear-gradient(
      90deg,
      rgba(7, 29, 54, 1) 0%,
      rgba(7, 29, 54, 1) 45%,
      rgba(7, 29, 54, 0.9) 65%,
      rgba(7, 29, 54, 0.55) 85%,
      rgba(7, 29, 54, 0.32) 100%
    );
  }
}
.hero__content {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 160px 32px 120px;
  width: 100%;
  pointer-events: none;
}
.hero__inner {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  pointer-events: auto;
}
.hero__eyebrow {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(7, 29, 54, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.hero h1 {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.08;
  color: #ffffff;
  text-wrap: pretty;
}
.hero h1 .accent {
  background: linear-gradient(100deg, var(--blue-accent), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p {
  margin: 0;
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
  text-wrap: pretty;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  padding: 16px 32px;
  border-radius: 14px;
  background: linear-gradient(120deg, var(--green), var(--blue-accent));
  background-size: 160% 160%;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 10px 28px rgba(14, 138, 99, 0.35);
  transition: background-position 0.4s ease, transform 0.2s ease;
}
.btn-primary:hover { background-position: 100% 0; transform: translateY(-2px); color: #ffffff; }
.btn-ghost {
  padding: 16px 32px;
  border-radius: 14px;
  background: rgba(7, 29, 54, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease;
}
.btn-ghost:hover { background: rgba(7, 29, 54, 0.78); color: #ffffff; }

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  letter-spacing: 0.2em;
  animation: anibaFloat 2.4s ease-in-out infinite;
  pointer-events: none;
}
.hero__scroll span {
  width: 1px;
  height: 36px;
  background: linear-gradient(rgba(255, 255, 255, 0.7), transparent);
}

/* ── Stats ──────────────────────────────────────────────────────── */
.stats {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}
.stats__grid {
  padding: 56px 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 32px;
}
.stat { display: flex; flex-direction: column; gap: 6px; text-align: center; }
.stat__num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 46px;
  color: var(--navy);
}
.stat__num em { color: var(--green); font-style: normal; }
.stat__label { font-size: 14px; font-weight: 500; color: var(--slate-light); }

/* ── Section shell ──────────────────────────────────────────────── */
section { position: relative; }
.section { max-width: 1280px; margin: 0 auto; padding: 110px 32px 40px; }
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--green);
}
.eyebrow.on-dark { color: var(--green-accent); }
.section h2 {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  color: var(--navy);
  text-wrap: pretty;
}
.section > .section-head {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section-head p {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
  color: var(--slate);
  text-wrap: pretty;
}

/* ── Who we are (mission/vision/values) ────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 24px;
  margin-top: 56px;
}
.pillar {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 4px 24px rgba(7, 29, 54, 0.06);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pillar:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(7, 29, 54, 0.12); }
.pillar__badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
}
.pillar--mission .pillar__badge { background: linear-gradient(135deg, var(--navy), var(--blue)); }
.pillar--vision .pillar__badge { background: linear-gradient(135deg, var(--green), var(--green-accent)); }
.pillar--values .pillar__badge { background: linear-gradient(135deg, var(--blue), var(--blue-accent)); }
.pillar h3 {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 21px;
  color: var(--navy);
}
.pillar p { margin: 0; font-size: 15px; line-height: 1.7; color: var(--slate); }

/* ── Why choose ANIBA ───────────────────────────────────────────── */
.why {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
  gap: 56px;
  align-items: center;
}
.why__copy { display: flex; flex-direction: column; gap: 20px; }
.why__points { display: flex; flex-direction: column; gap: 18px; margin-top: 8px; }
.why__point { display: flex; gap: 16px; align-items: flex-start; }
.why__point-num {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 10px;
  background: #EAF5F0;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.why__point-body { display: flex; flex-direction: column; gap: 4px; }
.why__point-body strong { font-weight: 600; font-size: 16.5px; color: var(--navy); }
.why__point-body span { font-size: 14.5px; line-height: 1.65; color: var(--slate); }

.why__visual { position: relative; height: 520px; }
.why__frame {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(7, 29, 54, 0.16);
}
.why__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.why__badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--navy);
  color: #ffffff;
  border-radius: 18px;
  padding: 22px 28px;
  box-shadow: 0 16px 40px rgba(7, 29, 54, 0.3);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.why__badge strong { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 28px; }
.why__badge span { font-size: 13px; color: rgba(255, 255, 255, 0.75); }

/* ── Image placeholders (no photography supplied) ──────────────── */
.img-slot {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(45,140,255,0.35), transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(32,167,123,0.35), transparent 55%),
    linear-gradient(150deg, #0C2F52 0%, #0A2745 60%, #071D36 100%);
}
.img-slot::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.img-slot__icon {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
}
.img-slot__icon svg { width: 26px; height: 26px; }

/* ── Industries ─────────────────────────────────────────────────── */
.industries { background: var(--navy); }
.industries__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 20px;
  margin-top: 48px;
}
.industry {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.industry:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-4px); }
.industry__tag { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; color: var(--blue-accent); }
.industry h3 { margin: 0; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 19px; color: #ffffff; }
.industry p { margin: 0; font-size: 14px; line-height: 1.65; color: rgba(255, 255, 255, 0.68); }

/* ── Lifecycle ──────────────────────────────────────────────────── */
.lifecycle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 0;
  margin-top: 56px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(7, 29, 54, 0.06);
}
.phase {
  padding: 32px 26px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.25s ease;
}
.phase:last-child { border-right: none; }
.phase:hover { background: #F1F6FB; }
.phase__tag { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 15px; color: var(--blue-accent); }
.phase h3 { margin: 0; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 17px; color: var(--navy); }
.phase p { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--slate-light); }

/* ── Leadership ─────────────────────────────────────────────────── */
.leadership { background: #ffffff; border-top: 1px solid var(--border); }
.leaders {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 28px;
  margin-top: 52px;
}
.leader {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  text-align: center;
  transition: transform 0.25s ease;
}
.leader:hover { transform: translateY(-6px); }
.leader__photo {
  height: 330px;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(7, 29, 54, 0.14);
  transition: box-shadow 0.25s ease;
}
.leader:hover .leader__photo { box-shadow: 0 22px 48px rgba(7, 29, 54, 0.22); }
.leader__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; display: block; }
.leader__body { padding: 20px 10px 0; display: flex; flex-direction: column; gap: 4px; align-items: center; }
.leader__body strong { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 19px; color: var(--navy); }
.leader__role { font-size: 14px; font-weight: 500; color: var(--slate-light); }

/* ── CTA banner ─────────────────────────────────────────────────── */
.cta-band { max-width: 1280px; margin: 0 auto; padding: 100px 32px; }
.cta-panel {
  background: linear-gradient(115deg, var(--navy) 0%, #0C5488 60%, var(--green) 130%);
  border-radius: 28px;
  padding: clamp(48px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
  box-shadow: 0 28px 64px rgba(7, 29, 54, 0.25);
}
.cta-panel h2 {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.12;
  color: #ffffff;
  max-width: 720px;
  text-wrap: pretty;
}
.cta-panel p { margin: 0; font-size: 17px; line-height: 1.7; color: rgba(255, 255, 255, 0.8); max-width: 560px; }
.cta-panel .hero__actions { justify-content: center; margin-top: 6px; }
.btn-white {
  padding: 16px 34px;
  border-radius: 14px;
  background: #ffffff;
  color: var(--navy);
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25); color: var(--navy); }
.btn-outline {
  padding: 16px 34px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.2s ease;
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); color: #ffffff; }

/* ── Footer ─────────────────────────────────────────────────────── */
.site-footer { background: var(--navy); color: #ffffff; font-family: 'Inter', sans-serif; }
.footer__grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 32px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer__brand { display: flex; flex-direction: column; gap: 18px; }
.footer__brand-row { display: flex; align-items: center; gap: 12px; }
.footer__logo {
  height: 60px;
  width: auto;
  display: block;
  /* Footer is dark navy, so render the logo white */
  filter: brightness(0) invert(1);
}
@media (max-width: 640px) {
  .footer__logo { height: 48px; }
}
.footer__word { display: flex; flex-direction: column; line-height: 1.1; gap: 3px; }
.footer__word span:first-child {
  font-family: 'Jost', sans-serif; font-weight: 600; font-size: 27px;
  letter-spacing: 0.32em; margin-right: -0.32em;
}
.footer__word span:last-child {
  font-family: 'Jost', sans-serif; font-size: 9.4px; letter-spacing: 0.08em;
  margin-right: -0.08em; font-weight: 500; white-space: nowrap; color: rgba(255,255,255,0.7);
}
.footer__grid p { margin: 0; font-size: 14px; line-height: 1.7; color: rgba(255, 255, 255, 0.72); max-width: 340px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff;
  transition: background 0.2s ease;
}
.footer__social a:hover { background: var(--blue-accent); color: #ffffff; }

.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col-title {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 14px;
  letter-spacing: 0.1em; color: var(--green); text-transform: uppercase; margin-bottom: 6px;
}
.footer__col a { font-size: 14px; color: rgba(255, 255, 255, 0.78); }
.footer__col a:hover { color: var(--blue-accent); }
.footer__col span.static { font-size: 14px; color: rgba(255, 255, 255, 0.78); line-height: 1.6; }
.footer__col .hours { font-size: 13px; color: rgba(255, 255, 255, 0.55); }

.footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.footer__bottom-inner {
  max-width: 1280px; margin: 0 auto; padding: 20px 32px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.footer__bottom-inner span { font-size: 13px; color: rgba(255, 255, 255, 0.55); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { color: rgba(255,255,255,0.55); }
.footer__legal a:hover { color: var(--blue-accent); }

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
  .hero__content { padding: 140px 20px 90px; }
  .section { padding: 72px 20px 20px; }
}

/* ══════════════════════════════════════════════════════════════════
   Shared inner pages (Technical Consulting, Services, Feedback &
   Certifications, Reports & Contact)
   ══════════════════════════════════════════════════════════════════ */

/* Generic dark gradient page hero (Services / Feedback / Reports) */
.page-hero {
  background: linear-gradient(115deg, var(--navy) 0%, #0C5488 75%, #136896 110%);
}
.page-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 170px 32px 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.page-hero__eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.16em; color: var(--green-accent); }
.page-hero h1 {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.1;
  color: #ffffff;
  max-width: 820px;
  text-wrap: pretty;
}
.page-hero p { margin: 0; font-size: 18px; line-height: 1.7; color: rgba(255, 255, 255, 0.8); max-width: 640px; }

/* Generic split CTA row (Technical Consulting / Services) */
.cta-row { max-width: 1280px; margin: 0 auto; padding: 90px 32px; }
.cta-row__panel {
  background: linear-gradient(115deg, var(--navy) 0%, #0C5488 60%, var(--green) 130%);
  border-radius: 28px;
  padding: clamp(44px, 5vw, 70px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cta-row__copy { display: flex; flex-direction: column; gap: 10px; max-width: 620px; }
.cta-row__copy h2 {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  color: #ffffff;
  text-wrap: pretty;
}
.cta-row__copy p { margin: 0; font-size: 16px; line-height: 1.7; color: rgba(255, 255, 255, 0.8); }

/* ── Technical Consulting ──────────────────────────────────────── */
.tech-hero { position: relative; background: var(--navy); overflow: hidden; }
.tech-hero__bg { position: absolute; inset: 0; opacity: 0.5; }
.tech-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(7, 29, 54, 0.96) 20%, rgba(7, 29, 54, 0.7) 100%);
  pointer-events: none;
}
.tech-hero__content {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 150px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  pointer-events: none;
}
.tech-hero__content h1 {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.1;
  color: #ffffff;
  max-width: 780px;
  text-wrap: pretty;
}
.tech-hero__content p { margin: 0; font-size: 17px; line-height: 1.7; color: rgba(255, 255, 255, 0.8); max-width: 640px; }
.tech-hero__tabs-wrap { position: relative; max-width: 1280px; margin: 0 auto; padding: 0 32px 44px; }
.tech-tabs { display: flex; gap: 12px; flex-wrap: wrap; pointer-events: auto; }
.tech-tab {
  padding: 15px 30px;
  border-radius: 14px;
  border: 1px solid #E2E8F0;
  background: #ffffff;
  color: var(--navy);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(7, 29, 54, 0.08);
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.tech-tab:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(45, 140, 255, 0.3); }
.tech-tab.is-active {
  border-color: transparent;
  background: linear-gradient(120deg, var(--green), var(--blue-accent));
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(14, 138, 99, 0.35);
}

.tech-overview { max-width: 1280px; margin: 0 auto; padding: 72px 32px 40px; }
.tech-overview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
  gap: 56px;
  align-items: start;
}
.tech-overview__copy { display: flex; flex-direction: column; gap: 18px; }
.tech-overview__copy h2 {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.14;
  color: var(--navy);
  text-wrap: pretty;
}
.tech-overview__copy > p { margin: 0; font-size: 16.5px; line-height: 1.75; color: var(--slate); text-wrap: pretty; }
.tech-overview__segments { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.segment-pill { padding: 10px 18px; border-radius: 999px; background: #EAF5F0; color: var(--green); font-weight: 600; font-size: 13.5px; }

.tech-services-card {
  background: var(--navy);
  border-radius: 22px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 24px 56px rgba(7, 29, 54, 0.22);
}
.tech-services-card__title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 17px; color: #ffffff; }
.tech-services-card__list { display: flex; flex-direction: column; gap: 12px; }
.tech-service-item { display: flex; gap: 12px; align-items: flex-start; }
.tech-service-item .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-accent); margin-top: 7px; flex-shrink: 0; }
.tech-service-item .text { font-size: 15px; line-height: 1.6; color: rgba(255, 255, 255, 0.85); }
.tech-services-card__cta {
  align-self: flex-start;
  margin-top: 6px;
  padding: 13px 24px;
  border-radius: 12px;
  background: linear-gradient(120deg, var(--green), var(--blue-accent));
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
}
.tech-services-card__cta:hover { color: #ffffff; }

.tech-method { max-width: 1280px; margin: 0 auto; padding: 70px 32px; }
.tech-method__head h2 { margin: 0; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: clamp(26px, 2.8vw, 38px); color: var(--navy); }
.method-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); gap: 22px; margin-top: 44px; }
.method-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(7, 29, 54, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.method-card:hover { transform: translateY(-5px); box-shadow: 0 16px 36px rgba(7, 29, 54, 0.1); }
.method-card__step { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 14px; color: var(--blue-accent); }
.method-card__title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 17px; color: var(--navy); }
.method-card__text { font-size: 14px; line-height: 1.65; color: var(--slate-light); }

.tech-benefits-faq { background: #ffffff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.tech-benefits-faq__grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 90px 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
  gap: 56px;
}
.tech-benefits-faq h2 { margin: 0; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: clamp(24px, 2.6vw, 34px); color: var(--navy); }
.benefits-list, .faq-list { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.faq-list { gap: 12px; }
.benefit-item { display: flex; gap: 14px; align-items: flex-start; background: var(--bg); border-radius: 14px; padding: 18px 20px; }
.benefit-item .check { color: var(--green); font-weight: 800; font-size: 16px; }
.benefit-item .text { font-size: 15px; line-height: 1.6; color: #334155; }

.faq-item { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; background: #ffffff; }
.faq-item__q {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  transition: background 0.15s ease;
}
.faq-item__q:hover { background: var(--bg); }
.faq-item__icon { color: var(--blue-accent); font-size: 18px; flex-shrink: 0; }
.faq-item__a { padding: 0 20px 18px; font-size: 14.5px; line-height: 1.7; color: var(--slate-light); display: none; }
.faq-item.is-open .faq-item__a { display: block; }

/* ── Services ───────────────────────────────────────────────────── */
.services-section { max-width: 1280px; margin: 0 auto; padding: 48px 32px 110px; }
.services-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: sticky;
  top: 100px;
  z-index: 10;
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 0;
  border-radius: 14px;
}
.filter-pill {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid #E2E8F0;
  background: #ffffff;
  color: #334155;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-pill:hover { border-color: var(--blue-accent); }
.filter-pill.is-active { background: var(--navy); color: #ffffff; border-color: var(--navy); }

.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr)); gap: 22px; margin-top: 36px; }
.service-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(7, 29, 54, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(7, 29, 54, 0.12); border-color: #BFDBFE; }
.service-card__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.service-card__icon {
  width: 46px; height: 46px; border-radius: 13px;
  color: #ffffff; display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 15px;
}
.service-card__cat { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--slate-light); background: #F1F5F9; padding: 6px 12px; border-radius: 999px; }
.service-card__title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 17.5px; color: var(--navy); line-height: 1.3; }
.service-card__desc { font-size: 14px; line-height: 1.65; color: var(--slate-light); }
.service-card__link {
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease, color 0.2s ease;
}
.service-card__link:hover { color: var(--green); gap: 10px; }

/* ── Feedback & Certifications / Reports & Contact (shared) ──────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: 24px; margin-top: 48px; }
.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 4px 24px rgba(7, 29, 54, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(7, 29, 54, 0.12); }
.testimonial-card__quote { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 44px; line-height: 0.6; color: var(--blue-accent); font-weight: 800; }
.testimonial-card__text { margin: 0; font-size: 15.5px; line-height: 1.75; color: #334155; text-wrap: pretty; }
.testimonial-card__author { display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 8px; border-top: 1px solid #F1F5F9; }
.testimonial-card__avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, #0C5488, var(--green));
  color: #ffffff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; flex-shrink: 0;
}
.testimonial-card__meta { display: flex; flex-direction: column; }
.testimonial-card__name { font-weight: 700; font-size: 14.5px; color: var(--navy); }
.testimonial-card__role { font-size: 13px; color: var(--slate-light); }

.cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 24px; margin-top: 52px; }
.cert-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cert-card:hover { transform: translateY(-5px); box-shadow: 0 16px 36px rgba(7, 29, 54, 0.1); }
.cert-card__badge {
  width: 54px; height: 54px; border-radius: 15px; color: #ffffff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 13px;
}
.cert-card__title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 18px; color: var(--navy); }
.cert-card__desc { font-size: 14px; line-height: 1.65; color: var(--slate-light); }

.doc-status { font-size: 12.5px; font-weight: 600; color: #94A3B8; display: none; }
body.is-admin .doc-status { display: block; }
.doc-actions { margin-top: auto; display: flex; gap: 10px; flex-wrap: wrap; }
.btn-dl {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 11px; border: none;
  background: var(--navy); color: #ffffff;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 13.5px;
  cursor: pointer; transition: background 0.2s ease, transform 0.2s ease;
}
.btn-dl:hover { background: var(--green); transform: translateY(-2px); }
.btn-ul {
  display: none; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 11px; border: 1px dashed #94A3B8;
  background: transparent; color: var(--slate);
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 13.5px;
  cursor: pointer; transition: border-color 0.2s ease, color 0.2s ease;
}
.btn-ul:hover { border-color: var(--blue-accent); color: var(--blue-accent); }
body.is-admin .btn-ul { display: inline-flex; }
.btn-view {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 11px; border: 1px solid var(--border);
  background: #ffffff; color: var(--ink); text-decoration: none;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 13.5px;
  cursor: pointer; transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.btn-view:hover { border-color: var(--blue-accent); color: var(--blue-accent); transform: translateY(-2px); }
.doc-card__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}
.admin-note { display: none; margin: 24px 0 0; font-size: 12.5px; color: #94A3B8; line-height: 1.6; max-width: 680px; }
body.is-admin .admin-note { display: block; }

.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)); gap: 20px; }
.trust-card { background: #ffffff; border: 1px solid var(--border); border-radius: 18px; padding: 28px 24px; display: flex; flex-direction: column; gap: 8px; text-align: center; align-items: center; }
.trust-card__num { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 26px; color: var(--green); }
.trust-card__label { font-size: 13.5px; color: var(--slate-light); line-height: 1.5; }

.admin-toggle {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #E2E8F0;
  background: rgba(255, 255, 255, 0.95);
  color: var(--slate-light);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(7, 29, 54, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
body.is-admin .admin-toggle { color: var(--green); }

/* ── Reports & Contact: document library ──────────────────────── */
.doc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 24px; margin-top: 48px; }
.doc-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(7, 29, 54, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.doc-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(7, 29, 54, 0.12); }
.doc-card__thumb { height: 170px; position: relative; background: var(--navy); }
.doc-card__tag {
  position: absolute; top: 14px; left: 14px;
  padding: 6px 13px; border-radius: 999px;
  background: rgba(7, 29, 54, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #ffffff; font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  pointer-events: none;
}
.doc-card__body { padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.doc-card__title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 17px; color: var(--navy); line-height: 1.35; }
.doc-card__desc { font-size: 14px; line-height: 1.65; color: var(--slate-light); }

/* ── Contact section ───────────────────────────────────────────── */
.contact-section { background: #ffffff; border-top: 1px solid var(--border); }
.contact-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
  gap: 64px;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info h2 { margin: 0; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: clamp(26px, 3vw, 40px); color: var(--navy); text-wrap: pretty; }
.contact-info > p { margin: 0; font-size: 16px; line-height: 1.7; color: var(--slate); }
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.contact-item { display: flex; gap: 16px; align-items: center; background: var(--bg); border-radius: 14px; padding: 18px 20px; }
.contact-item.align-start { align-items: flex-start; }
.contact-item__icon { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-weight: 800; flex-shrink: 0; }
.contact-item__body { display: flex; flex-direction: column; gap: 2px; }
.contact-item__label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; color: var(--slate-light); }
.contact-item__value { font-weight: 600; font-size: 15px; color: var(--navy); }
.contact-item__value a { color: var(--navy); }
.contact-item__phones { display: flex; gap: 14px; flex-wrap: wrap; }
.contact-item__phones a { font-weight: 600; font-size: 15px; color: var(--navy); }
.contact-offices { display: flex; flex-direction: column; gap: 10px; }
.contact-office { font-size: 14px; line-height: 1.6; color: #0F172A; }
.contact-office strong { color: var(--navy); }
.contact-map { height: 240px; border-radius: 18px; overflow: hidden; border: 1px solid var(--border); position: relative; background: var(--border); }

.contact-form-panel { background: var(--bg); border: 1px solid var(--border); border-radius: 24px; padding: clamp(28px, 4vw, 44px); display: flex; flex-direction: column; gap: 18px; align-self: start; }
.contact-form-panel h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 20px; color: var(--navy); margin: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form-panel input,
.contact-form-panel select,
.contact-form-panel textarea {
  padding: 15px 18px;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  background: #ffffff;
  color: #0F172A;
  width: 100%;
}
.contact-form-panel textarea { resize: vertical; }
.btn-submit {
  padding: 16px 28px;
  border-radius: 13px;
  border: none;
  background: linear-gradient(120deg, var(--green), var(--blue-accent));
  background-size: 160% 160%;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(14, 138, 99, 0.3);
  transition: background-position 0.4s ease, transform 0.2s ease;
}
.btn-submit:hover { background-position: 100% 0; transform: translateY(-2px); }
.form-note { font-size: 12.5px; color: #94A3B8; line-height: 1.5; }
.form-success { display: flex; flex-direction: column; gap: 12px; align-items: center; text-align: center; padding: 40px 0; }
.form-success__icon { width: 64px; height: 64px; border-radius: 50%; background: #EAF5F0; color: var(--green); display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 800; }
.form-success h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 22px; color: var(--navy); margin: 0; }
.form-success p { font-size: 15px; color: var(--slate-light); max-width: 340px; line-height: 1.6; margin: 0; }
.btn-reset { margin-top: 8px; padding: 12px 24px; border-radius: 12px; border: 1px solid #E2E8F0; background: #ffffff; color: var(--navy); font-weight: 600; font-size: 14px; cursor: pointer; }

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .page-hero__inner { padding: 140px 20px 70px; }
  .tech-hero__content { padding: 130px 20px 28px; }
  .tech-hero__tabs-wrap { padding: 0 20px 32px; }
  .tech-overview,
  .tech-method,
  .services-section,
  .cta-row,
  .contact-grid { padding-left: 20px; padding-right: 20px; }
  .cta-row__panel { padding: 36px 24px; }
}
