/* =======================================================
   Verta IT Solutions — shared stylesheet
   Brand palette: charcoal / blue / purple / pink / orange
   ======================================================= */

:root {
  --bg: #060b14;
  --text: #eef2ff;
  --muted: #94a3b8;
  --line: rgba(148, 163, 184, 0.18);

  /* Official brand colors (Verta IT brand guide) */
  --charcoal: #1F2933;
  --blue:     #2F80ED;
  --purple:   #8E2DE2;
  --pink:     #FF3CAC;
  --orange:   #FF8A00;
  --green:    #10b981;

  /* Brand colors as RGB components (for rgba() use) */
  --blue-rgb:   47, 128, 237;
  --purple-rgb: 142, 45, 226;
  --pink-rgb:   255, 60, 172;
  --orange-rgb: 255, 138, 0;

  --card: rgba(255, 255, 255, 0.04);
  --card-strong: rgba(255, 255, 255, 0.96);

  --shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Poppins, Inter, -apple-system, "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left,  rgba(47,128,237,.16), transparent 26%),
    radial-gradient(circle at top right, rgba(255,138,0,.12), transparent 22%),
    linear-gradient(180deg, #0a1020 0%, #060b14 100%);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ---------- Ambient decor ---------- */
.bg-decor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(64px);
  opacity: 0.16;
  animation: float 14s ease-in-out infinite;
}
.orb-1 { width: 320px; height: 320px; background: linear-gradient(135deg, var(--blue), var(--purple)); top: -80px; left: -60px; }
.orb-2 { width: 280px; height: 280px; background: linear-gradient(135deg, var(--pink), var(--orange)); right: -70px; top: 18%; animation-delay: 2s; }
.orb-3 { width: 260px; height: 260px; background: linear-gradient(135deg, var(--blue), var(--orange)); left: 12%; bottom: -70px; animation-delay: 4s; }
@keyframes float {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(12px, -18px); }
  100% { transform: translate(0, 0); }
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at 50% 28%, black 16%, transparent 72%);
  opacity: 0.35;
  z-index: 0;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(6, 11, 20, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: none;
}
.brand .logo-icon {
  height: 76px;
  width: 76px;
  display: block;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.brand .logo-wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  font-family: Poppins, Inter, sans-serif;
  line-height: 1;
}
.brand .wm-row {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
}
.brand .wm-verta {
  font-weight: 600;
  color: #fff;
  font-size: 1.75rem;
  letter-spacing: -0.02em;
}
.brand .wm-it {
  font-weight: 700;
  color: var(--orange);
  font-size: 1.75rem;
  letter-spacing: -0.02em;
}
.brand .wm-tagline {
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--muted);
  text-transform: uppercase;
}
/* Legacy logo class kept for backward compatibility with verta-logo-horizontal.svg */
.brand .logo { height: 60px; width: auto; display: block; }
.nav-links {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 0.95rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links a {
  transition: color 0.15s ease;
  font-weight: 500;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }

.nav-cta { display: flex; align-items: center; gap: 10px; flex: none; }
.burger {
  display: none;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* Mobile nav drawer */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 104px; left: 20px; right: 20px;
    flex-direction: column;
    gap: 4px;
    background: rgba(10, 16, 32, 0.96);
    backdrop-filter: blur(10px);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 12px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 10px 12px;
    border-radius: 10px;
  }
  .nav-links a:hover { background: rgba(255,255,255,0.04); }
  .burger { display: inline-flex; }
  .nav-cta .btn { display: none; }
  .nav-cta .burger { display: inline-flex; }
}
@media (max-width: 480px) {
  .brand .logo { height: 58px; }
  .brand .logo-icon { height: 58px; width: 58px; border-radius: 12px; }
  .brand .wm-verta, .brand .wm-it { font-size: 1.4rem; }
  .brand .wm-tagline { display: none; }
  .brand { gap: 12px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  font-size: 0.96rem;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  box-shadow: 0 14px 34px rgba(47, 128, 237, 0.22);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(47, 128, 237, 0.3);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); }
.btn-accent {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: #fff;
  box-shadow: 0 14px 34px rgba(255, 138, 0, 0.22);
}

/* ---------- Hero ---------- */
.hero { padding: 86px 0 60px; text-align: center; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.92rem;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.12);
}

h1 {
  margin: 20px auto 0;
  max-width: 920px;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
  color: #fff;
}
.gradient-text {
  background: linear-gradient(90deg, #ffffff 0%, #dbeafe 28%, #93c5fd 55%, #c084fc 78%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lead {
  max-width: 820px;
  margin: 20px auto 0;
  color: var(--muted);
  line-height: 1.85;
  font-size: 1.08rem;
}
.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Sections ---------- */
.section { padding: 76px 0; }
.eyebrow {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.74rem;
  font-weight: 800;
}
.section h2 {
  margin: 14px 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  color: #fff;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, #ffffff 0%, #dbeafe 28%, #a5b4fc 62%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-copy {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 780px;
  font-size: 1.03rem;
}

/* ---------- Grids ---------- */
.grid-3, .grid-2 { display: grid; gap: 22px; margin-top: 34px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 34px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(148,163,184,0.32);
}
.card h3 { margin: 0; color: #fff; font-size: 1.2rem; }
.card p  { margin-top: 12px; color: var(--muted); line-height: 1.75; }
.card ul { margin: 16px 0 0; padding-left: 18px; color: #dbeafe; line-height: 1.8; }

.panel {
  border-radius: 26px;
  border: 1px solid var(--line);
  padding: 28px;
  background: var(--card);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.18);
}
.panel h3 { margin: 0; color: #fff; font-size: 1.32rem; }
.panel p  { margin-top: 14px; color: var(--muted); line-height: 1.8; }
.panel ul { margin: 18px 0 0; padding-left: 18px; color: var(--muted); line-height: 1.9; }

/* ---------- CTA banner ---------- */
.cta {
  margin-top: 40px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.96), rgba(8, 13, 26, 0.99));
  box-shadow: var(--shadow);
  padding: 36px;
  text-align: center;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  margin-top: 34px;
  align-items: stretch;
}
.contact-list { display: grid; gap: 18px; margin-top: 24px; }
.contact-item {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.contact-label {
  color: var(--muted);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.contact-value {
  margin-top: 8px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.65;
}

.form-card {
  background: var(--card-strong);
  color: #0f172a;
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}
.form-card h3 { margin: 0; font-size: 1.4rem; color: #0f172a; }
.form-card p  { margin-top: 12px; color: #64748b; line-height: 1.7; }
form { display: grid; gap: 14px; margin-top: 20px; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 8px;
}
input, textarea, select {
  width: 100%;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid #dbe2ea;
  font: inherit;
  background: #fff;
  color: #0f172a;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(47, 128, 237, 0.18);
}
textarea { min-height: 130px; resize: vertical; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 0.92rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer a {
  color: #cbd5e1;
  border-bottom: 1px dotted rgba(203, 213, 225, 0.4);
  transition: color 0.15s, border-color 0.15s;
}
.footer a:hover { color: #fff; border-bottom-color: #fff; }

/* ---------- Legal / long-form prose ---------- */
.legal {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.72;
}
.legal h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 36px 0 12px;
  color: #fff;
}
.legal p, .legal ul { margin: 0 0 14px; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 6px; }
.legal a {
  color: var(--orange);
  border-bottom: 1px dotted rgba(255, 138, 0, 0.45);
  transition: color 0.15s, border-color 0.15s;
}
.legal a:hover { color: #ffae4a; border-bottom-color: #ffae4a; }
.legal strong { color: #fff; font-weight: 600; }

/* ---------- Hero metric tiles ---------- */
.hero-metrics {
  margin: 44px auto 0;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.metric {
  padding: 18px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  text-align: left;
  position: relative;
  overflow: hidden;
}
.metric::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--blue), var(--purple));
}
.metric:nth-child(2)::before { background: linear-gradient(180deg, var(--purple), var(--pink)); }
.metric:nth-child(3)::before { background: linear-gradient(180deg, var(--pink), var(--orange)); }
.metric:nth-child(4)::before { background: linear-gradient(180deg, var(--orange), #ffb85a); }
.metric-num {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}
.metric-lbl {
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 4px;
  line-height: 1.4;
}

@media (max-width: 720px) { .hero-metrics { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Trust bar ---------- */
.trust-bar {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
  position: relative;
  z-index: 1;
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px 28px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.trust-inner span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.trust-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  flex: none;
}

/* ---------- Service icons ---------- */
.service-icon {
  width: 68px; height: 68px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  box-shadow:
    0 14px 36px rgba(47, 128, 237, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -2px 0 rgba(0, 0, 0, 0.18);
  color: #fff;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.service-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 28% 22%, rgba(255,255,255,0.35), transparent 55%);
  pointer-events: none;
}
.service-icon::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.55), rgba(255,255,255,0) 55%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.service-icon svg {
  width: 32px; height: 32px;
  stroke-width: 2;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.18));
}
.card:hover .service-icon {
  transform: translateY(-3px) rotate(-3deg);
  box-shadow:
    0 20px 44px rgba(47, 128, 237, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -2px 0 rgba(0, 0, 0, 0.18);
}

.card:nth-child(2) .service-icon,
.card:nth-child(5) .service-icon {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  box-shadow:
    0 14px 36px rgba(142, 45, 226, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -2px 0 rgba(0, 0, 0, 0.18);
}
.card:nth-child(2):hover .service-icon,
.card:nth-child(5):hover .service-icon {
  box-shadow:
    0 20px 44px rgba(142, 45, 226, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -2px 0 rgba(0, 0, 0, 0.18);
}
.card:nth-child(3) .service-icon,
.card:nth-child(6) .service-icon {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  box-shadow:
    0 14px 36px rgba(255, 60, 172, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -2px 0 rgba(0, 0, 0, 0.18);
}
.card:nth-child(3):hover .service-icon,
.card:nth-child(6):hover .service-icon {
  box-shadow:
    0 20px 44px rgba(255, 60, 172, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -2px 0 rgba(0, 0, 0, 0.18);
}
.card:nth-child(4) .service-icon {
  background: linear-gradient(135deg, var(--orange), #ffb85a);
  box-shadow:
    0 14px 36px rgba(255, 138, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -2px 0 rgba(0, 0, 0, 0.18);
  color: #2a1402;
}
.card:nth-child(4):hover .service-icon {
  box-shadow:
    0 20px 44px rgba(255, 138, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -2px 0 rgba(0, 0, 0, 0.18);
}

/* ---------- By the Numbers panel (About) ---------- */
.stats-row {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat-tile {
  padding: 28px 22px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--card);
  text-align: center;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.18);
}
.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, #dbeafe 0%, #c084fc 60%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  color: var(--muted);
  margin-top: 6px;
  font-size: 0.92rem;
}

@media (max-width: 760px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Team grid (About) ---------- */
.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 34px;
}
.person {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.person:hover { transform: translateY(-3px); border-color: rgba(148, 163, 184, 0.32); }
.avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.55rem;
  color: #fff;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  box-shadow: 0 10px 30px rgba(47, 128, 237, 0.28);
}
.person:nth-child(2) .avatar { background: linear-gradient(135deg, var(--purple), var(--pink)); box-shadow: 0 10px 30px rgba(142, 45, 226, 0.28); }
.person:nth-child(3) .avatar { background: linear-gradient(135deg, var(--pink), var(--orange)); box-shadow: 0 10px 30px rgba(255, 60, 172, 0.28); }
.person:nth-child(4) .avatar { background: linear-gradient(135deg, var(--orange), #ffb85a); box-shadow: 0 10px 30px rgba(255, 138, 0, 0.28); color: #2a1402; }
.person:nth-child(5) .avatar { background: linear-gradient(135deg, var(--blue), var(--pink)); box-shadow: 0 10px 30px rgba(47, 128, 237, 0.28); }
.person:nth-child(6) .avatar { background: linear-gradient(135deg, var(--purple), var(--orange)); box-shadow: 0 10px 30px rgba(142, 45, 226, 0.28); }
.person h3 { color: #fff; margin: 6px 0 4px; font-size: 1.12rem; }
.role { color: var(--orange); font-size: 0.86rem; font-weight: 700; letter-spacing: 0.04em; margin-bottom: 6px; }
.person p { color: var(--muted); font-size: 0.92rem; line-height: 1.65; margin: 0; }

@media (max-width: 900px) { .team { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .team { grid-template-columns: 1fr; } }

/* ---------- How It Works (steps) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 34px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 28px 24px 24px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.18);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: -18px;
  left: 22px;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(47, 128, 237, 0.35);
  letter-spacing: -0.02em;
}
.step:nth-child(2)::before { background: linear-gradient(135deg, var(--purple), var(--pink)); box-shadow: 0 10px 24px rgba(142, 45, 226, 0.35); }
.step:nth-child(3)::before { background: linear-gradient(135deg, var(--pink), var(--orange)); box-shadow: 0 10px 24px rgba(255, 60, 172, 0.35); }
.step:nth-child(4)::before { background: linear-gradient(135deg, var(--orange), #ffb85a); box-shadow: 0 10px 24px rgba(255, 138, 0, 0.35); color: #2a1402; }
.step h3 { margin: 12px 0 0; color: #fff; font-size: 1.12rem; }
.step p  { margin-top: 10px; color: var(--muted); line-height: 1.7; font-size: 0.96rem; }

@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}
.testimonial {
  position: relative;
  padding: 32px 26px 24px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -10px;
  left: 22px;
  font-size: 4.5rem;
  line-height: 1;
  font-family: Georgia, "Times New Roman", serif;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.testimonial-quote {
  color: #dbeafe;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 20px;
  flex: 1;
}
.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  flex: none;
  background: linear-gradient(135deg, var(--blue), var(--purple));
}
.testimonial:nth-child(2) .testimonial-avatar { background: linear-gradient(135deg, var(--purple), var(--pink)); }
.testimonial:nth-child(3) .testimonial-avatar { background: linear-gradient(135deg, var(--pink), var(--orange)); }
.testimonial-name { color: #fff; font-weight: 700; font-size: 0.95rem; }
.testimonial-role { color: var(--muted); font-size: 0.85rem; }
.stars {
  color: var(--orange);
  letter-spacing: 0.2em;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

@media (max-width: 980px) { .testimonials { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq {
  margin-top: 34px;
  display: grid;
  gap: 12px;
}
.faq details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  padding: 4px 22px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.faq details[open] {
  border-color: rgba(148, 163, 184, 0.32);
  background: rgba(255, 255, 255, 0.05);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 40px 18px 0;
  font-weight: 700;
  font-size: 1.02rem;
  color: #fff;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  line-height: 1;
}
.faq details[open] summary::after {
  content: "\2212";
  transform: translateY(-50%) rotate(180deg);
}
.faq-body {
  padding: 0 0 20px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.98rem;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-3, .grid-2, .split, .contact-grid, .row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1160px); }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .panel, .card, .form-card, .cta { padding: 24px; }
  h1 { font-size: 2.45rem; }
  .hero { padding: 60px 0 40px; }
  .section { padding: 56px 0; }
}
