/* ============================================================
   Fixquicker — converted from Figma (node 1227:2613)
   ============================================================ */

/* Metric-matched fallback so the swap from system font -> Sofia Sans
   (once the webfont loads) does not reflow text or shift layout.
   This is what was causing the "jump" / flicker on page navigation. */
@font-face {
  font-family: "Sofia Sans Fallback";
  src: local("Arial");
  ascent-override: 93%;
  descent-override: 23%;
  line-gap-override: 0%;
  size-adjust: 104%;
}

:root {
  /* brand */
  --primary: #1c2467;
  --secondary: #455df5;
  --body-text: #1f2937;
  --secondary-text: #6b7280;
  --white: #ffffff;
  --soft-bg: #f4f6fa;
  --primary-bg: #fafbfd;
  --primary-50: #eff0fb;
  --secondary-50: #eff0fe;

  /* spacing */
  --gutter: clamp(20px, 6.25vw, 120px);
  --maxw: 1680px;

  /* type */
  --font: "Sofia Sans", "Sofia Sans Fallback", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-synthesis: none;
  color: var(--body-text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;

  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: calc(var(--maxw) + var(--gutter) * 2);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ---------- typography helpers ---------- */
.eyebrow {
  font-weight: 800;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0;
}
.h2 {
  font-weight: 900;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.4px;
  color: var(--primary);
  margin: 0;
}
.lead {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: var(--secondary-text);
  margin: 0;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: stretch;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border: 0;
  background: none;
  font-family: inherit;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.btn__label {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 52px;
  padding: 12px 24px;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  white-space: nowrap;
  margin-right: -1px;
}
.btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  flex: 0 0 52px;
  background: var(--secondary);
  color: var(--white);
}
.btn__icon svg { width: 20px; height: 20px; }

.btn--light .btn__label { background: var(--white); color: var(--primary); }
.btn--primary .btn__label { background: var(--primary); color: var(--white); }
.btn--sm .btn__label { height: 44px; font-size: 14px; }
.btn--sm .btn__icon { width: 44px; flex-basis: 44px; }

.icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-weight: 800;
  font-size: 20px;
  color: var(--primary);
}
.icon-btn svg { width: 20px; height: 20px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid rgba(31,41,55,.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}
.nav__left { display: flex; align-items: center; gap: 36px; min-width: 0; }
.logo { display: inline-flex; align-items: center; flex: 0 0 auto; }
.logo img { height: 28px; width: auto; display: block; }
.logo--footer img { height: 30px; }
.nav__links { flex: 1 1 auto; display: flex; justify-content: center; gap: 32px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  text-transform: uppercase;
  color: var(--body-text);
  white-space: nowrap;
  transition: color .15s;
}
.nav__links a:hover { color: var(--secondary); }
.nav__right { display: flex; align-items: center; gap: 16px; }
.nav__phone { color: var(--primary); }
.nav__phone svg { color: var(--primary); }
.nav__toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  color: var(--primary);
}
.nav__toggle svg { width: 28px; height: 28px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--primary);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, var(--primary) 30%, rgba(28,36,103,.85) 55%, rgba(28,36,103,0) 78%);
}
.hero__x {
  position: absolute;
  right: 0; top: 0;
  height: 100%;
  width: auto;
  opacity: .8;
  z-index: 1;
  pointer-events: none;
}
.hero__worker {
  position: absolute;
  bottom: 0;
  left: 55%;
  height: 88%;
  width: auto;
  z-index: 1;
  object-fit: contain;
  object-position: bottom;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 707px;
  padding-top: 64px;
  padding-bottom: 64px;
}
.hero__copy { max-width: 760px; }
.hero h1 {
  margin: 0 0 12px;
  font-weight: 900;
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1.12;
  letter-spacing: -0.8px;
  color: var(--white);
}
.hero h1 .accent { color: var(--secondary); }
.hero__sub {
  margin: 0 0 32px;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--soft-bg);
  max-width: 640px;
}
.hero__ratings {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.rating { display: flex; align-items: center; gap: 12px; }
.rating__logo { height: 22px; width: auto; }
.rating__logo--yelp { height: 24px; }
.rating strong { color: var(--white); font-weight: 900; font-size: 18px; }
.rating span { color: rgba(255,255,255,.65); font-weight: 500; font-size: 18px; }
.rating__divider { width: 1px; height: 23px; background: rgba(255,255,255,.3); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust {
  background: var(--primary-bg);
  padding: 32px 0;
}
.trust__row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 80px;
  align-items: flex-start;
  justify-content: center;
}
.trust__item { display: flex; gap: 12px; align-items: flex-start; }
.trust__item svg { width: 32px; height: 32px; color: var(--primary); flex: 0 0 32px; }
.trust__item h3 { margin: 0; font-weight: 700; font-size: 18px; line-height: 28px; color: var(--body-text); }
.trust__item p { margin: 0; font-weight: 400; font-size: 16px; line-height: 22px; letter-spacing: -0.18px; color: var(--secondary-text); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why { background: var(--soft-bg); padding: clamp(64px, 10vw, 160px) 0; }
.why__grid {
  display: grid;
  grid-template-columns: minmax(0, 804px) 1fr;
  gap: 72px;
  align-items: center;
}
.why__img {
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
}
.why__img img { width: 100%; height: 100%; object-fit: cover; }
.why__head { margin-bottom: 48px; }
.why__head .eyebrow { margin-bottom: 12px; }
.why__head .h2 { margin-bottom: 12px; }
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
}
.feature { display: flex; gap: 24px; align-items: flex-start; }
.feature__icon {
  flex: 0 0 auto;
  display: flex;
  padding: 8px;
  border-radius: 8px;
  background: var(--secondary-50);
  color: var(--secondary);
}
.feature__icon svg { width: 24px; height: 24px; }
.feature h3 { margin: 0; font-weight: 700; font-size: 18px; line-height: 28px; color: var(--body-text); }
.feature p { margin: 0; font-weight: 400; font-size: 16px; line-height: 22px; letter-spacing: -0.18px; color: var(--secondary-text); }

/* ============================================================
   SERVICES (split cards)
   ============================================================ */
.services { display: grid; grid-template-columns: 1fr 1fr; }
.service-card {
  position: relative;
  min-height: 675px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 32px;
  padding: 60px 72px;
  overflow: hidden;
  color: var(--white);
}
.service-card__bg { position: absolute; inset: 0; z-index: 0; }
.service-card__bg img { width: 100%; height: 100%; object-fit: cover; }
.service-card__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(28,36,103,0) 16%, rgb(31,41,55) 80%);
}
.service-card__body { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 20px; }
.service-card__badge {
  display: inline-flex;
  padding: 20px;
  border-radius: 999px;
  background: rgba(255,255,255,.2);
  align-self: flex-start;
}
.service-card__badge svg { width: 48px; height: 48px; color: var(--white); }
.service-card h3 { margin: 0; font-weight: 800; font-size: clamp(30px,3vw,40px); line-height: 1.15; letter-spacing: -0.3px; }
.service-card p { margin: 0; font-weight: 500; font-size: 16px; line-height: 22px; letter-spacing: -0.18px; color: var(--soft-bg); max-width: 540px; }
.service-card .btn { position: relative; z-index: 1; align-self: flex-start; }

/* ============================================================
   PROCESS (how we work)
   ============================================================ */
.process { background: var(--soft-bg); padding: clamp(64px,10vw,160px) 0; }
.process__head { text-align: center; max-width: 760px; margin: 0 auto 72px; }
.process__head .eyebrow { margin-bottom: 12px; }
.process__head .h2 { margin-bottom: 12px; }
.process__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
}
.step { flex: 1 1 0; text-align: center; max-width: 272px; }
.step .step__num { font-weight: 900; font-size: 48px; line-height: 58px; color: var(--secondary); margin: 0 0 12px; }
.step h3 { margin: 0; font-weight: 700; font-size: 18px; line-height: 28px; color: var(--body-text); }
.step p { margin: 0; font-weight: 400; font-size: 16px; line-height: 22px; letter-spacing: -0.18px; color: var(--secondary-text); }
.process__arrow { flex: 0 0 60px; align-self: center; opacity: .8; }
.process__arrow img { width: 60px; height: auto; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--primary); padding: clamp(64px,10vw,160px) 0; }
.testimonials__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.testimonials__head h2 { margin: 0; font-weight: 900; font-size: clamp(32px,4vw,48px); line-height: 1.2; letter-spacing: -0.4px; color: var(--white); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tcard {
  background: var(--primary-50);
  border-radius: 8px;
  padding: 32px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 340px;
  min-width: 0;
}
.tcard__top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.tcard__quote { width: 40px; height: auto; }
.tcard__meta { display: flex; align-items: center; gap: 12px; }
.tcard__source { height: 24px; width: auto; }
.tcard__stars { display: flex; gap: 4px; }
.tcard__stars img { width: 20px; height: 20px; }
.tcard__text { flex: 1; margin: 0; font-weight: 400; font-size: 22px; line-height: 28px; color: var(--body-text); }
.tcard__divider { height: 1px; width: 100%; background: rgba(31,41,55,.1); }
.tcard__foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.tcard__person { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 44px; height: 44px; border-radius: 999px; flex: 0 0 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--secondary-50); color: var(--secondary);
  font-weight: 700; font-size: 18px;
}
.tcard__name { font-weight: 500; font-size: 16px; line-height: 24px; color: var(--primary); margin: 0; }
.tcard__role { font-weight: 700; font-size: 14px; line-height: 20px; color: var(--secondary); margin: 0; }
.tcard__loc { display: flex; align-items: center; gap: 4px; color: var(--secondary-text); font-weight: 500; font-size: 14px; white-space: nowrap; }
.tcard__loc svg { width: 16px; height: 16px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--soft-bg); padding: clamp(64px,10vw,160px) 0; }
.faq__grid {
  display: grid;
  grid-template-columns: 583px 1fr;
  gap: 32px;
  align-items: flex-start;
}
.faq__intro { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.faq__icon {
  display: inline-flex; padding: 18px; border-radius: 1000px;
  background: var(--secondary-50); color: var(--secondary);
}
.faq__icon svg { width: 55px; height: 55px; }
.faq__intro h2 { margin: 0; font-weight: 900; font-size: clamp(32px,4vw,48px); line-height: 1.2; letter-spacing: -0.4px; color: var(--primary); }
.faq__intro p { margin: 8px 0 0; }
.faq__list {
  flex: 1;
  background: var(--primary-bg);
  border-radius: 8px;
  box-shadow: 0 4px 4px rgba(31,41,55,.2);
  overflow: hidden;
}
.faq__item { border-bottom: 1px solid rgba(31,41,55,.08); }
.faq__item:last-child { border-bottom: 0; }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 28px;
  background: none; border: 0; cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: -0.15px;
  color: var(--body-text);
}
.faq__q .pm { flex: 0 0 24px; color: var(--secondary-text); transition: transform .25s; }
.faq__q .pm svg { width: 24px; height: 24px; display: block; }
.faq__item.open .faq__q .pm { transform: rotate(45deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq__a p {
  margin: 0;
  padding: 0 28px 24px;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: var(--secondary-text);
}

/* ============================================================
   SERVICE AREA
   ============================================================ */
.area { background: var(--primary-50); }
.area__grid {
  display: grid;
  grid-template-columns: 737px 1fr;
  gap: 72px;
  align-items: center;
}
.area__media { position: relative; aspect-ratio: 737 / 618; min-height: 460px; }
.area__scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom left;
}
.area__copy { padding: 60px 0; display: flex; flex-direction: column; gap: 72px; }
.area__copy .h2 { margin-bottom: 12px; }
.area__list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 715px;
}
.area__list .item {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 150px;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: var(--body-text);
}
.area__list .item svg { width: 24px; height: 24px; color: var(--secondary); flex: 0 0 24px; }

/* ============================================================
   CTA
   ============================================================ */
.cta {
  position: relative;
  background-color: var(--primary);
  background-image:
    linear-gradient(rgba(28,36,103,.88), rgba(28,36,103,.88)),
    url("../assets/cta-pattern.png");
  background-repeat: no-repeat, repeat;
  background-size: cover, 248px auto;
  padding: clamp(60px,8vw,130px) 0;
}
.cta__card {
  max-width: 816px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 8px;
  padding: 60px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.cta__avatar {
  width: 150px; height: 150px; border-radius: 999px;
  background: var(--secondary-50);
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden;
}
.cta__avatar img { width: 117px; height: auto; object-fit: contain; }
.cta__card h2 { margin: 0; font-weight: 900; font-size: clamp(32px,4vw,48px); line-height: 1.2; letter-spacing: -0.4px; color: var(--body-text); }
.cta__card .lead { margin: 0; }
.cta__contacts { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.cta__contact { display: inline-flex; align-items: center; gap: 12px; padding: 8px 12px; font-weight: 800; font-size: 20px; color: var(--body-text); }
.cta__contact svg { width: 20px; height: 20px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--soft-bg); padding: 80px 0 40px; }
.footer__top {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer__brand { flex: 1 1 360px; max-width: 480px; display: flex; flex-direction: column; gap: 16px; }
.footer__brand .logo { color: var(--primary); }
.footer__brand p { margin: 0; font-weight: 400; font-size: 16px; line-height: 22px; letter-spacing: -0.18px; color: var(--secondary-text); }
.footer__badges { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer__badges img { height: 34px; width: auto; }
.footer__badges .badge-google { height: 42px; }
.footer__badges .badge-angi { height: 27px; }
.footer__nav { display: flex; gap: 24px; flex-wrap: wrap; justify-content: flex-end; }
.footer__nav a { font-weight: 700; font-size: 16px; line-height: 28px; text-transform: uppercase; color: var(--body-text); transition: color .15s; }
.footer__nav a:hover { color: var(--secondary); }
.footer__copy { margin: 48px 0 0; font-weight: 500; font-size: 14px; line-height: 28px; color: var(--secondary-text); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .why__grid { grid-template-columns: 1fr; }
  .faq__grid { grid-template-columns: 1fr; }
  .area__grid { grid-template-columns: 1fr; }
  .area__media { width: 100%; aspect-ratio: 737 / 618; min-height: 0; height: auto; }
  .area__copy { padding: 0 0 40px; gap: 40px; }
}

@media (max-width: 1600px) {
  .nav__right .btn { display: none; }
  .nav__links, .nav__phone { display: none; }
  .nav__toggle { display: inline-flex; }
  .site-header.open .nav__links {
    display: flex;
    position: absolute;
    top: 80px; left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 16px var(--gutter) 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(31,41,55,.08);
    box-shadow: 0 10px 20px rgba(31,41,55,.08);
  }
}
@media (max-width: 1024px) {
  .hero__worker { display: none; }
  .process__steps { flex-wrap: wrap; }
  .process__arrow { display: none; }
  .step { flex: 1 1 220px; }
  .testimonials__grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .services { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 520px; padding: 40px 32px; }
  .footer__top { flex-direction: column; }
  .footer__nav { justify-content: flex-start; }
  .testimonials__head { flex-direction: column; align-items: flex-start; }
  .hero__x { display: none; }
  .hero__inner { min-height: 0; padding-top: 48px; padding-bottom: 48px; }
  .trust__row { justify-content: flex-start; }
  .footer__brand { flex: 1 1 1px; }
}
@media (max-width: 400px) {
  .service-card .btn__label { white-space: normal; text-align: left; line-height: 1.3; }
  .tcard__foot { flex-wrap: wrap; gap: 8px; }
  .tcard__loc { white-space: normal; }
}
@media (max-width: 560px) {
  .btn__label { padding: 12px 18px; }
  .cta__card { padding: 40px 24px; }
  .cta__contact { font-size: 16px; }
  .tcard__text { font-size: 18px; }
}

/* ============================================================
   INTERACTIONS & ANIMATIONS
   ============================================================ */

/* smooth-scroll offset so sticky header doesn't cover anchors */
section[id] { scroll-margin-top: 96px; }

/* ---------- hover: buttons ---------- */
.btn {
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s ease;
  will-change: transform;
  transform-origin: center center;
}
.btn .btn__label,
.btn .btn__icon { transition: background-color .25s ease, color .25s ease; }
.btn .btn__icon svg { transition: transform .25s cubic-bezier(.2,.7,.3,1); }
.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn:active { transform: translateY(0) scale(.99); }
.btn:hover .btn__icon svg { transform: translateX(4px); }
.btn--primary:hover { box-shadow: 0 10px 24px rgba(28,36,103,.30); }
.btn--light:hover { box-shadow: 0 10px 24px rgba(0,0,0,.18); }
.btn--primary:hover .btn__icon,
.btn--light:hover .btn__icon { background: #3a4fe0; }

.icon-btn { transition: color .2s ease, transform .2s ease; border-radius: 6px; }
.icon-btn:hover { color: var(--secondary); transform: translateY(-1px); }

/* ---------- hover: nav + links ---------- */
.nav__links a { position: relative; }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 2px;
  width: 0; height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition: width .25s ease;
}
.nav__links a:hover::after { width: 100%; }

.footer__nav a { position: relative; transition: color .2s ease; }
.footer__nav a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--secondary); border-radius: 2px;
  transition: width .25s ease;
}
.footer__nav a:hover::after { width: 100%; }

/* rating + badge logos */
.rating { transition: transform .2s ease, opacity .2s ease; border-radius: 8px; }
.rating:hover { transform: translateY(-2px); opacity: .92; }
.footer__badges a, .footer__badges img { transition: transform .2s ease, filter .2s ease; }
.footer__badges a:hover { transform: translateY(-2px) scale(1.06); }
.tcard__source { transition: transform .2s ease; }
.tcard__meta a:hover .tcard__source { transform: scale(1.08); }

/* ---------- hover: cards ---------- */
.feature, .trust__item, .step, .tcard, .faq__item, .area__list .item {
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s ease;
}
.tcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}
.trust__item:hover, .step:hover, .area__list .item:hover { transform: translateY(-3px); }
.feature:hover { transform: translateY(-3px); }
.feature__icon, .faq__icon, .service-card__badge { transition: transform .3s cubic-bezier(.2,.7,.3,1), background-color .3s ease; }
.feature:hover .feature__icon { transform: scale(1.08) rotate(-3deg); }
.trust__item svg { transition: transform .3s ease; }
.trust__item:hover svg { transform: scale(1.12); }

/* faq row hover */
.faq__q { transition: background-color .2s ease; }
.faq__q:hover { background: rgba(69,93,245,.05); }

/* ---------- hover: images ---------- */
.why__img, .service-card__bg, .cta__avatar { overflow: hidden; }
.why__img img, .cta__avatar img { transition: transform .5s cubic-bezier(.2,.7,.3,1); }
.why__img:hover img { transform: scale(1.04); }
.service-card__bg img { transition: transform .6s cubic-bezier(.2,.7,.3,1); }
.service-card:hover .service-card__bg img { transform: scale(1.05); }
.service-card:hover .service-card__badge { transform: scale(1.06); background: rgba(255,255,255,.28); }
.cta__card:hover .cta__avatar img { transform: scale(1.05); }
.area__scene { transition: transform .5s cubic-bezier(.2,.7,.3,1); }
.area__media:hover .area__scene { transform: scale(1.02); }

/* ---------- scroll-reveal ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1);
    will-change: opacity, transform;
  }
  .reveal.reveal--left  { transform: translateX(-36px); }
  .reveal.reveal--right { transform: translateX(36px); }
  .reveal.reveal--scale { transform: scale(.95); }
  .reveal.in { opacity: 1; transform: none; }
}

/* respect reduced motion globally */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
