/* =========================================================
   Bytes Vision Technologies — v2 (Modern, vibrant, photo-rich)
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Brand palette */
  --navy: #1B2C5C;
  --navy-deep: #0F1A3D;
  --teal: #0D6E7D;
  --teal-bright: #14A6BD;

  /* Vibrant accents */
  --violet: #6D4AFF;
  --violet-deep: #4F32C9;
  --pink: #FF4D8D;
  --orange: #FF7849;
  --cyan: #00C4D9;
  --yellow: #FFB627;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #6D4AFF 0%, #14A6BD 100%);
  --grad-warm:    linear-gradient(135deg, #FF4D8D 0%, #FF7849 100%);
  --grad-cool:    linear-gradient(135deg, #14A6BD 0%, #0D6E7D 100%);
  --grad-night:   linear-gradient(135deg, #1B2C5C 0%, #4F32C9 100%);
  --grad-sunrise: linear-gradient(135deg, #FFB627 0%, #FF4D8D 100%);

  /* Neutrals */
  --bg: #FFFFFF;
  --bg-alt: #F6F8FC;
  --bg-dark: #0F1A3D;
  --ink: #1A1F36;
  --ink-soft: #4A5278;
  --ink-mute: #8893B0;
  --line: #E6EAF2;

  /* Type */
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Layout */
  --container: 1240px;
  --radius: 18px;
  --radius-lg: 28px;

  /* Shadow */
  --shadow: 0 8px 32px -10px rgba(28, 39, 76, .14);
  --shadow-lg: 0 24px 60px -20px rgba(28, 39, 76, .22);
  --shadow-color: 0 18px 40px -16px rgba(109, 74, 255, .35);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-deep);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); letter-spacing: -0.04em; line-height: 1.05; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 .8em; color: var(--ink-soft); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
}
.section { padding: clamp(48px, 7vw, 84px) 0; position: relative; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--bg-dark); color: #DAE0F0; }
.section--dark h2 { color: #fff; }
.section--dark p { color: rgba(255,255,255,.78); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}

.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.04rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--shadow-color);
}
.btn--primary:hover { box-shadow: 0 24px 50px -16px rgba(109, 74, 255, .55); }
.btn--accent {
  background: var(--grad-warm);
  color: #fff;
  box-shadow: 0 18px 40px -16px rgba(255, 77, 141, .45);
}
.btn--accent:hover { box-shadow: 0 24px 50px -16px rgba(255, 77, 141, .6); }
.btn--ghost {
  background: transparent;
  color: var(--navy-deep);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--violet); color: var(--violet); }
.btn--light {
  background: #fff;
  color: var(--navy-deep);
}
.btn--light:hover { background: #f3f5fa; }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo img { height: 36px; width: auto; }
.nav__menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav__menu > li { position: relative; }
.nav__menu a, .nav__menu .has-sub > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .92rem;
  color: var(--ink);
  border-radius: 10px;
  transition: background .2s var(--ease), color .2s var(--ease);
  cursor: pointer;
}
.nav__menu a:hover, .nav__menu .has-sub:hover > span { background: var(--bg-alt); color: var(--violet); }
.nav__menu a.is-active { color: var(--violet); }
.nav__menu .has-sub > span::after {
  content: "";
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .2s var(--ease);
}
.nav__menu .has-sub:hover > span::after { transform: rotate(225deg) translate(-2px, -2px); }

.submenu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 280px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  list-style: none;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.has-sub:hover .submenu, .has-sub:focus-within .submenu {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.submenu a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: .89rem;
  white-space: nowrap;
}
.submenu a:hover { background: var(--bg-alt); color: var(--violet); }

.nav__cta { display: flex; align-items: center; gap: 10px; }

.nav__toggle {
  display: none;
  width: 42px; height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
}
.nav__toggle span {
  width: 18px; height: 1.8px;
  background: var(--navy-deep);
  position: relative;
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.nav__toggle span::before, .nav__toggle span::after {
  content: "";
  position: absolute; left: 0;
  width: 18px; height: 1.8px;
  background: var(--navy-deep);
  transition: transform .25s var(--ease), top .25s var(--ease);
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }
.nav__toggle.is-open span { background: transparent; }
.nav__toggle.is-open span::before { transform: rotate(45deg); top: 0; }
.nav__toggle.is-open span::after { transform: rotate(-45deg); top: 0; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 10vw, 120px) 0 clamp(64px, 8vw, 100px);
  color: #fff;
  background:
    radial-gradient(60% 80% at 85% 15%, rgba(255, 77, 141, .35), transparent 60%),
    radial-gradient(70% 90% at 15% 85%, rgba(20, 166, 189, .4), transparent 60%),
    radial-gradient(50% 70% at 50% 50%, rgba(109, 74, 255, .3), transparent 70%),
    linear-gradient(135deg, #0F1A3D 0%, #1B2C5C 60%, #4F32C9 100%);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 90%);
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { color: #fff; font-size: clamp(2.4rem, 5.4vw, 4.2rem); margin-bottom: 18px; }
.hero h1 .accent {
  background: linear-gradient(120deg, #FFB627, #FF4D8D, #14A6BD);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  font-size: .82rem;
  color: #fff;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
.hero__tag b {
  background: var(--grad-warm);
  color: #fff;
  padding: 3px 10px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero__lead {
  font-size: 1.1rem;
  max-width: 520px;
  color: rgba(255,255,255,.85);
  margin-bottom: 28px;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  max-width: 540px;
}
.hero__stat .num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero__stat .lbl { font-size: .8rem; color: rgba(255,255,255,.65); margin-top: 4px; }

.hero__visual { position: relative; aspect-ratio: 4 / 5; max-height: 540px; }
.hero__img {
  width: 100%; height: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: 0 32px 80px -20px rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.12);
}
.hero__float {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,.3);
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 6s ease-in-out infinite;
}
.hero__float--1 { top: 20px; left: -28px; animation-delay: 0s; }
.hero__float--2 { bottom: 60px; right: -32px; animation-delay: -3s; }
.hero__float .dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  flex-shrink: 0;
}
.hero__float--1 .dot { background: var(--grad-cool); }
.hero__float--2 .dot { background: var(--grad-warm); }
.hero__float .dot svg { width: 18px; height: 18px; }
.hero__float .lbl { font-size: .72rem; color: var(--ink-mute); font-family: var(--font-display); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.hero__float .val { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--navy-deep); }

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

/* ---------- Trust strip ---------- */
.trust {
  padding: 28px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.trust__inner { display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: center; }
.trust__label { font-family: var(--font-display); font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); }
.trust__logos { display: flex; gap: 36px; flex-wrap: wrap; align-items: center; }
.trust__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--violet), var(--teal-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: .65;
}

/* ---------- Photo Feature Cards ---------- */
.grid {
  display: grid;
  gap: 22px;
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.pcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  color: inherit;
  position: relative;
}
.pcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.pcard__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-alt);
}
.pcard__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.pcard:hover .pcard__media img { transform: scale(1.06); }
.pcard__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 26, 61, .55) 100%);
}
.pcard__tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: rgba(255,255,255,.95);
  color: var(--violet);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.pcard__body { padding: 22px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.pcard__body h3 { font-size: 1.18rem; margin-bottom: 8px; }
.pcard__body p { font-size: .94rem; margin-bottom: 16px; flex: 1; }
.pcard__link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9rem;
  color: var(--violet);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .25s var(--ease);
}
.pcard:hover .pcard__link { gap: 12px; color: var(--pink); }

/* ---------- Icon-only feature cards ---------- */
.icard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  display: block;
  color: inherit;
}
.icard:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.icard__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--grad-primary);
  color: #fff;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.icard:nth-child(3n+2) .icard__icon { background: var(--grad-warm); }
.icard:nth-child(3n+3) .icard__icon { background: var(--grad-cool); }
.icard__icon svg { width: 24px; height: 24px; }
.icard h3 { font-size: 1.08rem; margin-bottom: 6px; }
.icard p { font-size: .92rem; margin: 0; }

/* ---------- Photo split ---------- */
.photo-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}
.photo-split--reverse .photo-split__media { order: 2; }
.photo-split__media {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.photo-split__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.photo-split__content h2 { margin-bottom: 14px; }
.photo-split__content p { font-size: 1.02rem; }
.photo-split__list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 14px; }
.photo-split__list li { display: flex; gap: 12px; align-items: flex-start; }
.photo-split__list .check {
  width: 24px; height: 24px;
  border-radius: 8px;
  background: var(--grad-primary);
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.photo-split__list .check svg { width: 14px; height: 14px; }
.photo-split__list strong { color: var(--navy-deep); font-family: var(--font-display); font-weight: 600; display: block; font-size: .98rem; margin-bottom: 2px; }
.photo-split__list p { margin: 0; font-size: .92rem; }

/* ---------- Page hero (interior) - vibrant ---------- */
.page-hero {
  padding: clamp(60px, 8vw, 90px) 0 clamp(48px, 6vw, 70px);
  color: #fff;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(70% 80% at 90% 20%, rgba(255, 77, 141, .3), transparent 60%),
    radial-gradient(80% 90% at 10% 90%, rgba(20, 166, 189, .35), transparent 60%),
    linear-gradient(135deg, #0F1A3D 0%, #1B2C5C 50%, #4F32C9 100%);
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 60% 80% at 70% 30%, #000 20%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 70% 30%, #000 20%, transparent 90%);
  pointer-events: none;
}
.page-hero__inner { position: relative; max-width: 760px; }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.85); font-size: 1.08rem; max-width: 620px; }
.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 18px;
  font-family: var(--font-display);
}
.breadcrumb a:hover { color: #fff; }
.breadcrumb span:not(:last-child) { color: rgba(255,255,255,.3); }
.breadcrumb .current { color: #fff; }

/* ---------- Stats band ---------- */
.stat-band {
  background: var(--grad-night);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stat-band::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(255, 77, 141, .35), transparent 60%);
  pointer-events: none;
}
.stat { position: relative; padding-left: 18px; border-left: 2px solid rgba(255,255,255,.15); }
.stat .n {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(120deg, #FFB627, #FF4D8D);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat .l { font-size: .85rem; color: rgba(255,255,255,.75); margin-top: 8px; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 10px; }
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq__item[open] { border-color: var(--violet); box-shadow: var(--shadow); }
.faq__q {
  padding: 18px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy-deep);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+";
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--navy-deep);
  display: grid; place-items: center;
  font-size: 1.2rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.faq__item[open] .faq__q::after {
  content: "\2212";
  background: var(--grad-primary);
  color: #fff;
}
.faq__a {
  padding: 0 22px 18px;
  font-size: .96rem;
  color: var(--ink-soft);
}

/* ---------- CTA ---------- */
.cta-band {
  background: var(--grad-night);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 70%; height: 200%;
  background:
    radial-gradient(circle at 60% 40%, rgba(255, 77, 141, .35), transparent 60%),
    radial-gradient(circle at 30% 70%, rgba(20, 166, 189, .35), transparent 60%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 8px; font-size: 1.8rem; }
.cta-band p { color: rgba(255,255,255,.85); margin: 0; max-width: 520px; }
.cta-band__actions { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.cta-band__actions .btn { width: fit-content; }

/* ---------- Process ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 10px;
}
.step:nth-child(2) .step__num { background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent; }
.step:nth-child(3) .step__num { background: var(--grad-cool); -webkit-background-clip: text; background-clip: text; color: transparent; }
.step:nth-child(4) .step__num { background: var(--grad-sunrise); -webkit-background-clip: text; background-clip: text; color: transparent; }
.step h3 { font-size: 1.04rem; margin-bottom: 6px; }
.step p { font-size: .9rem; margin: 0; }

/* ---------- Testimonial ---------- */
.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.testimonial__quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--navy-deep);
  font-weight: 500;
  margin: 0 0 22px;
}
.testimonial__quote::before {
  content: "\201C";
  display: block;
  font-size: 3rem;
  line-height: .6;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: Georgia, serif;
  margin-bottom: 4px;
}
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
}
.testimonial:nth-child(2) .testimonial__avatar { background: var(--grad-warm); }
.testimonial__name { font-family: var(--font-display); font-weight: 700; color: var(--navy-deep); font-size: .96rem; }
.testimonial__role { font-size: .82rem; color: var(--ink-mute); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: start;
}
.contact-info {
  background: var(--grad-night);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  position: sticky;
  top: 88px;
  overflow: hidden;
}
.contact-info::before {
  content: "";
  position: absolute;
  top: -40%; right: -20%;
  width: 80%; height: 200%;
  background: radial-gradient(circle, rgba(255, 77, 141, .35), transparent 60%);
  pointer-events: none;
}
.contact-info > * { position: relative; }
.contact-info h2 { color: #fff; font-size: 1.5rem; }
.contact-info > p { color: rgba(255,255,255,.85); }
.contact-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 18px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list .ico {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,.1);
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
  backdrop-filter: blur(8px);
}
.contact-list .ico svg { width: 18px; height: 18px; }
.contact-list strong { display: block; font-family: var(--font-display); font-weight: 600; margin-bottom: 2px; font-size: .94rem; }
.contact-list span { font-size: .88rem; color: rgba(255,255,255,.78); display: block; }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .82rem;
  color: var(--navy-deep);
  margin-bottom: 6px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font: inherit;
  font-size: .94rem;
  background: var(--bg);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(109, 74, 255, .12);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-alert {
  padding: 12px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(20, 166, 189, .12), rgba(109, 74, 255, .12));
  color: var(--violet-deep);
  font-size: .9rem;
  margin-bottom: 16px;
  display: none;
}
.form-alert.is-shown { display: block; }

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-dark);
  color: #B8C2DB;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet), var(--pink), var(--cyan), transparent);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer__brand img { height: 36px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer__brand p { color: rgba(255,255,255,.65); max-width: 340px; font-size: .9rem; }
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  display: grid; place-items: center;
  color: #fff;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.footer__social a:hover { background: var(--grad-primary); transform: translateY(-2px); }
.footer__social svg { width: 16px; height: 16px; }

.footer h4 {
  font-family: var(--font-display);
  color: #fff;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: color .2s var(--ease);
}
.footer ul a:hover { color: var(--teal-bright); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.footer__bottom-links { display: flex; gap: 22px; }
.footer__bottom a:hover { color: #fff; }

/* ---------- Legal pages styling ---------- */
.legal { max-width: 820px; margin: 0 auto; }
.legal h2 { font-size: 1.35rem; margin-top: 40px; margin-bottom: 12px; }
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-size: 1.05rem; margin-top: 22px; margin-bottom: 8px; color: var(--navy-deep); }
.legal p, .legal li { font-size: .96rem; color: var(--ink-soft); }
.legal ul { padding-left: 20px; margin-bottom: .8em; }
.legal li { margin-bottom: 6px; }
.legal .meta { font-size: .88rem; color: var(--ink-mute); padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 32px; }

/* ---------- Reveal (JS-safe) ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.js .reveal[data-delay="1"] { transition-delay: .08s; }
.js .reveal[data-delay="2"] { transition-delay: .16s; }
.js .reveal[data-delay="3"] { transition-delay: .24s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 480px; max-height: none; aspect-ratio: 16/12; margin: 0 auto; }
  .hero__float--1 { left: 8px; }
  .hero__float--2 { right: 8px; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .stat-band { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .cta-band { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .photo-split { grid-template-columns: 1fr; }
  .photo-split--reverse .photo-split__media { order: 0; }
}

@media (max-width: 820px) {
  .nav__menu, .nav__cta .btn--ghost { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__menu.is-open {
    display: flex;
    position: absolute;
    top: 68px; left: 12px; right: 12px;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    box-shadow: var(--shadow-lg);
    gap: 4px;
    max-height: calc(100vh - 84px);
    overflow-y: auto;
  }
  .nav__menu.is-open > li { width: 100%; }
  .nav__menu.is-open a, .nav__menu.is-open .has-sub > span { width: 100%; justify-content: space-between; }
  .nav__menu.is-open .submenu {
    position: static; transform: none; opacity: 1; pointer-events: auto;
    box-shadow: none; border: none; background: var(--bg-alt);
    padding: 6px; margin-top: 4px; min-width: 0;
  }
  .nav__cta .btn--primary { padding: 10px 16px; font-size: .85rem; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .stat-band { grid-template-columns: 1fr 1fr; padding: 24px; gap: 18px; }
  .stat .n { font-size: 1.8rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .hero__stats { gap: 16px; }
  .hero__stat .num { font-size: 1.4rem; }
  .hero__float { display: none; }
  .trust__inner { grid-template-columns: 1fr; gap: 14px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .cta-band__actions { width: 100%; }
  .cta-band__actions .btn { width: 100%; justify-content: center; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .section-head { text-align: left; margin-bottom: 28px; }
  .section { padding: clamp(40px, 8vw, 60px) 0; }
  .testimonial { padding: 24px; }
  .contact-form { padding: 22px; }
  .contact-info { padding: 26px; }
}

@media (max-width: 480px) {
  :root { --container: 100%; }
  h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 1.8rem); }
  .container { padding-inline: 16px; }
  .nav { padding: 10px 0; gap: 8px; }
  .nav__logo img { height: 30px; }
  .nav__cta { gap: 6px; }
  .nav__cta .btn--primary { padding: 9px 14px; font-size: .82rem; }
  .nav__toggle { width: 38px; height: 38px; }
  .hero { padding: 56px 0 48px; }
  .hero__lead { font-size: 1rem; }
  .hero__tag { font-size: .76rem; padding: 4px 12px 4px 4px; }
  .hero__visual { max-width: 100%; }
  .hero__stats { grid-template-columns: 1fr 1fr; gap: 14px; }
  .hero__stats > .hero__stat:nth-child(3) { grid-column: span 2; }
  .page-hero { padding: 40px 0 32px; }
  .page-hero p { font-size: 1rem; }
  .stat-band { padding: 22px 18px; }
  .stat { padding-left: 14px; }
  .stat .n { font-size: 1.6rem; }
  .stat .l { font-size: .78rem; }
  .pcard__body { padding: 18px 18px 20px; }
  .pcard__body h3 { font-size: 1.08rem; }
  .icard { padding: 22px; }
  .photo-split__list strong { font-size: .92rem; }
  .photo-split__list p { font-size: .88rem; }
  .testimonial { padding: 22px; }
  .testimonial__quote { font-size: 1rem; }
  .contact-form { padding: 18px; }
  .contact-info { padding: 22px; }
  .contact-info h2 { font-size: 1.3rem; }
  .cta-band { padding: 28px 22px; }
  .cta-band h2 { font-size: 1.4rem; }
  .footer { padding-top: 48px; }
  .footer__grid { gap: 24px; padding-bottom: 36px; }
  .step { padding: 20px; }
  .faq__q { padding: 14px 16px; font-size: .94rem; }
  .faq__a { padding: 0 16px 14px; font-size: .9rem; }
  .legal h2 { font-size: 1.2rem; margin-top: 28px; }
}

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