/* Manual Vector Tracing — shared styles */
:root {
  --ink: #111827;
  --ink-soft: #3a4550;
  --blue: #159447;
  --blue-deep: #117a3a;
  --blue-soft: #e7f6ee;
  --surface: #f7f9fc;
  --white: #ffffff;
  --line: #e2e8f0;
  --danger: #c43c3c;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 2px rgba(17, 24, 39, 0.06);
  --shadow-md: 0 12px 32px rgba(17, 24, 39, 0.1);
  --font-display: "Poppins", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --max: 1360px;
  --header-h: 76px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --z-sticky: 100;
  --z-overlay: 200;
  --z-modal: 300;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: var(--header-h);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  color: var(--blue-deep);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-wrap: balance;
  color: var(--ink);
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1em;
  text-wrap: pretty;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section--surface {
  background: var(--surface);
}

.section__head {
  max-width: 40rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section__head--center {
  text-align: center;
  margin-inline: auto;
}

.section__head h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section__head p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  padding: 0.9rem 1.35rem;
  cursor: pointer;
  transition: transform 0.35s var(--ease-out), background 0.25s ease, color 0.25s ease,
    box-shadow 0.35s var(--ease-out), border-color 0.25s ease;
  text-decoration: none;
  line-height: 1.2;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.14);
}

.btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(21, 148, 71, 0.28);
}

.btn--primary:hover {
  background: var(--blue-deep);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(21, 148, 71, 0.38);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: transparent;
  padding-inline: 0.75rem;
}

.btn--ghost:hover {
  color: var(--blue);
}

.btn--white {
  background: var(--white);
  color: var(--blue);
}

.btn--white:hover {
  background: var(--blue-soft);
  color: var(--blue-deep);
}

.btn--dark {
  background: var(--ink);
  color: var(--white);
}

.btn--dark:hover {
  background: #1f2937;
  color: var(--white);
}

.btn__sub {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  opacity: 0.85;
  margin-top: 0.15rem;
}

.btn--stack {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 0.75rem 1.2rem;
}

.btn svg {
  flex-shrink: 0;
}

.cta-short {
  display: none;
}

@media (max-width: 980px) {
  .cta-full {
    display: none;
  }

  .cta-short {
    display: inline;
  }
}

/* Header — fixed so it stays pinned (sticky fails with overflow-x on html/body) */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: var(--z-sticky);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  height: var(--header-h);
}

.site-header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  color: inherit;
  flex-shrink: 0;
}

.logo img {
  width: auto;
  height: 52px;
  max-width: min(220px, 58vw);
  object-fit: contain;
  display: block;
}

.site-footer .logo {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
}

.site-footer .logo img {
  height: 54px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav a {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 0.45rem 0.65rem;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav a:hover,
.nav a[aria-current="page"],
.nav a.is-active {
  color: var(--blue);
  background: var(--blue-soft);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.header-cta {
  flex-shrink: 0;
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(21, 148, 71, 0.08), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(21, 148, 71, 0.05), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.35rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--blue);
}

.hero__sub {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.hero__lead {
  color: var(--ink-soft);
  max-width: 36rem;
  margin-bottom: 1.35rem;
}

.hero__checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1.25rem;
  margin-bottom: 1.75rem;
  list-style: none;
  padding: 0;
}

.hero__checks li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}

.hero__checks svg {
  color: var(--blue);
  flex-shrink: 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
  margin-bottom: 1rem;
}

.hero__secure {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* Before / After */
.ba {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.ba__labels {
  display: grid;
  /* minmax(0, 1fr) prevents min-content text from blowing past 50% */
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  /* Continuous split kills the 1px white seam from subpixel rounding */
  background: linear-gradient(to right, #eef1f4 50%, var(--blue) 50%);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ba__labels span {
  min-width: 0;
  padding: 0.65rem 1rem;
  text-align: center;
  background: transparent;
}

.ba__labels span:first-child {
  color: var(--ink-soft);
}

.ba__labels span:last-child {
  color: var(--white);
}

.ba__stage {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #1f2937;
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
  overflow: hidden;
}

.ba__layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ba__layer--after {
  z-index: 1;
}

.ba__layer--before {
  z-index: 2;
  width: 50%;
  /* Divider is drawn on the handle so it stays centered on the split % */
  border-right: none;
}

.ba__photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba__layer--before .ba__photo {
  width: var(--ba-stage-w, 100%);
  max-width: none;
  min-width: 100%;
}

.ba__art {
  width: min(78%, 280px);
  pointer-events: none;
  margin: auto;
}

.ba__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

/* Full-height split line, centered on the same left % as the handle */
.ba__handle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 200vmax;
  transform: translate(-50%, -50%);
  background: var(--blue);
  z-index: -1;
  pointer-events: none;
}

.ba__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
  margin: 0;
}

.ba__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1rem;
  padding: 0.85rem 0.75rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.ba__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.ba__meta svg {
  color: var(--blue);
}

/* Trust bar */
.trust {
  border-block: 1px solid var(--line);
  background: var(--white);
  padding: 1.35rem 0;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trust__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  text-align: left;
}

.trust__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.trust__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.trust__item span {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* Feature grid (why choose) */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.25rem) clamp(1.25rem, 2.5vw, 2rem);
}

.why-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

.why-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  display: grid;
  place-items: center;
}

.why-item h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.why-item p {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* How it works — horizontal process */
.process {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0.35rem 0.5rem;
  align-items: start;
}

.process__step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 0.35rem 0.75rem;
  border-radius: var(--radius-lg);
}

.process__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
}

.process__icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.process__step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.process__step p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 16.5rem;
  margin: 0;
  line-height: 1.55;
}

.process__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  min-width: 48px;
  padding-top: 4.35rem;
  color: var(--blue);
  align-self: start;
}

.process__line {
  display: block;
  width: 22px;
  height: 0;
  border-top: 2px dashed #c5d8cc;
}

.process__chevron {
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.project-grid--wide {
  grid-template-columns: repeat(4, 1fr);
}

.project-grid--wide.project-grid--stack {
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

/* Split: leftover utilities */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.steps {
  display: grid;
  gap: 1rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.step:last-child {
  border-bottom: 0;
}

.step__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 700;
  display: grid;
  place-items: center;
}

.step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.step p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.project {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.project:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.project__visual {
  aspect-ratio: 1 / 1;
  background: #f4f6f8;
  overflow: hidden;
}

.project__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project__label {
  padding: 0.75rem 0.9rem 0.95rem;
}

.project__label strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
}

.project__label span {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

/* Image-only project tiles (home stack + portfolio) */
.project--image .project__visual {
  aspect-ratio: 16 / 9;
  background: var(--surface);
}

.project--image .project__visual img {
  object-fit: cover;
}

.section-link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.split__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.split__head h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  margin: 0;
}

.split__head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

/* Compare */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.compare__col {
  padding: 1.5rem 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.compare__col--bad {
  background: #fff8f8;
  border-color: #f0c8c8;
}

.compare__col--good {
  background: var(--blue-soft);
  border-color: #c5e5d4;
}

.compare__col h3 {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.compare__col--bad h3 {
  color: var(--danger);
}

.compare__col--good h3 {
  color: var(--blue);
}

.compare ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.compare li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.98rem;
  color: var(--ink);
}

/* Formats */
.formats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.format-chip {
  min-width: 100px;
  padding: 1.1rem 1rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.format-chip img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.band {
  background: linear-gradient(135deg, #111827 0%, #0f2418 55%, #0a2e1a 100%);
  color: white;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.band h2 {
  color: white;
}

.band p {
  color: rgba(255, 255, 255, 0.75);
}

/* Industries */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.85rem, 2vw, 1.35rem);
  max-width: 52rem;
  margin-inline: auto;
}

.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
  padding: clamp(1.15rem, 2.4vw, 1.55rem) 0.85rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  color: var(--ink);
}

.industry-item__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.industry-item__icon svg {
  display: block;
}

.industry-item__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

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

@media (max-width: 420px) {
  .industry-grid {
    grid-template-columns: 1fr;
    max-width: 16rem;
  }
}

/* Social proof + FAQ */
#reviews {
  padding-bottom: clamp(1.25rem, 2.5vw, 2rem);
}

#faq {
  padding-top: clamp(1.25rem, 2.5vw, 2rem);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: stretch;
}

.two-col > * {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.quotes {
  display: grid;
  gap: 0.65rem;
  flex: 1;
}

.quote {
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.quote__stars {
  color: #f5a524;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
  font-size: 0.85rem;
  line-height: 1;
}

.quote p {
  font-size: 0.98rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
  line-height: 1.45;
}

.quote footer {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 0;
}

.quote footer strong {
  color: var(--ink);
  display: block;
  font-family: var(--font-display);
  font-size: 0.88rem;
}

.reviews-marquee {
  overflow: hidden;
  margin-top: 0.5rem;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 5%,
    #000 95%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 5%,
    #000 95%,
    transparent 100%
  );
}

.reviews-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding: 0.5rem clamp(1rem, 4vw, 2rem);
  animation: reviews-scroll 38s linear infinite;
}

.reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}

@keyframes reviews-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.review-card {
  flex: 0 0 auto;
  width: 380px;
  margin: 0;
  padding: 0.9rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.review-card__head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.55rem;
}

.review-card__head strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: var(--ink);
}

.review-card__country {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-avatar--fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
}

.review-card p {
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.45;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.faq--standalone {
  max-width: 46rem;
  margin: 0 auto;
}

.faq {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1.05rem 0;
}

.faq summary {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  color: var(--ink);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--blue);
  font-size: 1.25rem;
  font-weight: 500;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p,
.faq details ul,
.faq details ol {
  margin-top: 0.7rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.faq details p + p,
.faq details p + ul,
.faq details p + ol,
.faq details ul + p,
.faq details ol + p {
  margin-top: 0.55rem;
}

.faq details ul,
.faq details ol {
  padding-left: 1.25rem;
}

.faq details li + li {
  margin-top: 0.3rem;
}

/* CTA band */
.cta-band {
  background: var(--blue);
  color: white;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-band h2 {
  color: white;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  margin-bottom: 0.35rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.site-footer h4 {
  color: white;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: white;
}

.footer-contact {
  display: grid;
  gap: 0.55rem;
  font-size: 0.95rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.65);
  margin-left: 1rem;
}

/* Form status + upload hint (contact) */
.form-hint {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.form-status {
  margin: 0;
  font-weight: 600;
  line-height: 1.5;
  color: var(--blue);
}

.form-status--ok {
  color: var(--blue);
}

.form-status--err {
  color: var(--danger);
}

.form-status a {
  text-decoration: underline;
}

/* Floating WhatsApp — site green, modest FAB */
.wa-float {
  position: fixed;
  right: max(0.85rem, env(safe-area-inset-right, 0px));
  bottom: max(0.85rem, env(safe-area-inset-bottom, 0px));
  z-index: var(--z-overlay);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(21, 148, 71, 0.38);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-float:hover,
.wa-float:focus-visible {
  background: var(--blue-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(21, 148, 71, 0.42);
  outline: none;
}

.wa-float:focus-visible {
  outline: 2px solid var(--blue-soft);
  outline-offset: 3px;
}

.socials {
  display: flex;
  gap: 0.55rem;
  margin-top: 1rem;
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  color: white;
  font-size: 0.85rem;
}

.socials a:hover {
  background: var(--blue);
  border-color: var(--blue);
}

/* Page hero (inner) */
.page-hero {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(21, 148, 71, 0.1), transparent 50%),
    var(--surface);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: var(--ink-soft);
  max-width: 38rem;
  font-size: 1.1rem;
}

.contact-proof {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 1.2rem 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  max-width: 36rem;
}

.contact-proof strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}

.contact-proof span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* Post-submit thank-you */
.thanks-hero {
  min-height: calc(100vh - var(--header-h) - 12rem);
  display: flex;
  align-items: center;
}

.thanks-panel {
  max-width: 40rem;
}

.thanks-panel h1 {
  color: var(--ink);
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.thanks-note {
  margin-top: 1.75rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.thanks-note a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

.thanks-note a:hover {
  text-decoration: underline;
}

/* Legal pages (privacy / terms) */
.legal {
  max-width: 48rem;
}

.legal > p.legal-meta {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.legal h2 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 0.65rem;
}

.legal h2:first-of-type {
  margin-top: 0;
}

.legal h3 {
  font-size: 1.1rem;
  margin-top: 1.35rem;
  margin-bottom: 0.45rem;
}

.legal ul {
  margin: 0 0 1em;
  padding-left: 1.25rem;
}

.legal li {
  margin-bottom: 0.4em;
  color: var(--ink-soft);
}

.legal li::marker {
  color: var(--blue);
}

.legal p {
  color: var(--ink-soft);
}

.legal strong {
  color: var(--ink);
  font-weight: 700;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.price-card--featured {
  border-color: var(--blue);
  box-shadow: 0 16px 40px rgba(21, 148, 71, 0.12);
  position: relative;
}

.price-card__badge {
  position: absolute;
  top: -0.65rem;
  left: 1.25rem;
  background: var(--blue);
  color: white;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}

.price-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.price-card__desc {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.price-card__amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.price-card__amount span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.5rem;
  display: grid;
  gap: 0.55rem;
  flex: 1;
}

.price-card li {
  display: flex;
  gap: 0.45rem;
  font-size: 0.95rem;
}

.price-card li svg {
  color: var(--blue);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* Forms */
.form-grid {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}

input,
textarea,
select {
  font: inherit;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--blue-soft);
  border-color: var(--blue);
}

.dropzone {
  border: 2px dashed #b5d4c2;
  border-radius: var(--radius-lg);
  background: var(--blue-soft);
  padding: 2rem 1.25rem;
  text-align: center;
  color: var(--ink-soft);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.dropzone:hover,
.dropzone.is-drag {
  border-color: var(--blue);
  background: #d4eee0;
}

.dropzone strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  margin-bottom: 0.25rem;
}

.file-list {
  list-style: none;
  margin: 0.65rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.file-list[hidden] {
  display: none;
}

.file-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0.75rem;
  background: var(--blue-soft);
  border: 1px solid #b5d4c2;
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--ink);
}

.file-list__meta {
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.65rem;
}

.file-list__name {
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.file-list__size {
  color: var(--ink-soft);
  font-size: 0.82rem;
  flex-shrink: 0;
}

.file-list__remove {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 1px solid #b5d4c2;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  padding: 0;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.file-list__remove:hover,
.file-list__remove:focus-visible {
  color: var(--white);
  background: var(--danger);
  border-color: var(--danger);
  outline: none;
}

.form-hint--file-limit {
  color: var(--danger);
  font-weight: 600;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: stretch;
}

.contact-aside {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  padding: 2.35rem 1.75rem;
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.contact-aside h3 {
  color: white;
  font-size: clamp(1.3rem, 2vw, 1.5rem);
  margin: 0;
}

.contact-aside > p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.55;
}

.contact-aside .footer-contact {
  font-size: 1.05rem;
  gap: 0.85rem;
  line-height: 1.45;
}

.contact-aside a {
  color: white;
}

.contact-aside hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 0.5rem 0;
  width: 100%;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.about-panel {
  background: linear-gradient(160deg, #111827, #0d5c35);
  color: white;
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.about-panel::before {
  content: "";
  position: absolute;
  inset: -20% 30% auto -10%;
  height: 70%;
  background: radial-gradient(circle, rgba(21, 148, 71, 0.55), transparent 65%);
}

.about-panel > * {
  position: relative;
}

.about-panel h3 {
  color: white;
  font-size: 1.5rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}

.stat-row span {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  }

  .reveal.is-in {
    opacity: 1;
    transform: none;
  }
}

/* Mobile */
@media (max-width: 980px) {
  :root {
    --header-h: 68px;
  }

  .hero__grid,
  .split,
  .two-col,
  .about-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

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

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

  .process {
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 0.35rem;
  }

  .process__step {
    max-width: none;
    width: 100%;
  }

  .process__arrow {
    padding-top: 0;
    min-width: 0;
    flex-direction: column;
    height: 48px;
  }

  .process__line {
    width: 0;
    height: 14px;
    border-top: 0;
    border-left: 2px dashed #c5d8cc;
  }

  .process__chevron {
    transform: rotate(90deg);
  }

  .project-grid--wide {
    grid-template-columns: 1fr 1fr;
  }

  .site-header__inner {
    gap: 0.55rem;
  }

  .logo {
    order: 1;
    min-width: 0;
  }

  .header-cta {
    order: 2;
    display: inline-flex;
    margin-left: auto;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.45rem 0.75rem;
    font-size: 0.78rem;
    line-height: 1.15;
    max-width: none;
    white-space: nowrap;
  }

  .header-cta .btn__sub {
    display: none;
  }

  .nav-toggle {
    order: 3;
    display: inline-flex;
    min-width: 44px;
    min-height: 44px;
    flex-shrink: 0;
  }

  .nav {
    order: 4;
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.12);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem 1rem;
    max-height: min(70vh, calc(100dvh - var(--header-h)));
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease-out), opacity 0.35s var(--ease-out);
    z-index: var(--z-overlay);
  }

  .nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0.7rem 0.85rem;
    font-size: 0.95rem;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .format-chip {
    min-width: 5.5rem;
    flex: 1 1 5.5rem;
    max-width: 7.5rem;
  }

  .cta-band__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cta-band__inner .btn {
    width: 100%;
  }

  body {
    padding-bottom: 4.25rem;
  }

  .ba__stage {
    touch-action: none;
    -webkit-user-select: none;
  }

  .ba__range {
    min-height: 44px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.5rem, var(--max));
  }

  .trust__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 0.85rem;
  }

  .trust__item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
  }

  .trust__item strong {
    font-size: clamp(1.15rem, 5.5vw, 1.35rem);
  }

  .trust__item span {
    display: block;
    line-height: 1.3;
    max-width: 9.5rem;
  }

  .hero__checks,
  .why-grid,
  .project-grid,
  .project-grid--wide,
  .compare,
  .form-row,
  .footer-grid,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .contact-proof {
    max-width: none;
    gap: 0.75rem 0.65rem;
  }

  .contact-proof strong {
    font-size: clamp(1.2rem, 5vw, 1.45rem);
  }

  .contact-proof span {
    font-size: 0.82rem;
    line-height: 1.3;
  }

  .review-card {
    width: 300px;
  }

  .logo img {
    height: 40px;
    max-width: min(168px, 46vw);
  }

  .site-footer .logo img {
    height: 44px;
  }

  .eyebrow {
    white-space: normal;
    line-height: 1.45;
    text-wrap: balance;
    flex-wrap: wrap;
    max-width: 100%;
    justify-content: flex-start;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(1.7rem, 7.6vw, 2.2rem);
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  .hero__lead,
  .page-hero p {
    font-size: 1rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .ba__labels span {
    padding: 0.55rem 0.5rem;
    font-size: 0.65rem;
  }

  .ba__handle {
    width: 44px;
    height: 44px;
  }

  .faq summary {
    min-height: 44px;
    padding: 0.35rem 0;
  }

  .footer-links a,
  .footer-bottom a,
  .footer-contact a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  .socials a {
    width: 44px;
    height: 44px;
  }

  input,
  textarea,
  select {
    font-size: 16px;
  }

  .dropzone {
    padding: 1.5rem 1rem;
  }

  .form-hint {
    font-size: 0.88rem;
  }

  .price-card .btn,
  .form-grid .btn {
    width: 100%;
    min-height: 48px;
  }

  .wa-float {
    width: 48px;
    height: 48px;
  }

  .quote p {
    overflow-wrap: anywhere;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom a {
    margin-left: 0;
    margin-right: 1rem;
  }
}

/* --- Reference-style hover lift --- */
@media (prefers-reduced-motion: no-preference) {
  .ba,
  .trust__item,
  .why-item,
  .step,
  .process__step,
  .project,
  .compare__col,
  .format-chip,
  .industry-item,
  .quote,
  .price-card,
  .dropzone,
  .contact-aside,
  .about-panel,
  .faq details,
  .section-link,
  .nav a,
  .footer-links a,
  .socials a,
  .logo {
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease,
      border-color 0.3s ease,
      background-color 0.3s ease,
      color 0.25s ease,
      filter 0.3s ease;
  }

  .ba:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.14);
  }

  .trust__item:hover {
    transform: translateY(-5px);
  }

  .trust__item:hover .trust__icon {
    transform: translateY(-2px) scale(1.06);
    box-shadow: 0 8px 18px rgba(21, 148, 71, 0.22);
  }

  .trust__icon {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .why-item:hover {
    transform: translateY(-8px);
  }

  .why-item:hover .why-item__icon {
    transform: scale(1.08);
    box-shadow: 0 10px 22px rgba(21, 148, 71, 0.3);
  }

  .why-item__icon {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .step:hover {
    transform: translateY(-6px);
  }

  .step:hover .step__num {
    background: var(--blue);
    color: white;
    transform: scale(1.06);
  }

  .step__num {
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  }

  .process__step:hover {
    transform: translateY(-8px);
  }

  .process__step:hover .process__icon {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 24px rgba(21, 148, 71, 0.2);
  }

  .process__step:hover .process__num {
    transform: scale(1.08);
  }

  .process__icon,
  .process__num {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .process__arrow {
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .process:hover .process__chevron {
    transform: translateX(2px);
  }

  @media (max-width: 980px) {
    .process:hover .process__chevron {
      transform: rotate(90deg) translateX(2px);
    }
  }

  .project:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 36px rgba(17, 24, 39, 0.14);
  }

  .compare__col:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 30px rgba(17, 24, 39, 0.1);
  }

  .format-chip:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  }

  .format-chip:hover img {
    transform: scale(1.08);
  }

  .format-chip img {
    transition: transform 0.3s ease;
  }

  .industry-item:hover {
    transform: translateY(-7px);
    border-color: #c5e5d4;
    box-shadow: 0 14px 28px rgba(17, 24, 39, 0.1);
  }

  .industry-item:hover .industry-item__icon {
    background: var(--blue);
    color: white;
    transform: scale(1.06);
    box-shadow: 0 8px 18px rgba(21, 148, 71, 0.28);
  }

  .industry-item__icon {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  }

  .quote:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 32px rgba(17, 24, 39, 0.1);
    border-color: #c5e5d4;
  }

  .price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.12);
  }

  .price-card--featured:hover {
    box-shadow: 0 20px 44px rgba(21, 148, 71, 0.2);
  }

  .dropzone:hover {
    transform: translateY(-4px);
  }

  .contact-aside:hover,
  .about-panel:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(17, 24, 39, 0.2);
  }

  .faq details:hover {
    transform: translateY(-3px);
  }

  .faq details:hover summary {
    color: var(--blue);
  }

  .section-link:hover {
    transform: translateX(4px);
  }

  .nav a:hover {
    transform: translateY(-2px);
  }

  .footer-links a:hover {
    transform: translateX(4px);
  }

  .socials a:hover {
    transform: translateY(-4px);
  }

  .logo:hover {
    transform: translateY(-2px);
  }

  .hero__checks li {
    transition: transform 0.3s ease, color 0.25s ease;
  }

  .hero__checks li:hover {
    transform: translateX(4px);
    color: var(--blue);
  }

  .ba__meta span {
    transition: transform 0.3s ease, color 0.25s ease;
  }

  .ba__meta span:hover {
    transform: translateY(-3px);
    color: var(--blue);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn:hover,
  .project:hover {
    transform: none;
  }
}
