@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700&family=Inter:wght@400;500;600&display=swap');

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

:root {
  --bg:           #0B1020;
  --bg-secondary: #12182B;
  --bg-card:      #182033;
  --accent:       #2D8CFF;
  --accent-2:     #4FD1C5;
  --text:         #F4F7FB;
  --text-muted:   #B8C2D6;
  --border:       #2A3550;

  --font-heading: 'Sora', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --max-width:   1200px;
  --section-y:   clamp(4rem, 8vw, 7rem);
  --gutter:      clamp(1rem, 4vw, 1.5rem);
  --radius-card: 20px;
  --radius-btn:  999px;
  --transition:  0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul[role="list"] { list-style: none; }
address { font-style: normal; }

/* ── SKIP LINK ─────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  font-size: 0.875rem;
  z-index: 999;
  transition: top 0.15s;
}
.skip-link:focus { top: 0; outline: 2px solid #fff; outline-offset: 2px; }

/* ── CONTAINER ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ── TYPOGRAPHY ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: var(--text-muted);
  max-width: 640px;
  margin-top: 0.75rem;
  line-height: 1.7;
}
.section-subtitle--center { margin-inline: auto; text-align: center; }

/* ── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition),
              background var(--transition), border-color var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover {
  background: #1a7df5;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,140,255,0.35);
}

.btn--secondary { background: transparent; color: var(--text); border-color: var(--border); }
.btn--secondary:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ── NAVIGATION ────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: box-shadow var(--transition);
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: rgba(18, 24, 43, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity var(--transition);
}
.site-header.scrolled::before {
  opacity: 1;
}
.site-header.scrolled {
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.1rem;
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.nav__logo-accent { color: #D31145; /* color: var(--accent); */ }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}
.nav__link:hover, .nav__link--active { color: var(--text); }
.nav__link:hover::after, .nav__link--active::after { transform: scaleX(1); }
.nav__link:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 3px; }

.nav__cta-item .btn { padding: 0.6rem 1.3rem; font-size: 0.875rem; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  position: relative;
  z-index: 201;
}
.nav__hamburger:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav--open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav--open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav--open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── FOOTER ────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding-top: 4rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.footer__col--brand .nav__logo { display: inline-block; margin-bottom: 0.875rem; }

.footer__tagline {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-2);
  margin-bottom: 0.625rem;
  letter-spacing: 0.03em;
}
.footer__desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

.footer__heading {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a { font-size: 0.875rem; color: var(--text-muted); transition: color var(--transition); }
.footer__links a:hover { color: var(--accent); }
.footer__links a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 2px; }

.footer__col--contact { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col--contact a,
.footer__col--contact span { font-size: 0.875rem; color: var(--text-muted); transition: color var(--transition); }
.footer__col--contact a:hover { color: var(--accent); }

.footer__bottom { margin-top: 3rem; padding-block: 1.5rem; border-top: 1px solid var(--border); }
.footer__bottom p { font-size: 0.8125rem; color: var(--text-muted); text-align: center; }

/* ── SECTION UTILITY ───────────────────────────────────── */
.section { padding-block: var(--section-y); }
.section--alt { background: var(--bg-secondary); }
.section__header { margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.section__header--center { text-align: center; }
.section__header--center .section-subtitle { margin-inline: auto; }
.section__cta { text-align: center; margin-top: 2.5rem; }

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 65% 25%, rgba(45,140,255,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 45% 40% at 15% 75%, rgba(79,209,197,0.05) 0%, transparent 55%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.hero__title { margin-bottom: 1.25rem; }
.hero__title .accent { color: var(--accent); }
.hero__lead { font-size: clamp(1rem, 1.8vw, 1.1rem); color: var(--text-muted); margin-bottom: 0.875rem; max-width: 560px; line-height: 1.7; }
.hero__body { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: 2rem; max-width: 520px; line-height: 1.75; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.25rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.trust-pill {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(42,53,80,0.5);
  border: 1px solid var(--border);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-btn);
}

.hero__visual { position: relative; }
.hero__img-placeholder {
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.8125rem;
  text-align: center;
  padding: 2rem;
}
.hero__img-placeholder svg { opacity: 0.25; }

.hero__float-card {
  position: absolute;
  background: rgba(24,32,51,0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
}
.hero__float-card--1 { bottom: 8%; left: -4%; }
.hero__float-card--2 { top: 8%; right: -2%; }
.float-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-2); flex-shrink: 0; }

/* ── PAGE HERO (inner pages) ───────────────────────────── */
.page-hero {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background: var(--bg-secondary);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero .section-label { display: block; }
.page-hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0.875rem auto 0;
  line-height: 1.7;
}

/* ── STAT ROW ──────────────────────────────────────────── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
.stat-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(45,140,255,0.1);
  border: 1px solid rgba(45,140,255,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.stat-card__icon svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.stat-card__value {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 0.375rem;
}
.stat-card__label { font-size: 0.875rem; color: var(--text-muted); font-weight: 500; line-height: 1.4; }
.stat-row__note { text-align: center; font-size: 0.875rem; color: var(--text-muted); margin-top: 2rem; }

/* ── SERVICE CARDS (overview grid) ────────────────────── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.35); border-color: rgba(45,140,255,0.3); }
.service-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(45,140,255,0.1);
  border: 1px solid rgba(45,140,255,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-card__icon svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.service-card__title { font-family: var(--font-heading); font-size: 1.0625rem; font-weight: 700; }
.service-card__body { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; flex: 1; }

/* ── AUDIENCE CARDS ────────────────────────────────────── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.audience-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.audience-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(0,0,0,0.3); border-color: rgba(79,209,197,0.25); }
.audience-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(79,209,197,0.1);
  border: 1px solid rgba(79,209,197,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.audience-card__icon svg { width: 22px; height: 22px; stroke: var(--accent-2); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.audience-card__title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; }
.audience-card__body { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* ── WHY PRIME2 ────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.why__body { font-size: 1rem; color: var(--text-muted); line-height: 1.8; }
.why__body p + p { margin-top: 1.25rem; }
.why-cards { display: flex; flex-direction: column; gap: 1rem; }
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  transition: transform var(--transition);
}
.why-card:hover { transform: translateX(4px); }
.why-card__title { font-family: var(--font-heading); font-size: 0.9375rem; font-weight: 700; margin-bottom: 0.25rem; }
.why-card__body { font-size: 0.875rem; color: var(--text-muted); }

/* ── SECURITY BAND ─────────────────────────────────────── */
.security-band {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: var(--section-y);
}
.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.security__body { font-size: 1rem; color: var(--text-muted); line-height: 1.8; margin-top: 1rem; }
.security-tags { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.security-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: border-color var(--transition), color var(--transition);
}
.security-tag:hover { border-color: var(--accent); color: var(--text); }
.security-tag__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* ── PROCESS ───────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 3.5rem;
  left: calc(12.5% + 0.75rem);
  right: calc(12.5% + 0.75rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
  pointer-events: none;
}
.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.process-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
.process-card__number {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
}
.process-card__title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.process-card__body { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* ── TESTIMONIALS ──────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
.testimonial-card__quote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
  position: relative;
  padding-left: 1.25rem;
}
.testimonial-card__quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.5rem;
  font-size: 2.5rem;
  color: var(--accent);
  font-style: normal;
  line-height: 1;
  font-family: var(--font-heading);
}
.testimonial-card__author { display: flex; align-items: center; gap: 1rem; }
.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
  overflow: hidden;
}
.testimonial-card__name { font-weight: 600; font-size: 0.9375rem; }
.testimonial-card__role { font-size: 0.8125rem; color: var(--text-muted); }

/* ── CTA BAND ──────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: clamp(4rem, 7vw, 6rem);
  text-align: center;
}
.cta-band__title { margin-bottom: 1rem; }
.cta-band__body { font-size: 1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 2rem; line-height: 1.75; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ── SERVICE DETAIL (services page) ───────────────────── */
.service-detail { padding-block: var(--section-y); border-bottom: 1px solid var(--border); }
.service-detail:last-of-type { border-bottom: none; }
.service-detail--alt { background: var(--bg-secondary); }
.service-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.service-detail__grid--reverse { direction: rtl; }
.service-detail__grid--reverse > * { direction: ltr; }
.service-detail__content { display: flex; flex-direction: column; gap: 1.25rem; }
.service-detail__icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(45,140,255,0.1);
  border: 1px solid rgba(45,140,255,0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-detail__icon-wrap svg { width: 28px; height: 28px; stroke: var(--accent); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.service-detail__title { font-size: clamp(1.4rem, 2.5vw, 1.875rem); }
.service-detail__body { font-size: 1rem; color: var(--text-muted); line-height: 1.8; }
.service-detail__bullets {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
}
.service-detail__bullets li {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.service-detail__bullets li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.service-detail__visual {
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.8125rem;
  text-align: center;
  padding: 2rem;
}
.service-detail__visual svg { opacity: 0.25; }

/* ── SERVICES INTRO ────────────────────────────────────── */
.services-intro {
  padding-block: clamp(2.5rem, 5vw, 4rem);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.services-intro__inner {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.services-intro__inner p + p { margin-top: 1rem; }

/* ── ABOUT PAGE ────────────────────────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.story__body { font-size: 1rem; color: var(--text-muted); line-height: 1.8; }
.story__body p + p { margin-top: 1.25rem; }
.story__visual {
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.8125rem;
  text-align: center;
  padding: 2rem;
}
.story__visual svg { opacity: 0.25; }

.philosophy-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: clamp(2rem, 4vw, 3rem);
  max-width: 820px;
  margin-inline: auto;
}
.philosophy-card__body { font-size: 1rem; color: var(--text-muted); line-height: 1.8; }
.philosophy-card__body p + p { margin-top: 1rem; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(0,0,0,0.3); }
.team-card__photo {
  aspect-ratio: 4/3;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  padding: 1rem;
}
.team-card__photo svg { opacity: 0.25; }
.team-card__info { padding: 1.5rem; }
.team-card__name { font-family: var(--font-heading); font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.25rem; }
.team-card__title { font-size: 0.75rem; font-weight: 600; color: var(--accent); margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.07em; }
.team-card__bio { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

.diff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.diff-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.diff-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.3); }
.diff-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(45,140,255,0.1);
  border: 1px solid rgba(45,140,255,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.diff-card__icon svg { width: 26px; height: 26px; stroke: var(--accent); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.diff-card__title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.diff-card__body { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ── CONTACT PAGE ──────────────────────────────────────── */
.contact-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.contact-method-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 2rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-method-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
.contact-method-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(45,140,255,0.1);
  border: 1px solid rgba(45,140,255,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.contact-method-card__icon svg { width: 26px; height: 26px; stroke: var(--accent); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.contact-method-card__label { font-family: var(--font-heading); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 0.5rem; }
.contact-method-card__value { font-size: 1rem; font-weight: 600; }
.contact-method-card__value a { color: var(--accent); transition: color var(--transition); }
.contact-method-card__value a:hover { color: var(--text); }

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.875rem; font-weight: 500; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(45,140,255,0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(184,194,214,0.4); }
.form-group select option { background: var(--bg-secondary); color: var(--text); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.8125rem; color: var(--text-muted); margin-top: 0.25rem; }

.contact-info-block { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-block__title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; margin-bottom: 0.625rem; }
.contact-info-block__body { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.75; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; }
.contact-detail__icon {
  width: 40px;
  height: 40px;
  background: rgba(45,140,255,0.1);
  border: 1px solid rgba(45,140,255,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail__icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.contact-detail__label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 0.2rem; }
.contact-detail__value { font-size: 0.9375rem; font-weight: 500; }
.contact-detail__value a { color: var(--accent); transition: color var(--transition); }
.contact-detail__value a:hover { color: var(--text); }

.service-area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.service-area__body { font-size: 1rem; color: var(--text-muted); line-height: 1.8; margin-top: 1rem; }
.area-placeholder {
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.8125rem;
  text-align: center;
  padding: 2rem;
}
.area-placeholder svg { opacity: 0.25; }

/* ── FAQ ACCORDION ─────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; max-width: 820px; margin-inline: auto; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}
.faq-item__trigger:hover { color: var(--accent); }
.faq-item__trigger:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  transition: transform 0.3s ease;
}
.faq-item--open .faq-icon { transform: rotate(45deg); }
.faq-item__body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item--open .faq-item__body { max-height: 500px; }
.faq-item__body p { padding: 0 1.5rem 1.25rem; font-size: 0.9375rem; color: var(--text-muted); line-height: 1.75; }

/* ── FORM SUCCESS STATE ────────────────────────────────── */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success--visible { display: block; }
.form-success__icon {
  width: 56px;
  height: 56px;
  background: rgba(79,209,197,0.15);
  border: 1px solid rgba(79,209,197,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.form-success__icon svg { stroke: var(--accent-2); fill: none; stroke-width: 2; width: 28px; height: 28px; }
.form-success__title { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.form-success__body { font-size: 0.9375rem; color: var(--text-muted); }

/* ── SITE IMAGES ───────────────────────────────────────── */
.site-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  display: block;
}

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

.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger-children > *.visible { opacity: 1; transform: translateY(0); }
.stagger-children > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.12s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.19s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.26s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.33s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.4s; }

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .service-grid    { grid-template-columns: repeat(2, 1fr); }
  .diff-grid       { grid-template-columns: repeat(2, 1fr); }
  .stat-row        { grid-template-columns: repeat(2, 1fr); }
  .process-grid    { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .footer__grid    { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__col--brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav__hamburger { display: flex; }

  .nav__menu {
    position: fixed;
    inset: 0;
    background: rgba(11, 16, 32, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .nav--open .nav__menu { opacity: 1; pointer-events: all; }
  .nav__menu li { width: 100%; text-align: center; }
  .nav__link { display: block; padding: 1rem 2rem; font-size: 1.2rem; font-weight: 600; }
  .nav__link::after { display: none; }
  .nav__cta-item { margin-top: 1rem; }
  .nav__cta-item .btn { font-size: 1rem; padding: 0.85rem 2.5rem; }

  .hero { min-height: auto; padding-top: 7rem; padding-bottom: 3rem; }
  .hero__grid,
  .why-grid,
  .security-grid,
  .story-grid,
  .service-area-grid,
  .contact-layout { grid-template-columns: 1fr; }
  .service-detail__grid { grid-template-columns: 1fr; }
  .service-detail__grid--reverse { direction: ltr; }
  .hero__float-card { display: none; }
  .hero__actions { flex-direction: column; align-items: flex-start; }

  .service-grid,
  .audience-grid { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: 1fr; }
  .contact-methods { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .service-detail__bullets { grid-template-columns: 1fr; }
  .footer__grid  { grid-template-columns: 1fr; }
  .cta-band__actions { flex-direction: column; align-items: center; }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .stat-row { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
}
