/* ==========================================================================
   Progrite Systems Inc. — Clone & Improvement
   Clean corporate light theme. Vanilla CSS, no framework.
   ========================================================================== */

/* ---------- Design tokens ---------- */
/* Professional palette: deep navy primary, cool slate neutrals, a restrained
   teal accent — an enterprise/consulting look. The --blue-* token NAMES are
   reused across the stylesheet, so we redefine their VALUES here to repaint
   the whole site at once. */
:root {
  /* Brand palette — navy / slate-blue */
  --blue-900: #0f1f33;   /* deep navy (dark surfaces, footer) */
  --blue-800: #16314f;
  --blue-700: #1e3a5f;   /* primary brand */
  --blue-600: #275488;
  --blue-500: #356da9;
  --blue-400: #6b94bd;
  --blue-100: #dde7f1;
  --blue-50:  #f1f5f9;

  --accent:     #2c8a86;   /* muted teal accent for highlights */
  --accent-2:   #c08a3e;   /* understated gold for numbers/icons */

  --ink-900: #131c26;
  --ink-700: #2f3a47;
  --ink-500: #5a6776;
  --ink-300: #97a3b2;

  --line:    #e3e8ee;
  --bg:      #ffffff;
  --bg-soft: #f6f8fa;      /* clean cool off-white */
  --bg-card: #ffffff;

  --white: #ffffff;

  /* Effects — restrained corners + navy-tinted shadows */
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 10px rgba(15, 31, 51, 0.06);
  --shadow:    0 14px 34px rgba(15, 31, 51, 0.10);
  --shadow-lg: 0 26px 64px rgba(15, 31, 51, 0.15);

  --gradient-blue: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-500) 100%);
  --gradient-soft: linear-gradient(160deg, var(--blue-50) 0%, #ffffff 60%);

  --container: 1180px;
  --header-h: 76px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font:      "Space Grotesk", "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }

body {
  font-family: var(--font);
  color: var(--ink-700);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 { color: var(--ink-900); line-height: 1.2; font-weight: 700; letter-spacing: -0.02em; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding-block: 96px; }
.section--soft { background: var(--bg-soft); }
.section--tight { padding-block: 64px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-100);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); margin-bottom: 16px; }
.section-head p { color: var(--ink-500); font-size: 1.06rem; }

.lead { font-size: 1.12rem; color: var(--ink-500); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.97rem;
  padding: 14px 26px;
  border-radius: 8px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s;
  white-space: nowrap;
  cursor: pointer;
}
.btn svg { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary {
  background: var(--gradient-blue);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(30, 58, 95, 0.30);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(30, 58, 95, 0.40); }

.btn--ghost {
  background: var(--white);
  color: var(--blue-700);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover { transform: translateY(-3px); border-color: var(--blue-400); box-shadow: var(--shadow-sm); }

.btn--light {
  background: rgba(255,255,255,0.14);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.30);
  backdrop-filter: blur(6px);
}
.btn--light:hover { background: rgba(255,255,255,0.24); transform: translateY(-3px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  color: var(--blue-600);
  font-size: 0.92rem;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.topbar {
  background: var(--blue-900);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  height: 42px;
}
.topbar a { transition: color .2s; }
.topbar a:hover { color: var(--white); }
.topbar__contact { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.topbar__contact span { display: inline-flex; align-items: center; gap: 7px; }
.topbar__socials { display: flex; gap: 14px; }
.topbar__socials a { display: grid; place-items: center; }
.topbar__socials svg { width: 16px; height: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s, border-color .3s, background .3s;
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  border-color: var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink-900);
  letter-spacing: -0.03em;
}
.brand__mark {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--gradient-blue);
  display: grid; place-items: center;
  color: var(--white);
  box-shadow: 0 6px 16px rgba(30, 58, 95,.35);
}
.brand__mark svg { width: 22px; height: 22px; }
.brand span b { color: var(--blue-600); }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu > li > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-700);
  border-radius: 10px;
  transition: color .2s, background .2s;
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a { color: var(--blue-700); background: var(--blue-50); }
.nav-menu .caret { width: 14px; height: 14px; transition: transform .25s; }

/* Dropdowns */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 250px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.dropdown--wide { min-width: 290px; }
.has-dropdown:hover > .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.has-dropdown:hover > a .caret { transform: rotate(180deg); }
.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-700);
  transition: background .18s, color .18s, padding .18s;
}
.dropdown a:hover { background: var(--blue-50); color: var(--blue-700); padding-left: 16px; }

.nav-cta { display: flex; align-items: center; gap: 12px; }

/* Hamburger */
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink-900); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: var(--gradient-soft);
  overflow: hidden;
  padding-block: 90px 110px;
}
.hero::before {
  content: "";
  position: absolute;
  top: -160px; right: -160px;
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(47,134,224,0.16), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -200px; left: -140px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(0,180,166,0.12), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.7rem);
  margin-bottom: 22px;
}
.hero h1 .grad {
  background: linear-gradient(120deg, var(--blue-600), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p { font-size: 1.14rem; color: var(--ink-500); max-width: 540px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }
.hero-trust { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero-trust .avatars { display: flex; }
.hero-trust .avatars span {
  width: 42px; height: 42px; border-radius: 50%;
  border: 3px solid var(--white);
  margin-left: -12px;
  background: var(--gradient-blue);
  display: grid; place-items: center;
  color: var(--white); font-weight: 700; font-size: 0.85rem;
  box-shadow: var(--shadow-sm);
}
.hero-trust .avatars span:first-child { margin-left: 0; }
.hero-trust .trust-badge {
  width: 44px; height: 44px; flex: none;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--blue-50);
  color: var(--accent);
  border: 1px solid var(--blue-100);
}
.hero-trust .trust-badge svg { width: 24px; height: 24px; }
.hero-trust small { color: var(--ink-500); display: block; font-size: 0.85rem; }
.hero-trust b { color: var(--ink-900); }

/* Hero visual */
.hero-visual { position: relative; }
.hero-visual .photo {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 4.4;
  width: 100%;
  object-fit: cover;
  background: var(--blue-100);
}
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.float-card .ico {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; color: var(--white); flex: none;
}
.float-card strong { display: block; color: var(--ink-900); font-size: 1.1rem; line-height: 1.1; }
.float-card small { color: var(--ink-500); font-size: 0.8rem; }
.float-card--tl { top: 26px; left: -28px; animation: floaty 5s ease-in-out infinite; }
.float-card--br { bottom: 34px; right: -26px; animation: floaty 5s ease-in-out infinite .8s; }
.float-card--tl .ico { background: var(--gradient-blue); }
.float-card--br .ico { background: linear-gradient(135deg, var(--accent), #06d6c0); }

@keyframes floaty {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- Brand strip / logos ---------- */
.logos { border-block: 1px solid var(--line); background: var(--white); }
.logos .container { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: space-between; padding-block: 28px; }
.logos p { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-500); }
.logos-row { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
.logos-row span { font-weight: 700; font-size: 1.15rem; color: var(--ink-300); letter-spacing: -0.02em; transition: color .25s; }
.logos-row span:hover { color: var(--blue-600); }

/* ==========================================================================
   Feature / "We are unique"
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  background: var(--blue-100);
}
.split__media .badge {
  position: absolute;
  bottom: -24px; right: -10px;
  background: var(--gradient-blue);
  color: var(--white);
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow);
  text-align: center;
}
.split__media .badge strong { font-size: 2rem; display: block; line-height: 1; }
.split__media .badge small { font-size: 0.82rem; opacity: 0.9; }

.check-list { display: grid; gap: 16px; margin-block: 26px 30px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; }
.check-list .tick {
  width: 26px; height: 26px; border-radius: 8px; flex: none;
  background: var(--blue-100); color: var(--blue-600);
  display: grid; place-items: center;
}
.check-list .tick svg { width: 15px; height: 15px; }
.check-list b { color: var(--ink-900); }
.check-list p { font-size: 0.95rem; color: var(--ink-500); }

/* ==========================================================================
   Services grid
   ========================================================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cards--4 { grid-template-columns: repeat(4, 1fr); }

.s-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  overflow: hidden;
}
.s-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--gradient-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.s-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.s-card:hover::after { transform: scaleX(1); }
.s-card .ico {
  width: 58px; height: 58px;
  border-radius: 15px;
  display: grid; place-items: center;
  color: var(--white);
  margin-bottom: 20px;
  background: var(--gradient-blue);
  box-shadow: 0 8px 18px rgba(30, 58, 95,.28);
  transition: transform .3s var(--ease);
}
.s-card:hover .ico { transform: rotate(-6deg) scale(1.06); }
.s-card .ico svg { width: 28px; height: 28px; }
.s-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.s-card p { font-size: 0.94rem; color: var(--ink-500); margin-bottom: 18px; }

/* color variants for icons */
.ico--teal   { background: linear-gradient(135deg, #00b4a6, #06d6c0) !important; box-shadow: 0 8px 18px rgba(0,180,166,.30) !important; }
.ico--orange { background: linear-gradient(135deg, #ff7a45, #ff9d6e) !important; box-shadow: 0 8px 18px rgba(255,122,69,.30) !important; }
.ico--purple { background: linear-gradient(135deg, #7c5cff, #9b86ff) !important; box-shadow: 0 8px 18px rgba(124,92,255,.30) !important; }
.ico--pink   { background: linear-gradient(135deg, #ef4f9b, #ff79bd) !important; box-shadow: 0 8px 18px rgba(239,79,155,.30) !important; }
.ico--green  { background: linear-gradient(135deg, #1aa75a, #46c97f) !important; box-shadow: 0 8px 18px rgba(26,167,90,.30) !important; }

/* ==========================================================================
   Stats / counters
   ========================================================================== */
.stats {
  background: var(--blue-900);
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.stats::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(47,134,224,0.25), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(0,180,166,0.20), transparent 45%);
}
.stats .container { position: relative; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat .num {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat .num .suffix { color: var(--accent); }
.stat p { color: rgba(255,255,255,0.72); margin-top: 8px; font-weight: 600; }

/* ==========================================================================
   Industries
   ========================================================================== */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.ind-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, color .3s;
}
/* Image banner */
.ind-card .ind-photo {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.ind-card .ind-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.ind-card:hover .ind-photo img { transform: scale(1.08); }
.ind-card .ind-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,31,51,0) 35%, rgba(15,31,51,0.55) 100%);
}
.ind-card .no {
  position: absolute;
  top: 12px; right: 16px;
  z-index: 2;
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  line-height: 1;
  letter-spacing: -0.04em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}
.ind-card .ind-body { padding: 22px 24px 26px; transition: background .3s; }
.ind-card .ico {
  width: 46px; height: 46px; border-radius: 12px; display:grid; place-items:center;
  background: var(--blue-50); color: var(--blue-600);
  margin: -45px 0 14px; position: relative; z-index: 2;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
  transition: background .3s, color .3s, border-color .3s;
}
.ind-card .ico svg { width: 24px; height: 24px; }
.ind-card h3 { font-size: 1.2rem; margin-bottom: 8px; transition: color .3s; }
.ind-card p { font-size: 0.92rem; color: var(--ink-500); transition: color .3s; }
.ind-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.ind-card:hover .ind-body { background: var(--blue-700); }
.ind-card:hover .ico { background: var(--white); color: var(--blue-700); border-color: var(--white); }
.ind-card:hover h3 { color: var(--white); }
.ind-card:hover p { color: rgba(255,255,255,0.82); }

/* ==========================================================================
   Process / steps
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-top: 14px; }
.step .n {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue-100);
  display: grid; place-items: center;
  font-weight: 700; color: var(--blue-600); font-size: 1.2rem;
  margin-bottom: 18px;
  position: relative; z-index: 1;
}
.steps .step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 41px; left: 54px; right: -12px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--blue-100) 0 8px, transparent 8px 16px);
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: 0.92rem; color: var(--ink-500); }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.t-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.t-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.t-card .quote { color: var(--blue-100); font-size: 3rem; line-height: 0.6; font-weight: 700; }
.t-card p { color: var(--ink-700); margin: 12px 0 22px; }
.t-card .stars { color: #f5a623; letter-spacing: 2px; margin-bottom: 18px; }
.t-author { display: flex; align-items: center; gap: 14px; }
.t-author .pfp { width: 48px; height: 48px; border-radius: 50%; background: var(--gradient-blue); display:grid; place-items:center; color:#fff; font-weight:700; }
.t-author b { display: block; color: var(--ink-900); }
.t-author small { color: var(--ink-500); }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq { display: grid; gap: 14px; max-width: 820px; margin-inline: auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition: box-shadow .25s, border-color .25s;
}
.faq-item.open { box-shadow: var(--shadow-sm); border-color: var(--blue-100); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  text-align: left;
  font-weight: 700;
  color: var(--ink-900);
  font-size: 1.05rem;
}
.faq-q .pm {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-600);
  display: grid; place-items: center;
  transition: transform .3s var(--ease), background .3s, color .3s;
}
.faq-item.open .faq-q .pm { transform: rotate(135deg); background: var(--blue-600); color: #fff; }
.faq-q .pm svg { width: 16px; height: 16px; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding: 0 24px 24px; color: var(--ink-500); }

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-band {
  background: var(--gradient-blue);
  border-radius: var(--radius-lg);
  padding: 56px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band::before {
  content: "";
  position: absolute; top: -80px; right: -40px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,0.16), transparent 70%);
  border-radius: 50%;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.7rem, 3vw, 2.4rem); position: relative; }
.cta-band p { color: rgba(255,255,255,0.85); margin-top: 8px; position: relative; max-width: 520px; }
.cta-band .btn-row { display: flex; gap: 14px; flex-wrap: wrap; position: relative; }

/* ==========================================================================
   Page hero (inner pages)
   ========================================================================== */
.page-hero {
  background: var(--blue-900);
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding-block: 80px;
  text-align: center;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(47,134,224,0.30), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(0,180,166,0.22), transparent 50%);
}
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--white); font-size: clamp(2.2rem, 4.5vw, 3.2rem); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.80); max-width: 640px; margin-inline: auto; font-size: 1.08rem; }
.crumbs { display: flex; gap: 8px; justify-content: center; margin-top: 20px; font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.crumbs a:hover { color: var(--white); }
.crumbs span { color: var(--accent); }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.contact-info { display: grid; gap: 20px; }
.info-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform .25s var(--ease), box-shadow .25s;
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.info-card .ico { width: 48px; height: 48px; border-radius: 12px; background: var(--blue-50); color: var(--blue-600); display: grid; place-items: center; flex: none; }
.info-card .ico svg { width: 24px; height: 24px; }
.info-card h4 { font-size: 1.02rem; margin-bottom: 4px; }
.info-card p, .info-card a { color: var(--ink-500); font-size: 0.94rem; display: block; }
.info-card a:hover { color: var(--blue-600); }

.form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--ink-900); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.96rem;
  color: var(--ink-900);
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue-400);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--blue-50);
}
.field .error-msg { color: #e23b54; font-size: 0.82rem; margin-top: 6px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #e23b54; background: #fdf1f3; }
.field.invalid .error-msg { display: block; }
.form-note { font-size: 0.85rem; color: var(--ink-500); margin-top: 14px; }
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: #e9faf3;
  border: 1px solid #b9ecd6;
  color: #0c7a4b;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-weight: 600;
}
.form-success.show { display: flex; }
.form-success svg { width: 22px; height: 22px; flex: none; }

.map-embed { margin-top: 56px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ==========================================================================
   About — values & team
   ========================================================================== */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.value-card .ico { width: 56px; height: 56px; border-radius: 15px; background: var(--gradient-blue); color: #fff; display: grid; place-items: center; margin-bottom: 18px; box-shadow: 0 8px 18px rgba(30, 58, 95,.28); }
.value-card .ico svg { width: 28px; height: 28px; }
.value-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.value-card p { font-size: 0.94rem; color: var(--ink-500); }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { text-align: center; }
.team-card .avatar {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: var(--gradient-soft);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  margin-bottom: 16px;
  overflow: hidden;
  position: relative;
}
.team-card .avatar .initials {
  font-size: 2.4rem; font-weight: 700;
  background: var(--gradient-blue);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.team-card h4 { font-size: 1.08rem; }
.team-card small { color: var(--blue-600); font-weight: 600; }
.team-card .socials { display: flex; gap: 10px; justify-content: center; margin-top: 10px; opacity: 0; transform: translateY(8px); transition: opacity .25s, transform .25s; }
.team-card:hover .socials { opacity: 1; transform: translateY(0); }
.team-card .socials a { width: 32px; height: 32px; border-radius: 9px; background: var(--blue-50); color: var(--blue-600); display: grid; place-items: center; transition: background .2s, color .2s; }
.team-card .socials a:hover { background: var(--blue-600); color: #fff; }
.team-card .socials svg { width: 15px; height: 15px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--blue-900); color: rgba(255,255,255,0.72); padding-block: 70px 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; }
.footer-brand .brand { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 0.94rem; max-width: 320px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,0.08); display: grid; place-items: center; color: rgba(255,255,255,0.8); transition: background .25s, transform .25s, color .25s; }
.footer-socials a:hover { background: var(--blue-600); color: #fff; transform: translateY(-3px); }
.footer-socials svg { width: 18px; height: 18px; }
.footer-col h5 { color: var(--white); font-size: 1rem; margin-bottom: 18px; font-weight: 700; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: 0.93rem; transition: color .2s, padding .2s; }
.footer-col a:hover { color: var(--white); padding-left: 5px; }
.footer-contact li { display: flex; gap: 11px; font-size: 0.92rem; margin-bottom: 12px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--blue-400); flex: none; margin-top: 3px; }
.footer-bottom {
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-block: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.86rem;
}
.footer-bottom a:hover { color: var(--white); }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* Back to top */
.to-top {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient-blue);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s, transform .3s, visibility .3s;
  z-index: 90;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { transform: translateY(-4px); }
.to-top svg { width: 22px; height: 22px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .cards, .cards--4, .ind-grid, .stats-grid, .steps, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse .split__media { order: 0; }
  .hero-visual { max-width: 480px; margin-inline: auto; }
  .values-grid, .t-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps .step:not(:last-child)::after { display: none; }
}

@media (max-width: 860px) {
  .topbar { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s, transform .25s, visibility .25s;
  }
  .nav-menu.open { opacity: 1; visibility: visible; transform: none; }
  .nav-menu > li > a { padding: 14px 12px; border-radius: 10px; justify-content: space-between; }
  .dropdown {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; padding: 0 0 8px 14px;
    min-width: 0;
    max-height: 0; overflow: hidden;
    transition: max-height .3s var(--ease);
  }
  .has-dropdown.open > .dropdown { max-height: 600px; }
  .has-dropdown:hover > .dropdown { opacity: 1; }
  .has-dropdown.open > a .caret { transform: rotate(180deg); }
  .nav-cta .btn { display: none; }
}

@media (max-width: 620px) {
  .section { padding-block: 64px; }
  .cards, .cards--4, .ind-grid, .stats-grid, .steps, .team-grid, .values-grid, .t-grid, .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-band { padding: 36px 26px; }
  .float-card { display: none; }
  .hero { padding-block: 56px 70px; }
  .form-wrap { padding: 26px 20px; }
  .stats-grid { gap: 36px; }
}

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