:root {
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(217 46% 15%);

  --card: hsl(0 0% 100%);
  --card-foreground: hsl(217 46% 15%);

  --popover: hsl(0 0% 100%);
  --popover-foreground: hsl(217 46% 15%);

  --primary: hsl(350 87% 42%);
  --primary-foreground: hsl(0 0% 100%);

  --secondary: hsl(217 46% 20%);
  --secondary-foreground: hsl(0 0% 100%);

  --muted: oklch(96.8% 0.007 247.896);
  --muted-foreground: #5e6b64;

  --accent: hsla(222, 100%, 27%, 0.533);
  --accent-foreground: hsl(0 0% 100%);

  --destructive: hsl(0 84.2% 60.2%);
  --destructive-foreground: hsl(210 40% 98%);

  --success: #1a7a4a;
  --border: #d3d7de;
  --input: #d3d7de;
  --ring: hsl(350 87% 42%);

  --radius: 0.75rem;

  --special-shadow:
    rgba(24, 52, 36, 0.15) 0px 1.20932px 1.20932px -0.46875px,
    rgba(24, 52, 36, 0.15) 0px 2.86629px 2.86629px -0.9375px,
    rgba(24, 52, 36, 0.14) 0px 5.22841px 5.22841px -1.40625px,
    rgba(24, 52, 36, 0.14) 0px 8.69222px 8.69222px -1.875px,
    rgba(24, 52, 36, 0.13) 0px 14.0372px 14.0372px -2.34375px,
    rgba(24, 52, 36, 0.12) 0px 22.9776px 22.9776px -2.8125px,
    rgba(24, 52, 36, 0.1) 0px 39.5658px 39.5658px -3.28125px,
    rgba(24, 52, 36, 0.05) 0px 72px 72px -3.75px;

  --font-poppins: "Poppins", sans-serif;
  --font-manrope: var(--font-manrope);
}

body {
  font-family: var(--font-poppins);
  background: var(--background);
  color: var(--foreground);
  font-optical-sizing: auto;
}

h1 {
  font-optical-sizing: auto;
  text-wrap: balance;
  max-width: 1200px;
}

h2 {
  font-optical-sizing: auto;
  text-wrap: balance;
  max-width: 30ch;
  font-size: clamp(1.75rem, 2.75vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--foreground);
}

h3,
h4,
h5,
h6 {
  font-optical-sizing: auto;
  text-wrap: balance;
  max-width: 38ch;
}

h1,
h2,
h3,
h4,
h5,
h6,
button,
strong,
a {
  font-family: var(--font-manrope);
  font-optical-sizing: auto;
}

p {
  text-wrap: balance;
}

/* ── Utilities ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.container {
  width: 100%;
  max-width: 1536px;
  margin-inline: auto;
  padding-inline: 2rem;
}

ul,
ol {
  list-style: inside;
}

.bg-muted {
  background-color: var(--muted);
}

.text-secondary {
  color: var(--secondary);
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 30px;
  text-decoration: none;
  cursor: pointer;
  gap: 0.75rem;
  white-space: nowrap;
  border: 1.5px solid transparent;
  overflow: hidden;
  transition:
    box-shadow 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease;
}

.btn-lg {
  padding: 0.5rem;
}

.btn-label {
  padding-right: 1rem;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.btn-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-size: 0.875rem;
  transform: translateX(0) rotate(0deg);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Add to arrow circle when you want a diagonal (↗) starting angle */
.btn-arrow--diagonal {
  transform: translateX(0) rotate(-45deg);
}

/* Disable hover animation on a specific icon */
.btn-arrow--static {
  transition: none;
}

/* Hover: icon on LEFT (default) — icon slides right toward text, label slides left toward icon */
.btn:hover .btn-arrow:not(.btn-arrow--static) {
  transform: translateX(var(--arrow-travel, 0px)) rotate(360deg);
}

.btn:hover .btn-arrow--diagonal:not(.btn-arrow--static) {
  transform: translateX(var(--arrow-travel, 0px)) rotate(315deg); /* -45 + 360 */
}

.btn:hover .btn-label {
  transform: translateX(calc(-1 * var(--label-travel, 0px)));
}

/* ── Icon on RIGHT ───────────────────────────────────────── */
/* Apply to the .btn element when the icon is placed after the label */
.btn--icon-right .btn-label {
  padding-right: 0;
  padding-left: 1rem;
}

/* Icon slides left toward text, label slides right toward icon */
.btn--icon-right:hover .btn-arrow:not(.btn-arrow--static) {
  transform: translateX(calc(-1 * var(--arrow-travel, 0px))) rotate(360deg);
}

.btn--icon-right:hover .btn-arrow--diagonal:not(.btn-arrow--static) {
  transform: translateX(calc(-1 * var(--arrow-travel, 0px))) rotate(315deg);
}

.btn--icon-right:hover .btn-label {
  transform: translateX(calc(var(--label-travel, 0px) - 0.75rem));
}

/* ── Primary ────────────────────────────────────────────── */
.btn--primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 2px 10px hsl(350 87% 42% / 0.35);
}

.btn--primary .btn-arrow {
  background: var(--primary-foreground);
  color: var(--primary);
}

.btn--primary:hover {
  box-shadow: 0 4px 18px hsl(350 87% 42% / 0.45);
}

/* ── Outline ────────────────────────────────────────────── */
.btn--outline {
  background: transparent;
  border-color: var(--border);
  color: var(--foreground);
}

.btn--outline .btn-arrow {
  background: var(--foreground);
  color: var(--background);
}

.btn--outline:hover {
  background: var(--muted);
  border-color: var(--foreground);
}

/* ── Secondary ──────────────────────────────────────────── */
.btn--secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
  border-color: var(--secondary);
}

.btn--secondary .btn-arrow {
  background: var(--secondary-foreground);
  color: var(--secondary);
}

.btn--secondary:hover {
  background: hsl(217 46% 15%);
  border-color: hsl(217 46% 15%);
  box-shadow: 0 4px 14px hsl(217 46% 15% / 0.3);
}

.highlight {
  color: var(--primary);
}

/* -- GHOST ------------------------------------------------ */

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  border-radius: 30px;
  padding: 0.25rem 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  text-decoration: none;
  transition:
    background 0.25s,
    border-color 0.25s;
  white-space: nowrap;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost .btn-arrow {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}

/* ── Site header ────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: hsl(0 0% 100% / 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  height: 4rem;
  gap: 0.5rem;
}

/* Logo */
.site-header__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 1rem;
}

.site-header__logo-img {
  height: 2.25rem;
  width: auto;
  display: block;
}

/* Desktop nav */
.site-header__nav {
  display: none;
  align-items: center;
  gap: 0.125rem;
  justify-content: center;
  flex: 1;
}

@media (min-width: 1024px) {
  .site-header__nav {
    display: flex;
  }
}

/* Nav links */
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-decoration: none;
  border-radius: 0.375rem;
  background: none;
  border: none;
  cursor: pointer;
  transition:
    color 0.15s,
    background 0.15s;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link--dropdown[aria-expanded="true"] {
  color: var(--foreground);
  background: var(--muted);
}

.nav-link__chevron {
  font-size: 0.6875rem;
  transition: transform 0.2s;
}

/* Desktop actions */
.site-header__actions {
  display: none;
  align-items: center;
  gap: 0.875rem;
}

@media (min-width: 1024px) {
  .site-header__actions {
    display: flex;
  }
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.15s;
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--foreground);
}

/* Mobile toggle */
.site-header__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
  font-size: 1.2rem;
  margin-left: auto;
}

@media (min-width: 1024px) {
  .site-header__toggle {
    display: none;
  }
}

/* ── Services dropdown ──────────────────────────────────── */
.nav-dropdown {
  position: relative;
}

.mega-menu {
  display: none;
  position: fixed;
  top: var(--mega-menu-top, 4rem);
  left: 50%;
  transform: translateX(-50%);
  width: min(720px, calc(100vw - 2rem));
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.875rem;
  box-shadow: 0 16px 48px hsl(217 46% 15% / 0.12);
  padding: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 2rem;
  z-index: 50;
}

.mega-menu--open {
  display: grid;
}

.mega-menu__heading {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted-foreground);
  margin-bottom: 0.625rem;
}

.mega-menu__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.mega-menu__link {
  display: block;
  padding: 0.375rem 0.5rem;
  font-size: 0.875rem;
  color: hsl(217 46% 25%);
  text-decoration: none;
  border-radius: 0.375rem;
  transition:
    color 0.15s,
    background 0.15s;
}

.mega-menu__link:hover {
  color: var(--primary);
  background: var(--muted);
}

/* Social proof column */
.mega-menu__col--proof {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.proof-card {
  border-radius: 0.625rem;
  padding: 1rem;
}

.proof-card--stat {
  background: var(--muted);
}

.proof-card__stat-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.proof-card__icon {
  color: var(--primary);
  font-size: 1.125rem;
}

.proof-card__number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--foreground);
}

.proof-card__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.proof-card__sub {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.625rem;
}

.proof-card__stars {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  color: var(--primary);
  font-size: 0.75rem;
}

.proof-card__rating {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-left: 0.375rem;
}

.proof-card--quote {
  background: var(--secondary);
  color: var(--secondary-foreground);
}

.proof-card__quote-icon {
  color: var(--primary);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  display: block;
}

.proof-card__quote-text {
  font-size: 0.75rem;
  line-height: 1.55;
  font-style: italic;
  color: hsl(0 0% 90%);
}

.proof-card__quote-author {
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.5rem;
  color: hsl(0 0% 80%);
}

/* ── Sidebar backdrop ───────────────────────────────────── */
.sidebar-backdrop {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: hsl(217 46% 10% / 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.sidebar-backdrop--open {
  opacity: 1;
  pointer-events: all;
}

/* ── Sidebar panel ──────────────────────────────────────── */
.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 46;
  height: 100dvh;
  width: min(320px, 85vw);
  background: var(--card);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  opacity: 0;
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.25s ease;
  box-shadow: -8px 0 32px hsl(0 0% 0% / 0.12);
  overflow-y: auto;
}

.sidebar--open {
  transform: translateX(0);
  opacity: 1;
}

@media (min-width: 1024px) {
  .sidebar,
  .sidebar-backdrop {
    display: none !important;
  }
}

/* Sidebar head */
.sidebar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.sidebar__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.sidebar__logo-img {
  height: 2rem;
  width: auto;
  display: block;
}

.sidebar__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted-foreground);
  font-size: 1.125rem;
  border-radius: 0.375rem;
  transition:
    color 0.15s,
    background 0.15s;
}

.sidebar__close:hover {
  color: var(--foreground);
  background: var(--muted);
}

/* Sidebar nav */
.sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  padding: 0.875rem 0.75rem;
  flex: 1;
}

/* Sidebar footer */
.sidebar__footer {
  padding: 0.875rem 1rem;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.sidebar__footer .btn {
  width: 100%;
}

/* ── Mobile nav links (used inside sidebar) ─────────────── */
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5625rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-decoration: none;
  border-radius: 0.375rem;
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition:
    color 0.15s,
    background 0.15s;
}

.mobile-nav-link:hover {
  color: var(--foreground);
  background: var(--muted);
}

.mobile-nav-link--sub {
  padding-left: 1.5rem;
  font-size: 0.8125rem;
}

.mobile-accordion__chevron {
  font-size: 0.75rem;
  transition: transform 0.2s;
}

.mobile-accordion__body {
  display: none;
  flex-direction: column;
  gap: 0.125rem;
}

.mobile-accordion__body--open {
  display: flex;
}

/* ══════════════════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════════════════ */
.cta-section {
  padding: 6rem 0 7rem;
  background: var(--background);
  overflow: visible;
}

.cta-banner {
  position: relative;
  display: flex;
  align-items: center;
}

/* ── Image column ── */
.cta-banner__img-col {
  flex-shrink: 0;
  width: 34%;
  position: relative;
  z-index: 2;
}

.cta-banner__image {
  width: 100%;
  max-width: 360px;
  display: block;
  aspect-ratio: 2.8 / 4;
  object-fit: cover;
  border-radius: 1.5rem;
  filter: grayscale(100%) contrast(1.05);
  transform: rotate(-4deg) scale(1.06) translateX(7vw);
  transform-origin: bottom center;
  box-shadow: 0 24px 64px hsl(0 0% 0% / 0.18);
}

/* ── Content card — background only covers text height ── */
.cta-banner__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  justify-content: center;
  align-self: center;
  padding: 3.5rem 4rem 3.5rem 8rem;
  background: var(--secondary);
  border-radius: 1.5rem;
  margin-left: -3rem;
}
.cta-banner__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: hsl(0 0% 100%);
  line-height: 1.2;
  margin: 0;
}

.cta-banner__desc {
  font-size: 1rem;
  line-height: 1.75;
  color: hsl(0 0% 100% / 0.82);
  max-width: 54ch;
  margin: 0;
}

/* TWO COLUMN GRID */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ══════════════════════════════════════════════════════════
   SERVICE CTA
══════════════════════════════════════════════════════════ */
.service_cta {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: stretch;
  min-height: 360px;
  padding-block: 5rem;
}

/* ── Feature list — cols 5–7 ── */
.service_cta_features {
  grid-column: 2 / 6;
  padding: 3.5rem 2rem 3.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
}

.scta-heading {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 0;
}

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

.scta-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.scta-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.4rem;
  background: hsl(350 87% 95%);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.scta-item__title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0 0 0.2rem;
}

.scta-item__desc {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  line-height: 1.5;
  margin: 0;
}

/* ── Image banner — cols 8–12 ── */
.service_cta_banner {
  grid-column: 6 / 13;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top-left-radius: 1.25rem;
  border-bottom-left-radius: 1.25rem;
}

.scta-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* smooth ease-in curve: image visible on right, fades to secondary at 50% */
.scta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    transparent 0%,
    hsl(217 46% 20% / 0.07) 10%,
    hsl(217 46% 20% / 0.22) 22%,
    hsl(217 46% 20% / 0.5) 35%,
    hsl(217 46% 20% / 0.8) 45%,
    hsl(217 46% 20% / 1) 50%
  );
}

.scta-banner__content {
  position: relative;
  z-index: 1;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  max-width: 50%;
}

.scta-banner__heading {
  font-size: 2rem;
  color: var(--primary-foreground);
  line-height: 1.3;
  margin: 0;
}

.scta-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

/* btn--outline forced white when sitting on the dark gradient */
.service_cta_banner .btn--outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.service_cta_banner .btn--outline .btn-arrow {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.service_cta_banner .btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .service_cta_features {
    grid-column: 4 / 7;
    padding: 3rem 1.5rem 3rem 0;
  }
  .service_cta_banner {
    grid-column: 7 / 13;
  }
}

@media (max-width: 768px) {
  .service_cta {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .service_cta_features {
    grid-column: 1 / -1;
    padding: 2.5rem 1.5rem;
  }
  .service_cta_banner {
    grid-column: 1 / -1;
    min-height: 300px;
    border-radius: 1rem;
    margin-inline: 0.5rem;
  }
  .scta-banner__content {
    max-width: none;
    padding: 2rem 1.5rem;
  }
  .scta-banner__overlay {
    background: linear-gradient(
      to top,
      hsl(217 46% 20% / 1) 0%,
      hsl(217 46% 20% / 0.8) 30%,
      hsl(217 46% 20% / 0.62) 65%,
      transparent 90%
    );
  }
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.site-footer {
  position: relative;
  overflow: hidden;
  color: var(--foreground);
  background-color: var(--muted);
}

.site-footer .container {
  padding-top: 4rem;
}

.footer-map {
  width: 100%;
  line-height: 0;
  background-color: var(--border);
}

.footer-map iframe {
  width: 100%;
  height: 320px;
  display: block;
  border: 0;
  filter: grayscale(15%);
}

/* ── Brand + CTA ── */
.footer-brand__logo-link {
  display: inline-block;
}

.footer-brand__logo {
  height: 42px;
  width: auto;
  object-fit: contain;
  object-position: left;
}

.footer-brand__tagline {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--muted-foreground);
  max-width: 46ch;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.625rem;
  background: var(--primary);
  color: hsl(0 0% 100%);
  border-radius: 0.6rem;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  margin-top: 0.25rem;
  border: 2px solid var(--primary);
  transition:
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    transform 0.18s ease;
}
.footer-cta-btn:hover {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* ── Software We Use strip ── */
/* Software We Use — column variant (inside footer-nav-grid) */
.footer-software__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--muted);
  border: 1px solid var(--background);
  border-radius: 0.625rem;
  padding: 0.5rem 0.75rem;
  color: var(--muted-foreground);
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.18s ease;
}
.footer-software__item:hover {
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.footer-software__item img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  border-radius: 4px;
  flex-shrink: 0;
}

.footer-software__item span {
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
}

.footer-software-list {
  gap: 0.625rem !important;
}

/* ── Nav grid — 4 columns ── */
.footer-nav-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 4rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-nav__heading {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-family: var(--font-manrope);
  font-optical-sizing: auto;
  text-transform: uppercase;
  color: var(--foreground);
}

.footer-nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-nav__link {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition:
    color 0.2s ease,
    gap 0.2s ease;
}
.footer-nav__link::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.22s ease;
  flex-shrink: 0;
}
.footer-nav__link:hover {
  color: var(--foreground);
}
.footer-nav__link:hover::before {
  width: 10px;
}

/* ── Social icons — pill hover effect ── */
.footer-social {
  display: flex;
  gap: 0.5rem;
}
.footer-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: var(--muted);
  border: 1px solid var(--border);
  color: var(--muted-foreground);
  font-size: 0.9rem;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.18s ease;
}
.footer-social__link:hover {
  background: var(--primary);
  color: hsl(0 0% 100%);
  border-color: var(--primary);
  transform: translateY(-3px);
}

/* ── Location ── */
.footer-brand__location {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}
.footer-brand__location-icon {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
}

.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.25rem !important;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom__copy {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
}

.form-bottom__terms {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.form-bottom__terms a:hover {
  color: var(--primary);
}

.footer-heart {
  font-style: normal;
}

/* ── max-width: 1100px ── */
@media (max-width: 1100px) {
  .footer-nav-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 4rem 0 5rem;
  }
  .cta-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .cta-banner__img-col {
    width: 70%;
    margin: 0 auto;
    margin-bottom: -2.5rem;
    z-index: 2;
  }
  .cta-banner__image {
    transform: rotate(-2deg) scale(1.02);
    aspect-ratio: 4 / 3;
    max-width: 100%;
  }
  .cta-banner__card {
    margin-left: 0;
    padding: 4rem 2rem 2.5rem;
    border-radius: 1.5rem;
    align-self: stretch;
  }
  .cta-banner__card .btn {
    align-self: center;
  }

  .footer-top {
    max-width: 100%;
  }
  .footer-nav-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-arcs {
    width: 140px;
    height: 140px;
    opacity: 0.5;
  }
}

/* ── Buttons — mobile ───────────────────────────────────── */
@media (max-width: 639px) {
  .container {
    padding-inline: 1.5rem;
  }

  .btn {
    font-size: 0.8125rem;
    gap: 0.5rem;
    padding: 0.3rem 0.4rem;
  }

  .btn-label {
    padding-right: 0.75rem;
  }

  .btn--icon-right .btn-label {
    padding-right: 0;
    padding-left: 0.75rem;
  }

  .btn-arrow {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.8125rem;
  }
}

@media (max-width: 480px) {
  .cta-banner__img-col {
    width: 88%;
  }
  .cta-banner__card {
    padding: 3.5rem 1.5rem 2rem;
  }
  .cta-banner__title {
    font-size: 1.5rem;
  }

  .footer-top {
    padding-top: 3rem;
  }
  .footer-bottom__inner {
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
  }
}

/* ── Contact Form ───────────────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 500px;
  margin: 0 auto;
}

.contact-form h4 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--secondary);
  margin: 0;
  text-align: center;
}

.contact-form p {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form .form-labels {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--input);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  background: var(--background);
  color: var(--foreground);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 2px hsl(350 87% 42% / 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted-foreground);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .section_cta {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ══════════════════════════════════════════════════════════
   REUSABLE SECTION UTILITIES
══════════════════════════════════════════════════════════ */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-foreground);
  background: var(--muted);
  border-radius: 999px;
  padding: 8px 16px;
  width: fit-content;
  border: 1px solid var(--border);
}

.section-heading {
  font-size: clamp(1.75rem, 2.75vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--foreground);
}

/* ── Shared page-banner h1 ─────────────────────────────────── */
.page-banner__title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.section-desc {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.75;
  max-width: 1000px;
}

/* ── Section head wrapper ───────────────────────────────── */
.section-head {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.section-head--center {
  text-align: center;
  align-items: center;
}

.section-head--center .section-desc {
  max-width: 58ch;
}

/* label variant for dark backgrounds */
.section-label--on-dark {
  color: hsl(350 87% 75%);
  background: hsl(350 87% 42% / 0.25);
  border-color: transparent;
}

.section_cta {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 0.825rem;
}

/* ══════════════════════════════════════════════════════════
   FAQ SECTION & ACCORDION
══════════════════════════════════════════════════════════ */
.faq-section {
  padding-block: 6rem;
}

.faq-section__container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.section-doodle {
  position: absolute;
  top: var(--doodle-top, 80px);
  right: var(--doodle-right, 18%);
  display: flex;
  align-items: flex-start;
  color: var(--primary);
  pointer-events: none;
  flex-direction: column-reverse;
  z-index: 1;
}

.section-doodle__arrow {
  width: 71px;
  height: 72px;
  transform: rotate(142deg);
}

.section-doodle__text {
  font-family: "Caveat", cursive;
  font-size: 1.375rem;
  color: var(--primary);
  white-space: nowrap;
}

/* Position context for all sections that use a doodle */
.split-section .container,
.services-section .container,
.process-section .container,
.estimator-plans .container,
.portfolio-section .container,
.why-section .container,
.estimator-services .container,
.story-section .container,
.mission-section .container,
.values-section .container,
.svc-section .container,
.deliverable-section .container,
.srv-carousel-section .container,
.projects-section .container,
.testimonials-section .container,
.faq-section__container {
  position: relative;
}

.faq-section__header {
  text-align: center;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

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

.faq-list {
  width: 100%;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item .section-desc {
  text-align: left;
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-item__question {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  line-height: 1.4;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  background: var(--secondary);
  color: var(--secondary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  transition: background 0.2s ease;
}

.faq-item__trigger:hover .faq-item__icon {
  background: var(--primary);
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    opacity 0.35s ease;
  opacity: 0;
}

.faq-item--open .faq-item__body {
  max-height: 400px;
  opacity: 1;
}

.faq-item__body .section-desc {
  padding: 0 1.5rem 1.5rem;
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIAL CAROUSEL  (reusable across pages)
══════════════════════════════════════════════════════════ */
.testimonials-section {
  padding: 5rem 0;
}

.testimonials-section .section-doodle {
  top: 0;
}

.testimonials-section__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.testimonials-section__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  font-weight: 600;
}

.testimonials-section__title {
  font-size: clamp(1.75rem, 2.75vw, 2.75rem);
  font-weight: 700;
  color: var(--secondary);
  max-width: none;
}

.testimonial-carousel {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Each slide = 1 card; CSS sizes it so 3 fit side-by-side */
.testimonial-slide {
  flex: 0 0 calc((100% - 3rem) / 3); /* (100% - 2 × 1.5rem gap) / 3 */
  min-width: 0;
}

@media (max-width: 900px) {
  .testimonial-slide {
    flex: 0 0 calc((100% - 1.5rem) / 2);
  }
}

@media (max-width: 580px) {
  .testimonial-slide {
    flex: 0 0 100%;
  }
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.testimonial-card__stars {
  display: flex;
  gap: 0.25rem;
  color: hsl(45 90% 50%);
  font-size: 1rem;
}

.testimonial-card__quote {
  font-size: 1.0625rem;
  color: var(--foreground);
  line-height: 1.75;
  font-style: italic;
  max-width: none;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.testimonial-card__avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0;
}

.testimonial-card__role {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  margin: 0;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.testimonial-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--card);
  color: var(--foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.875rem;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.testimonial-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
  border: none;
  padding: 0;
}

.testimonial-dot--active {
  background: var(--primary);
  transform: scale(1.35);
}

@media (max-width: 600px) {
  .testimonials-section {
    padding: 3.5rem 0;
  }

  .testimonial-card {
    padding: 1.75rem 1.25rem;
  }

  .testimonial-card__quote {
    font-size: 1rem;
  }
}

/* ══════════════════════════════════════════════════════════
   CTA BLOCK  (reusable centered call-to-action section)
══════════════════════════════════════════════════════════ */
.cta-block {
  padding: 5rem 0;
}

.cta-block__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.cta-block__title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.2;
  max-width: 620px;
}

.cta-block__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

@media (max-width: 600px) {
  .cta-block {
    padding: 3.5rem 0;
  }
}

/* ══════════════════════════════════════════════════════════
   CTA STRIP
══════════════════════════════════════════════════════════ */
.cta-strip {
  background: var(--secondary);
  padding: 4rem 0;
}

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

.cta-strip__text h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  color: #fff;
  max-width: 36ch;
  line-height: 1.25;
}

.cta-strip__text p {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
}

.cta-strip__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* WHY CHOOSE US SECTION */

.why-section {
  padding: 5rem 0;
  background: var(--muted);
}

.why-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  text-align: center;
}

.why-section__header .section-heading {
  max-width: 20ch;
}

.why-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.bento-card {
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.bento-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}

.bento-card--wide {
  grid-column: span 2;
}

.bento-card--tall {
  grid-row: span 2;
}

.bento-card--full {
  grid-column: 1 / -1;
}

.bento-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.bento-card__icon--light {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.bento-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  line-height: 1.35;
  margin: 0;
}

.bento-card__desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.75;
  margin: 0;
  flex: 1;
}

.bento-card__stat {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.bento-stat__num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.bento-stat__label {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

.bento-card--accent {
  background: var(--secondary);
  border-color: transparent;
}

.bento-card--accent .bento-card__title {
  color: #fff;
}

.bento-card--accent .bento-card__desc {
  color: rgba(255, 255, 255, 0.75);
}

.bento-card__accent-inner {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.bento-card__accent-left {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  flex: 1;
}

.bento-card__accent-right {
  flex-shrink: 0;
}

.bento-accent-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
}

.bento-accent-badge {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

.bento-accent-badge i {
  color: var(--secondary-foreground);
  font-size: 0.875rem;
}

.bento-card--stat-highlight {
  background: var(--foreground);
  border-color: transparent;
  position: relative;
  overflow: hidden;
}

.bento-card--stat-highlight .bento-card__icon {
  background: rgba(255, 255, 255, 0.12);
}

.bento-card--stat-highlight .bento-card__title {
  color: rgba(255, 255, 255, 0.9);
}

.bento-card--stat-highlight .bento-card__desc {
  color: rgba(255, 255, 255, 0.6);
}

.bento-big-stat {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-top: 0.25rem;
}

.bento-big-stat__unit {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: -0.25rem;
  margin-bottom: 0.25rem;
}

.bento-stat-btns {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: auto;
  padding-top: 1rem;
}

.bento-stat-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.bento-stat-btn--primary {
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
}
.bento-stat-btn--primary:hover {
  background: hsl(350 87% 35%);
  border-color: hsl(350 87% 35%);
}

.bento-stat-btn--outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.bento-stat-btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ══════════════════════════════════════════════════════════
   3-STEP PROCESS SECTION
══════════════════════════════════════════════════════════ */

.process-section {
  position: relative;
  padding: 6rem 0 7rem;
  overflow: hidden;
  background: var(--background);
}

.process-section__bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    hsl(220 13% 88%) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  opacity: 0.55;
  pointer-events: none;
}

.process__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  margin-bottom: 4.5rem;
  position: relative;
  z-index: 1;
}

.process__subtitle {
  max-width: 46ch;
}

.process__track {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
  z-index: 1;
}

.process-step {
  flex: 1;
  min-width: 0;

  opacity: 0;
  transform: translateY(52px);
  transition:
    opacity 0.65s ease var(--step-delay, 0ms),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1) var(--step-delay, 0ms);
}

.process-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.process-step__inner {
  position: relative;
  height: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.75rem;
  padding: 2.25rem 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.process-step__inner:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
  transform: translateY(-3px);
}

.process-step__inner--alt {
  background: hsl(160 30% 97%);
}

/* Dark card (step 3) */
.process-step__inner--dark {
  background: var(--secondary);
  border-color: transparent;
}

.process-step__inner--dark .process-step__title {
  color: #fff;
}

.process-step__inner--dark .process-step__desc {
  color: rgba(255, 255, 255, 0.68);
}

.process-step__inner--dark .process-step__num-bg {
  color: rgba(255, 255, 255, 0.05);
}

.process-step__num-bg {
  position: absolute;
  bottom: -0.5rem;
  right: 1rem;
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
  color: hsl(220 13% 91%);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

.process-step__icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: 0.875rem;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-bottom: 0.125rem;
}

.process-step__icon-wrap--alt {
  background: hsl(160 50% 38%);
}

.process-step__icon-wrap--dark {
  background: rgba(255, 255, 255, 0.15);
}

.process-step__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: hsl(350 87% 97%);
  border: 1px solid hsl(350 87% 88%);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
}

.process-step__badge--alt {
  color: hsl(160 50% 38%);
  background: hsl(160 50% 96%);
  border-color: hsl(160 50% 82%);
}

.process-step__badge--dark {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.process-step__title {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--foreground);
  line-height: 1.3;
  margin: 0;
}

.process-step__desc {
  position: relative;
  z-index: 20;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.78;
  margin: 0;
  flex: 1;
}

.process-step__btn {
  margin-top: auto;
  align-self: flex-start;
  z-index: 10;
}

.process-connector {
  flex: 0 0 clamp(80px, 9vw, 140px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding-inline: 0.25rem;
  position: relative;
  align-self: center;

  opacity: 0;
  transition: opacity 0.3s ease var(--arrow-delay, 0.5s);
}

.process-connector.is-visible {
  opacity: 1;
}

.process-connector__svg {
  width: 100%;
  height: auto;
  color: var(--foreground);
  overflow: visible;
}

.process-connector__path,
.process-connector__head {
  transition: stroke-dashoffset 1.1s cubic-bezier(0.4, 0, 0.2, 1)
    var(--arrow-delay, 0.5s);
}

.process-connector--2 .process-connector__svg {
  color: var(--primary);
}

.process-connector__svg--filled {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.1s cubic-bezier(0.4, 0, 0.2, 1)
    var(--arrow-delay, 0.5s);
}
.process-connector.is-visible .process-connector__svg--filled {
  clip-path: inset(0 0% 0 0);
}

.process-connector__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted-foreground);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

@media (max-width: 900px) {
  .process__track {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .process-step {
    width: 100%;
    max-width: 520px;
  }

  .process-connector {
    flex: 0 0 auto;
    width: 60px;
    height: 70px;
    transform: rotate(90deg);
  }

  .process-connector__label {
    display: none;
  }

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

  .why-bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-card--wide {
    grid-column: 1 / -1;
  }

  .bento-card--tall {
    grid-row: span 1;
  }

  .bento-card__accent-inner {
    flex-direction: column;
    gap: 1.5rem;
  }

  .bento-accent-badges {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding-block: 4rem;
  }

  .section-doodle {
    display: none;
  }

  .faq-section__heading {
    font-size: 1.625rem;
  }
}

@media (max-width: 640px) {
  .faq-section {
    padding-block: 3rem;
  }

  .process-section {
    padding: 3rem 0 4rem;
  }

  .process__header {
    margin-bottom: 3rem;
  }

  .process-step__inner {
    padding: 1.75rem 1.5rem;
  }

  .process-step__num-bg {
    font-size: 5rem;
  }

  .cta-strip__actions {
    flex-direction: column;
  }

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

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

  .bento-card {
    padding: 1rem 1.5rem;
  }

  .bento-card--full,
  .bento-card--wide {
    grid-column: 1 / -1;
  }

  .bento-big-stat {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .scta-grid {
    grid-template-columns: 1fr;
  }
  .scta-banner__content {
    padding: 1.5rem 1.25rem;
  }
  .scta-banner__heading {
    font-size: 1.5rem;
  }
}
