
/* ── Variables ── */
:root {
  --blue:    #0c6cfe;
  --blue-d:  #0851c4;
  --blue-l:  #3d8eff;
  --blue-xl: #6eb3ff;
  --gold:    #c9a84c;
  --gold-l:  #e2c06a;
  --gold-d:  #a07c2a;

  --bg:   #08080a;
  --bg2:  #0f0f12;
  --bg3:  #161619;
  --bg4:  #1c1c21;

  --glass:      rgba(255,255,255,0.04);
  --glass-md:   rgba(255,255,255,0.06);
  --border:     rgba(255,255,255,0.08);
  --border-md:  rgba(255,255,255,0.12);

  --t1: #f0ece6;
  --t2: #b8b4ae;
  --t3: #7a7670;

  --r:  14px;
  --r-sm: 10px;
  --tr: .3s ease;
  --tr-spring: .45s cubic-bezier(.34,1.56,.64,1);

  --ff-head: 'Playfair Display', Georgia, serif;
  --ff-body: 'Inter', system-ui, sans-serif;

  --hw: 1240px;
  --hh: 70px;

  --glow-blue:    0 0 40px rgba(12,108,254,.18);
  --glow-blue-sm: 0 0 20px rgba(12,108,254,.12);
  --shadow-card:  0 32px 72px rgba(0,0,0,.55);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  background: var(--bg);
  color: var(--t1);
  font-family: var(--ff-body);
  font-size: 15px;
  line-height: 1.72;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── Typography ── */
h1, h2, h3 { font-family: var(--ff-head); line-height: 1.08; }
h1 { font-size: clamp(2.7rem, 5.2vw, 4.4rem); font-weight: 900; letter-spacing: -.02em; }
h2 { font-size: clamp(2rem, 3.6vw, 3.1rem); font-weight: 700; letter-spacing: -.02em; }
h3 { font-size: 1.22rem; font-weight: 700; letter-spacing: -.01em; }

/* ── FONT CHANGE: removed italic from em ── */
em { font-style: normal; color: var(--blue-l); }

/* ── Layout Utilities ── */
.wrap { max-width: var(--hw); margin: 0 auto; padding: 0 clamp(20px, 4.5vw, 64px); }
.sec  { padding: clamp(80px, 9vw, 140px) 0; position: relative; }
.label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--blue-l);
  margin-bottom: 16px;
  display: block;
}
.sec__sub {
  color: var(--t2);
  margin-top: 14px;
  font-size: .95rem;
  max-width: 560px;
  line-height: 1.75;
}

/* ── Decorative section dividers ── */
.services.sec::before,
.transforms.sec::before,
.reviews.sec::before,
.about.sec::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.07), transparent);
}

/* ── Glassmorphism ── */
.glass {
  background: var(--glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--r);
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 10px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .02em;
  cursor: pointer;
  border: none;
  transition: transform .28s cubic-bezier(.34,1.56,.64,1),
              box-shadow .28s ease,
              background .22s ease;
}
.btn--blue {
  background: linear-gradient(135deg, #1e7fff 0%, #0c6cfe 55%, #0851c4 100%);
  color: #fff;
  box-shadow: 0 6px 28px rgba(12,108,254,.42), 0 0 0 1px rgba(12,108,254,.18);
}
.btn--blue:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 14px 42px rgba(12,108,254,.58), 0 0 0 1px rgba(12,108,254,.28), 0 0 60px rgba(12,108,254,.12);
}
.btn--blue:active { transform: translateY(-1px) scale(1.005); }
.btn--ghost {
  background: transparent;
  color: var(--t1);
  border: 1px solid var(--border-md);
}
.btn--ghost:hover {
  border-color: var(--blue-l);
  color: var(--blue-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(12,108,254,.15);
}
.btn--full { width: 100%; padding: 16px; }

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--hh);
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition:
    background .6s cubic-bezier(.4,0,.2,1),
    backdrop-filter .6s cubic-bezier(.4,0,.2,1),
    border-color .6s cubic-bezier(.4,0,.2,1),
    box-shadow .6s cubic-bezier(.4,0,.2,1);
}
.hdr.scrolled {
  background: rgba(4,4,7,.9);
  backdrop-filter: blur(36px);
  -webkit-backdrop-filter: blur(36px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 1px 0 rgba(255,255,255,.04), 0 20px 60px rgba(0,0,0,.8),
              inset 0 -1px 0 rgba(12,108,254,.06);
}

/* Scroll progress bar */
.hdr__bar {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--blue-d), var(--blue-l), rgba(61,142,255,.3));
  border-radius: 0 2px 2px 0;
  opacity: 0;
  box-shadow: 0 0 14px rgba(12,108,254,.65);
  transition: opacity .5s ease;
}
.hdr.scrolled .hdr__bar { opacity: 1; }

.hdr__in {
  height: var(--hh);
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.hdr__logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.hdr__logo-img { height: 46px; width: auto; }
.hdr__logo-fb {
  font-family: var(--ff-head);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 9px;
  letter-spacing: -.01em;
}
.hdr__logo-fb::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(12,108,254,.8);
  transition: box-shadow .4s ease;
}
.hdr.scrolled .hdr__logo-fb::before {
  box-shadow: 0 0 18px rgba(12,108,254,1), 0 0 36px rgba(12,108,254,.5);
}

/* Nav */
.hdr__nav { display: flex; align-items: center; gap: 30px; margin: 0 auto; }
.hdr__nav a {
  font-size: .84rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  transition: color .28s ease;
  position: relative;
  padding-bottom: 4px;
}
.hdr__nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: linear-gradient(90deg, var(--blue), var(--blue-l));
  border-radius: 2px;
  transition: width .32s cubic-bezier(.4,0,.2,1);
}
.hdr__nav a:hover { color: #fff; }
.hdr__nav a:hover::after { width: 100%; }

.hdr__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .84rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  white-space: nowrap;
  flex-shrink: 0;
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  transition: color .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
}
.hdr__phone:hover {
  color: #fff;
  border-color: rgba(61,142,255,.4);
  background: rgba(12,108,254,.08);
  box-shadow: 0 0 24px rgba(12,108,254,.2);
}
.hdr__phone svg { color: var(--blue-l); flex-shrink: 0; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 23px; height: 2px;
  background: var(--t1);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mnav {
  display: none;
  flex-direction: column;
  background: rgba(4,4,7,.97);
  backdrop-filter: blur(36px);
  -webkit-backdrop-filter: blur(36px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.mnav.open { display: flex; }
.mnav a {
  padding: 15px clamp(20px,4.5vw,64px);
  font-size: .95rem;
  color: rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .25s ease, background .25s ease, padding-left .25s ease;
}
.mnav a:hover { color: #fff; background: rgba(255,255,255,.03); padding-left: calc(clamp(20px,4.5vw,64px) + 8px); }
.mnav a:last-child { border-bottom: none; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--hh) + 72px) 0 96px;
  overflow: hidden;
}

/* Background image */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('https://images.unsplash.com/photo-1607860108855-64acf2078ed9?w=1800&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center 40%;
}
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    rgba(3,3,6,.97) 0%,
    rgba(4,4,10,.90) 42%,
    rgba(4,4,8,.62) 100%);
  pointer-events: none;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 0% 50%, rgba(12,108,254,.10) 0%, transparent 68%),
    radial-gradient(ellipse 40% 60% at 100% 100%, rgba(8,81,196,.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero__in {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.eyebrow {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue-l);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: .88;
}

/* ── FONT CHANGE: removed font-style italic ── */
.hero__tagline {
  font-family: var(--ff-head);
  font-size: clamp(2.5rem, 5.2vw, 4rem);
  font-weight: 900;
  font-style: normal;
  color: var(--blue-l);
  line-height: 1;
  margin: 18px 0 22px;
}

.hero__sub {
  color: rgba(240,236,230,.82);
  font-size: .94rem;
  max-width: 430px;
  margin-bottom: 32px;
  line-height: 1.78;
}

.hero__btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

/* ── Hero Form ── */
.hero__form {
  padding: 36px 30px;
  width: 100%;
  background: rgba(6,6,10,0.78);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 1px solid rgba(61,142,255,.38);
  border-radius: 20px;
  box-shadow:
    0 48px 96px rgba(0,0,0,.6),
    0 0 0 1px rgba(12,108,254,.05),
    inset 0 1px 0 rgba(255,255,255,.07);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
}
.form__title {
  font-family: var(--ff-head);
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #fff 0%, rgba(240,236,230,.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.form__note {
  font-size: .77rem;
  color: var(--t2);
  margin-bottom: 24px;
  letter-spacing: .01em;
  line-height: 1.6;
}

/* Form fields */
.fg { display: flex; flex-direction: column; margin-bottom: 12px; }
.fg input,
.fg select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  color: var(--t1);
  font-family: var(--ff-body);
  font-size: .87rem;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}
.fg input::placeholder { color: rgba(120,116,110,.7); }
.fg input:hover,
.fg select:hover {
  border-color: rgba(61,142,255,.3);
  background: rgba(255,255,255,0.06);
}
.fg input:focus,
.fg select:focus {
  border-color: rgba(12,108,254,.7);
  box-shadow: 0 0 0 3px rgba(12,108,254,.12), 0 0 24px rgba(12,108,254,.06);
  background: rgba(12,108,254,.03);
}
.fg input.err,
.fg select.err { border-color: #c0392b; box-shadow: 0 0 0 3px rgba(192,57,43,.08); }

.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.fg select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a4744' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
  color: var(--t3);
}
.fg select option { background: var(--bg3); }

.form__consent {
  font-size: .67rem;
  color: var(--t3);
  text-align: center;
  margin-top: 10px;
  line-height: 1.55;
}
.form__ok { text-align: center; padding: 36px 16px; }
.ok__icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--blue), var(--blue-d));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 18px;
  color: #fff;
  box-shadow: 0 8px 32px rgba(12,108,254,.45);
}
.form__ok h3 { font-family: var(--ff-head); font-size: 1.6rem; margin-bottom: 10px; }
.form__ok p  { color: var(--t2); }

/* ══════════════════════════════════════
   TRUST BAR
══════════════════════════════════════ */
.trust-bar {
  background: linear-gradient(180deg, rgba(15,15,18,0) 0%, var(--bg2) 22%);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 48px 0;
  position: relative;
}
.trust-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(12,108,254,.3), transparent);
}
.trust-bar__in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
}
.ti {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--t1);
  padding: 12px 16px;
  border-radius: var(--r-sm);
  transition: background .28s ease;
  flex-shrink: 1;
  min-width: 0;
  cursor: default;
}
.ti:hover { background: rgba(255,255,255,.03); }
.ti svg {
  color: var(--blue-xl);
  flex-shrink: 0;
  filter: drop-shadow(0 0 7px rgba(61,142,255,.45));
}
.ti-text { display: flex; flex-direction: column; gap: 2px; }
.ti-text span  { font-size: .87rem; font-weight: 600; color: var(--t1); }
.ti-text small { font-size: .71rem; font-weight: 400; color: var(--t2); }

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.svcs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 56px;
  align-items: stretch;
}
.svc-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, rgba(20,20,26,.96) 0%, rgba(12,12,16,.99) 100%);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--tr-spring),
    box-shadow .38s ease,
    border-color .38s ease;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(61,142,255,.22), transparent);
  transition: opacity .3s ease;
}
.svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(12,108,254,.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .38s ease;
  pointer-events: none;
}
.svc-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 32px 72px rgba(0,0,0,.7), 0 0 0 1px rgba(12,108,254,.2), 0 0 56px rgba(12,108,254,.08);
  border-color: rgba(12,108,254,.22);
}
.svc-card:hover::after { opacity: 1; }

.svc-card--feat {
  background: linear-gradient(160deg,
    rgba(12,108,254,.11) 0%,
    rgba(8,81,196,.06) 45%,
    rgba(12,12,16,.99) 100%);
  border-color: rgba(12,108,254,.3);
  box-shadow: 0 0 56px rgba(12,108,254,.1), inset 0 1px 0 rgba(61,142,255,.14);
}
.svc-card--feat::before {
  background: linear-gradient(90deg, transparent, rgba(61,142,255,.58), transparent);
  opacity: 1;
}
.svc-card--feat::after {
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(12,108,254,.14) 0%, transparent 70%);
  opacity: 1;
}
.svc-card--feat:hover {
  box-shadow: 0 32px 72px rgba(0,0,0,.7), 0 0 0 1px rgba(12,108,254,.42), 0 0 72px rgba(12,108,254,.16);
  border-color: rgba(12,108,254,.46);
}

.feat-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: linear-gradient(135deg, #1e7fff, #0851c4);
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(12,108,254,.45);
}

.svc-card__icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(12,108,254,.18) 0%, rgba(8,81,196,.1) 100%);
  border: 1px solid rgba(12,108,254,.24);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 24px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.svc-card:hover .svc-card__icon {
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 0 28px rgba(12,108,254,.28);
  border-color: rgba(12,108,254,.44);
}

.svc-card h3  { margin-bottom: 10px; }
.svc-card > p { font-size: .86rem; color: var(--t2); margin-bottom: 20px; line-height: 1.68; }

.svc-card ul { display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; }
.svc-card ul li {
  font-size: .82rem;
  color: var(--t2);
  padding-left: 18px;
  position: relative;
  line-height: 1.52;
}
.svc-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue-l);
  font-size: .7rem;
  font-weight: 700;
  top: 2px;
}

.svc-best {
  font-size: .74rem;
  color: var(--t3);
  margin-bottom: 22px;
  line-height: 1.58;
  padding: 11px 14px;
  background: rgba(255,255,255,.03);
  border-radius: 8px;
  border-left: 2px solid rgba(12,108,254,.32);
}
.svc-best strong { color: var(--t2); }

.svc-spacer { flex: 1; min-height: 20px; }

/* Price block */
.svc-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: .77rem;
  font-weight: 500;
  color: var(--t2);
  letter-spacing: .02em;
  padding: 14px 18px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  margin-bottom: 20px;
  transition: border-color .28s ease, background .28s ease;
}
.svc-card:hover .svc-price {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.10);
}

/* ── FONT CHANGE: pricing uses ff-head (Playfair), no accent font ── */
.svc-price strong {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-l);
  letter-spacing: -.03em;
  line-height: 1;
  text-shadow: 0 0 24px rgba(201,168,76,.28);
}
.svc-price--feat                 { background: rgba(12,108,254,.06); border-color: rgba(12,108,254,.22); }
.svc-price--feat strong          { color: #6eb3ff; text-shadow: 0 0 24px rgba(12,108,254,.32); }
.svc-card:hover .svc-price--feat { border-color: rgba(12,108,254,.32); }

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--blue-l);
  transition: color .25s ease, gap .25s ease;
}
.svc-link:hover { color: #fff; gap: 11px; }

/* Bridge line */
.svc-bridge {
  margin-top: 44px;
  padding: 28px 36px;
  border-radius: 16px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.07);
  border-left: 3px solid rgba(12,108,254,.48);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  transition: border-color .3s ease, background .3s ease;
}
.svc-bridge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 0% 50%, rgba(12,108,254,.04) 0%, transparent 70%);
  pointer-events: none;
}
.svc-bridge:hover {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.10);
}
.svc-bridge__text {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 240px;
}
.svc-bridge__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 50px; height: 50px;
  background: rgba(12,108,254,.1);
  border: 1px solid rgba(12,108,254,.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-bridge__text p { font-size: .9rem; color: var(--t2); line-height: 1.62; margin: 0; }

/* ══════════════════════════════════════
   PHOTO / RESULTS GRID
══════════════════════════════════════ */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}
.pg-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,.07);
  aspect-ratio: 16/10;
  cursor: pointer;
  transition: box-shadow .35s ease, border-color .35s ease;
}
.pg-item:hover {
  box-shadow: 0 24px 56px rgba(0,0,0,.55), 0 0 0 1px rgba(12,108,254,.15);
  border-color: rgba(12,108,254,.18);
}
.pg-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.pg-item:hover img { transform: scale(1.05); }
.pg-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,108,254,.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .35s ease;
}
.pg-item:hover::after { opacity: 1; }
.pg-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.9));
  padding: 30px 18px 16px;
  font-size: .76rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: .05em;
  transform: translateY(5px);
  transition: transform .3s ease;
}
.pg-item:hover .pg-label { transform: translateY(0); }

/* ── Before / After Sliders ── */
.ba-wrap {
  position: relative;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}
.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ba-before img,
.ba-after img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
  transform: none !important;
}
.ba-after { clip-path: inset(0 50% 0 0); }

.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  z-index: 5;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ba-handle::before,
.ba-handle::after {
  content: '';
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(255,255,255,.9) 15%,
    rgba(255,255,255,.9) 85%,
    transparent 100%);
}
.ba-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(255,255,255,.06), 0 4px 24px rgba(0,0,0,.5);
  transition: transform .2s ease, box-shadow .2s ease;
}
.ba-wrap:hover .ba-btn {
  transform: scale(1.12);
  box-shadow: 0 0 0 6px rgba(255,255,255,.1), 0 8px 36px rgba(0,0,0,.6);
}
.ba-arrow {
  width: 7px; height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  flex-shrink: 0;
}
.ba-arrow--l { transform: rotate(225deg); }
.ba-arrow--r { transform: rotate(45deg); }
.ba-tag {
  position: absolute;
  top: 14px;
  z-index: 4;
  font-size: .59rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,.52);
  border: 1px solid rgba(255,255,255,.15);
  padding: 5px 11px;
  border-radius: 6px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: none;
}
.ba-tag--l { left: 14px; }
.ba-tag--r { right: 14px; }

/* ══════════════════════════════════════
   REVIEWS
══════════════════════════════════════ */
.rev-meta {
  font-size: .85rem;
  color: var(--t2);
  margin-top: 10px;
  margin-bottom: 36px;
}
.rev-meta strong { color: var(--blue-l); font-size: 1.1rem; }
.rev-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
  cursor: grab;
}
.rev-scroll::-webkit-scrollbar { height: 3px; }
.rev-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.rev-card {
  min-width: 310px;
  max-width: 350px;
  flex-shrink: 0;
  background: linear-gradient(160deg, rgba(22,22,28,.96), rgba(13,13,17,.99));
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  padding: 28px 24px;
  scroll-snap-align: start;
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}
.rev-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0,0,0,.55);
  border-color: rgba(12,108,254,.16);
}
.stars { font-size: .9rem; margin-bottom: 14px; letter-spacing: .06em; }
.rev-card > p {
  font-size: .85rem;
  color: var(--t2);
  line-height: 1.68;
  font-style: italic;
  margin-bottom: 20px;
}
.rev-who strong { display: block; font-size: .86rem; color: var(--t1); }
.rev-who span   { font-size: .74rem; color: var(--t3); }

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about__in {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
}
.about__img-col { display: flex; flex-direction: column; gap: 18px; }
.about__img-wrap {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg3);
  border: 1px solid var(--border);
  box-shadow: 0 32px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(12,108,254,.06);
  transition: box-shadow .4s ease;
}
.about__img-wrap:hover { box-shadow: 0 40px 96px rgba(0,0,0,.65), 0 0 0 1px rgba(12,108,254,.12); }
.about__img-wrap img {
  object-fit: contain; /* no cropping, no stretch */
  background: var(--bg3); /* fills empty space around image */
}
.about__cert {
  padding: 18px 24px;
  text-align: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-top: 1px solid rgba(61, 142, 255, 0.3);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.about__text h2 { margin-bottom: 22px; }
.about__text p  { color: var(--t2); margin-bottom: 16px; font-size: .92rem; line-height: 1.78; }
.about__creds {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .74rem;
  color: var(--t3);
  margin: 26px 0;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ══════════════════════════════════════
   BOTTOM CTA / BQUOTE
══════════════════════════════════════ */
.bquote {
  position: relative;
  border-top: 1px solid rgba(255,255,255,.05);
  overflow: hidden;
}
.bquote.sec { padding: clamp(88px, 10vw, 148px) 0; }
.bquote::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1800&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.bquote:hover::before { transform: scale(1.0); }
.bquote::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg,
    rgba(3,3,6,.97) 0%,
    rgba(4,4,10,.95) 40%,
    rgba(4,4,8,.78) 100%);
  z-index: 1;
}
.bquote .wrap { position: relative; z-index: 2; }
.bquote__in {
  display: grid;
  grid-template-columns: 1fr 468px;
  gap: 88px;
  align-items: start;
}
.bquote__left h2  { margin-bottom: 16px; }
.bquote__left > p { color: var(--t2); font-size: .9rem; margin-bottom: 26px; line-height: 1.72; }
.urgency          { color: #60a5fa !important; }
.bq-list          { display: flex; flex-direction: column; gap: 14px; }
.bq-list li {
  font-size: .9rem;
  color: var(--t2);
  padding-left: 22px;
  position: relative;
  line-height: 1.6;
}
.bq-list li::before { content: '→'; position: absolute; left: 0; color: var(--blue-l); }
.bquote__form {
  padding: 34px 30px;
  background: rgba(6,6,10,0.76);
  border: 1px solid rgba(255,255,255,.09);
  border-top: 1px solid rgba(61,142,255,.32);
  border-radius: 20px;
  box-shadow: 0 48px 96px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: linear-gradient(180deg, var(--bg2) 0%, rgba(4,4,6,1) 100%);
  border-top: 1px solid transparent;
  padding-top: 50px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(12,108,254,.35) 50%, transparent 100%);
}
.footer::after {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(12,108,254,.06) 0%, transparent 70%);
  pointer-events: none;
}
.footer__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.footer__logo img { height: 40px; width: auto; }
.footer__logo-fb {
  font-family: var(--ff-head);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 9px;
}
.footer__logo-fb::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(12,108,254,.9), 0 0 24px rgba(12,108,254,.4);
}
.footer__brand > p {
  font-size: .83rem;
  color: var(--t2);
  line-height: 1.82;
  max-width: 300px;
  margin-bottom: 0;
}
.footer__col h4 {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--t1);
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 12px;
}
.footer__col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 1.5px;
  background: linear-gradient(90deg, var(--blue), transparent);
  border-radius: 2px;
}
.footer__contact { display: flex; flex-direction: column; gap: 8px; }
.footer__contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .81rem;
  color: var(--t2);
  padding: 0;
  border-bottom: none;
  transition: color .25s ease;
}
.footer__contact li:hover { color: var(--t1); }
.footer__contact li svg {
  color: var(--blue-l);
  flex-shrink: 0;
  opacity: .85;
  transition: opacity .25s ease;
}
.footer__contact li:hover svg { opacity: 1; }
.footer__contact li a { color: inherit; transition: color .25s ease; }
.footer__contact li a:hover { color: var(--blue-l); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 24px 0;
  text-align: center;
  font-size: .73rem;
  color: var(--t3);
  position: relative;
  z-index: 1;
  letter-spacing: .03em;
}

/* ══════════════════════════════════════
   STICKY CTA
══════════════════════════════════════ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99;
  padding: 14px 20px;
  padding-bottom: max(14px, env(safe-area-inset-bottom));
  background: linear-gradient(to top, rgba(6,6,8,.98) 60%, transparent);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .4s cubic-bezier(.22,1,.36,1), transform .4s cubic-bezier(.22,1,.36,1);
  pointer-events: none;
}
.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .72s cubic-bezier(.22,1,.36,1), transform .72s cubic-bezier(.22,1,.36,1);
}
.fade.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .18s; }
.d3 { transition-delay: .28s; }
.d4 { transition-delay: .38s; }

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hdr__nav a { display: none; }
  .hdr__phone { display: none; }
  .burger     { display: flex; }

  .hero__in {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin: -50px auto !important;
    text-align: center;
    gap: 45px;
  }
  .hero__sub, .hero__tagline { margin-left: auto; margin-right: auto; }
  .eyebrow { justify-content: center; }
  .hero__btns, .hero__trust { justify-content: center; }
  .hero__form { max-width: 520px; width: 100%; margin: 0 auto; }

  .svcs { grid-template-columns: 1fr 1fr; }
  .svc-card:last-child { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; width: 100%; }

  .photo-grid { grid-template-columns: 1fr 1fr; }

  .about__in { grid-template-columns: 300px 1fr; gap: 44px; }

  .bquote__in { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
══════════════════════════════════════ */
@media (max-width: 768px) {
  .hero {
    padding-top: calc(var(--hh) + 16px);
    padding-bottom: 60px;
    min-height: auto;
  }

  .trust-bar__in {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    overflow: visible;
  }
  .ti {
    flex-shrink: 1;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 12px;
    padding: 16px 14px;
    gap: 10px;
  }
  .ti-text span  { font-size: .82rem; }
  .ti-text small { font-size: .68rem; }
  .ti svg        { width: 24px; height: 24px; }

  .svcs { grid-template-columns: 1fr; }
  .svc-card:last-child { grid-column: auto; max-width: 100%; }

  .photo-grid { grid-template-columns: 1fr 1fr; }
  .rev-card   { min-width: 272px; }

  .about__in       { grid-template-columns: 1fr; gap: 40px; }
  .about__img-wrap { max-width: 300px; margin: 0 auto; }
  .about__img-col  { align-items: center; }

  .bquote__in { gap: 44px; }

  .frow { grid-template-columns: 1fr; }

  .svc-bridge      { padding: 22px; }
  .svc-bridge__text { gap: 12px; }

  .sticky-cta { display: block; }
  body { padding-bottom: 74px; }
}

@media (max-width: 480px) {
  .photo-grid   { grid-template-columns: 1fr; }
  .hero__form   { padding: 28px 20px; }
  .bquote__form { padding: 26px 20px; }
}
