/**
 * Logo Outlets — static mirror styles
 * Mirrors src/styles.css tokens + section utility classes from the React app.
 */

@font-face {
  font-family: "WF Visual Sans";
  src: url("https://dhygzobemt712.cloudfront.net/Fonts/VF/WFVisualSansVF.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --radius: 0.875rem;
  --background: oklch(1 0 0);
  --foreground: oklch(0.18 0.02 260);
  --surface: oklch(0.985 0.005 260);
  --surface-soft: oklch(0.97 0.008 260);
  --card: oklch(1 0 0);
  --muted-foreground: oklch(0.5 0.02 260);
  --primary: oklch(0.635 0.245 22.5);
  --primary-foreground: oklch(1 0 0);
  --primary-hover: oklch(0.58 0.245 22.5);
  --border: oklch(0.92 0.008 260);
  --font-display: "WF Visual Sans", ui-sans-serif, system-ui, sans-serif;
  --font-sans: "WF Visual Sans", ui-sans-serif, system-ui, sans-serif;
  --shadow-soft: 0 1px 2px 0 rgb(0 0 0 / 0.04), 0 4px 16px -4px rgb(0 0 0 / 0.08);
  --shadow-lift: 0 10px 30px -10px rgb(0 0 0 / 0.18);
  --shadow-brand: 0 18px 40px -16px oklch(0.62 0.24 25 / 0.45);

  /* Align Bootstrap 5 with app tokens (Tailwind-scale typography) */
  --bs-body-font-family: var(--font-sans);
  --bs-body-font-size: 1rem;
  --bs-body-line-height: 1.5;
  --bs-body-color: var(--foreground);
  --bs-secondary-color: var(--muted-foreground);
  --bs-border-color: var(--border);
  --bs-border-radius-2xl: 1rem;
  --bs-border-radius-3xl: 1.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

/* Lucide-equivalent icon box (Tailwind h-* w-* as font-size on Bootstrap Icons) */
.icon-lucide-14 {
  font-size: 0.875rem;
  line-height: 1;
  width: 0.875rem;
  height: 0.875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.icon-lucide-16 {
  font-size: 1rem;
  line-height: 1;
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.icon-lucide-20 {
  font-size: 1.25rem;
  line-height: 1;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.icon-lucide-24 {
  font-size: 1.5rem;
  line-height: 1;
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.icon-lucide-28 {
  font-size: 1.75rem;
  line-height: 1;
  width: 1.75rem;
  height: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Tailwind gap-5 (1.25rem) for Bootstrap rows */
.row.mirror-gutter-5 {
  --bs-gutter-x: 1.25rem;
  --bs-gutter-y: 1.25rem;
}

/* Portfolio grid: gap-4 sm:gap-5 */
.row.mirror-gutter-portfolio {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
}
@media (min-width: 640px) {
  .row.mirror-gutter-portfolio {
    --bs-gutter-x: 1.25rem;
    --bs-gutter-y: 1.25rem;
  }
}

/* Section blocks after headings (mt-12 / mt-14 / mt-16) */
.mirror-mt-12 {
  margin-top: 3rem;
}
.mirror-mt-14 {
  margin-top: 3.5rem;
}
.mirror-mt-16 {
  margin-top: 4rem;
}

/* Tailwind mt-5 = 1.25rem (Bootstrap .mt-5 is larger — do not mix) */
.mirror-tw-mt-5 {
  margin-top: 1.25rem;
}

.rounded-mirror-3xl {
  border-radius: 1.5rem;
}

.mirror-p-7 {
  padding: 1.75rem;
}

.mirror-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}
@media (min-width: 640px) {
  .mirror-stat-value {
    font-size: 1.875rem;
  }
}

.mirror-stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-foreground);
}
@media (min-width: 640px) {
  .mirror-stat-label {
    font-size: 0.875rem;
  }
}

.mirror-card-title-pain {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  color: var(--foreground);
}
@media (min-width: 640px) {
  .mirror-card-title-pain {
    font-size: 1.25rem;
  }
}

.mirror-body-sm-relaxed {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-foreground);
}
@media (min-width: 640px) {
  .mirror-body-sm-relaxed {
    font-size: 1rem;
  }
}

.mirror-benefit-title {
  margin-top: 1.25rem; /* mt-5 */
  font-size: 1.25rem; /* text-xl */
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  color: var(--foreground);
}

.mirror-benefit-desc {
  margin-top: 0.625rem; /* mt-2.5 */
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-foreground);
}

.mirror-process-title {
  margin-top: 1.5rem; /* mt-6 */
  font-size: 1.25rem; /* text-xl */
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  color: var(--foreground);
}

.mirror-process-desc {
  margin-top: 0.625rem; /* mt-2.5 */
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-foreground);
}

.mirror-why-title {
  margin-top: 1.25rem; /* mt-5 */
  font-size: 1.125rem; /* text-lg */
  line-height: 1.75rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  color: var(--foreground);
}

.why-icon-wrap {
  display: flex;
  width: 3.5rem;
  height: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: var(--primary);
  color: var(--primary-foreground);
  margin-left: auto;
  margin-right: auto;
}

.why-icon-wrap > i {
  font-size: 1.75rem;
  line-height: 1;
}

.mirror-testimonial-divider {
  margin-top: 3.5rem; /* mt-14 */
  padding-top: 2.5rem; /* pt-10 */
  border-top: 1px solid var(--border);
}

.mirror-testimonial-quote {
  margin-top: 1rem; /* mt-4 */
  font-size: 1rem; /* text-base */
  line-height: 1.625;
  color: var(--foreground);
}

.mirror-card-author-row {
  margin-top: 1.5rem; /* mt-6 */
  padding-top: 1.25rem; /* pt-5 */
  border-top: 1px solid var(--border);
}

.mirror-mt-10 {
  margin-top: 2.5rem;
}

.mirror-role {
  font-size: 0.75rem; /* text-xs */
  color: var(--muted-foreground);
}

.mirror-price-display {
  display: inline-block;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 3.75rem; /* text-6xl */
}

@media (min-width: 640px) {
  .mirror-price-display {
    font-size: 4.5rem; /* text-7xl */
  }
}

@media (min-width: 768px) {
  .mirror-price-display {
    font-size: 6rem; /* text-8xl */
  }
}

.mirror-price-caption {
  margin-top: 0.5rem; /* mt-2 */
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
}

.text-primary-custom {
  color: var(--primary);
}

.bg-primary-custom {
  background-color: var(--primary);
}

/* Layout */
.container-pad {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .container-pad {
  }
}

@media (min-width: 1024px) {
  .container-pad {
  }
}

.section-pad {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Reveal (scroll) + animate.css hook */
.reveal {
  opacity: 0;
}

.reveal.in-view {
  opacity: 1;
  animation-duration: 0.9s;
  animation-fill-mode: both;
}

.reveal.in-view.fade-in-up {
  animation-name: fadeInUp;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-brand);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background-color: var(--primary-hover);
  box-shadow: 0 22px 50px -18px oklch(0.62 0.24 25 / 0.6);
  color: var(--primary-foreground);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow-soft);
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgb(255 255 255 / 0.3);
  background: rgb(255 255 255 / 0.1);
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.btn-ghost-light:hover {
  transform: translateY(-2px);
  background: rgb(255 255 255 / 0.2);
  color: #fff;
}

.card-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-lift:hover {
  transform: translateY(-0.375rem); /* -translate-y-1.5 */
  box-shadow: var(--shadow-lift);
}

/* Site header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1030;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  background: rgb(255 255 255 / 0.6);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled {
  border-bottom: 1px solid var(--border);
  background: rgb(255 255 255 / 0.85);
  backdrop-filter: blur(24px);
  box-shadow: 0 2px 20px -12px rgb(0 0 0 / 0.15);
}

.site-header .navbar-inner {
  min-height: 4rem; /* h-16 */
}

@media (min-width: 768px) {
  .site-header .navbar-inner {
    min-height: 5rem; /* md:h-20 */
  }
}

.nav-primary-gap {
  gap: 2rem; /* gap-8 */
}

.brand-wordmark {
  font-size: 1.125rem; /* text-lg */
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--foreground);
  font-family: var(--font-display);
}
@media (min-width: 640px) {
  .brand-wordmark {
    font-size: 1.25rem; /* sm:text-xl */
  }
}

.btn-header-cta.btn-primary {
  padding: 0.625rem 1.25rem; /* !py-2.5 !px-5 */
  font-size: 0.875rem;
}

.brand-mark {
  display: flex;
  height: 2.25rem;
  width: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 700;
}

.nav-link-custom {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(26 31 46 / 0.75);
  text-decoration: none;
  padding: 0.25rem 0;
}

.nav-link-custom:hover {
  color: var(--primary);
}

.nav-link-custom::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 0;
  background: var(--primary);
  transition: width 0.25s ease;
}

.nav-link-custom:hover::after {
  width: 100%;
}

/* Section heading */
.section-eyebrow {
  display: inline-block;
  border-radius: 9999px;
  padding: 0.375rem 1rem; /* py-1.5 px-4 */
  font-size: 0.75rem; /* text-xs */
  font-weight: 600; /* font-semibold */
  text-transform: uppercase;
  letter-spacing: 0.05em; /* tracking-wider */
  background: oklch(0.635 0.245 22.5 / 0.1);
  color: var(--primary);
}

.section-eyebrow.light {
  background: rgb(255 255 255 / 0.15);
  color: #fff;
}

.section-title {
  margin-top: 1rem; /* mt-4 */
  font-size: 1.875rem; /* text-3xl */
  font-weight: 700;
  line-height: 1.2;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  color: var(--foreground);
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.25rem; /* sm:text-4xl */
  }
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.75rem; /* md:text-[2.75rem] */
    line-height: 1.1; /* md:leading-[1.1] */
  }
}

.section-desc {
  margin-top: 1.25rem; /* mt-5 */
  font-size: 1rem; /* text-base */
  line-height: 1.625; /* leading-relaxed */
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .section-desc {
    font-size: 1.125rem; /* sm:text-lg */
  }
}

.section-desc.text-white {
  color: rgb(255 255 255 / 0.8) !important;
}

/* Hero */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgb(0 0 0 / 0.85),
    rgb(0 0 0 / 0.7),
    rgb(0 0 0 / 0.55)
  );
}

/* Hero (src/components/site/Hero.tsx) */
.hero-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: 6rem; /* pt-28 */
}

@media (min-width: 768px) {
  .hero-section {
    padding-top: 6rem; /* md:pt-32 */
  }
}

.hero-inner {
  padding-top: 2.5rem; /* pt-10 */
  padding-bottom: 5rem; /* pb-20 */
}

@media (min-width: 768px) {
  .hero-inner {
    padding-top: 4rem; /* md:pt-16 */
    padding-bottom: 7rem; /* md:pb-28 */
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem; /* gap-2 */
  border-radius: 9999px;
  border: 1px solid rgb(255 255 255 / 0.2);
  background: rgb(255 255 255 / 0.1);
  padding: 0.375rem 1rem; /* py-1.5 px-4 */
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  backdrop-filter: blur(12px);
}

.hero-title {
  margin-top: 1.25rem; /* mt-5 */
  font-size: 2.25rem; /* text-4xl */
  line-height: 1.05;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem; /* sm:text-5xl */
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem; /* md:text-6xl */
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3rem; /* lg:text-[4rem] */
  }
}

.hero-lead {
  margin-top: 1.5rem; /* mt-6 */
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.625;
  color: rgb(255 255 255 / 0.8);
}

@media (min-width: 640px) {
  .hero-lead {
    font-size: 1.125rem; /* sm:text-lg */
  }
}

.hero-actions {
  margin-top: 2rem; /* mt-8 */
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem; /* gap-4 */
}

.hero-trust {
  margin-top: 2.5rem; /* mt-10 */
  display: grid;
  gap: 0.75rem; /* gap-3 */
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

@media (min-width: 640px) {
  .hero-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* sm:grid-cols-2 */
  }
}

.hero-trust li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem; /* gap-3 */
  font-size: 0.875rem; /* text-sm */
  line-height: 1.25rem;
  color: rgb(255 255 255 / 0.85);
}

.hero-trust li i {
  margin-top: 0.125rem; /* mt-0.5 */
  flex-shrink: 0;
}

.hero-form-card {
  border-radius: 1.5rem; /* rounded-3xl */
  border: 1px solid rgb(255 255 255 / 0.15);
  background: #fff;
  padding: 1.5rem; /* p-6 */
  box-shadow: 0 30px 80px -20px rgb(0 0 0 / 0.45);
}

@media (min-width: 640px) {
  .hero-form-card {
    padding: 2rem; /* sm:p-8 */
  }
}

.hero-form-title {
  font-size: 1.25rem; /* text-xl */
  font-weight: 700;
  color: var(--foreground);
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.hero-form-sub {
  margin-top: 0.375rem; /* mt-1.5 */
  font-size: 0.875rem; /* text-sm */
  color: var(--muted-foreground);
}

.hero-form-badge {
  border-radius: 9999px;
  background: oklch(0.635 0.245 22.5 / 0.1);
  padding: 0.25rem 0.75rem; /* py-1 px-3 */
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
}

.mirror-stats-shell {
  border-radius: 1.5rem; /* rounded-3xl */
  padding: 1rem; /* p-4 */
}

@media (min-width: 640px) {
  .mirror-stats-shell {
    --bs-gutter-x: 1.25rem; /* sm:gap-5 */
    --bs-gutter-y: 1.25rem;
  }
}

@media (min-width: 768px) {
  .mirror-stats-shell {
    padding: 1.5rem; /* md:p-6 */
  }
}

/* Stats overlap */
.stats-overlap {
  position: relative;
  margin-top: -3rem;
}

@media (min-width: 768px) {
  .stats-overlap {
    margin-top: -4rem;
  }
}

/* Pain / service cards icon box */
.icon-box {
  display: flex;
  height: 3rem; /* h-12 */
  width: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem; /* rounded-xl */
  background: oklch(0.635 0.245 22.5 / 0.1);
  color: var(--primary);
  transition: background 0.25s ease, color 0.25s ease;
}

.icon-box > i {
  font-size: 1.5rem; /* Lucide h-6 w-6 */
  line-height: 1;
}

.group-card:hover .icon-box {
  background: var(--primary);
  color: var(--primary-foreground);
}

.icon-box-lg {
  height: 3.5rem; /* h-14 */
  width: 3.5rem;
  border-radius: 1rem; /* rounded-2xl */
}

.icon-box-xl {
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 1rem;
}

.icon-box-lg > i,
.icon-box-xl > i {
  font-size: 1.75rem; /* Lucide h-7 w-7 */
  line-height: 1;
}

.process-icon-inner > i {
  font-size: 2.5rem; /* h-10 w-10 */
  line-height: 1;
}

.pricing-tab-icon i {
  font-size: 1.125rem; /* ~h-4.5 w-4.5 */
  line-height: 1;
}

/* Benefits — src/components/site/Benefits.tsx */
.benefits-grid {
  display: grid;
  gap: 1.25rem; /* gap-5 */
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* sm:grid-cols-2 */
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)); /* lg:grid-cols-4 */
  }

  .benefits-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.benefit-card {
  border-radius: 1rem; /* rounded-2xl */
  border: 1px solid rgb(255 255 255 / 0.4); /* border-white/40 */
  background: #fff; /* bg-white */
  padding: 1.75rem; /* p-7 */
  box-shadow:
    0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1); /* shadow-lg */
  height: 100%;
}

.benefit-card__icon-wrap {
  display: flex;
  width: 3.5rem; /* h-14 w-14 */
  height: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem; /* rounded-2xl */
  background: oklch(0.635 0.245 22.5 / 0.1); /* bg-primary/10 */
  color: var(--primary); /* text-primary — Lucide stroke uses currentColor */
  transition: transform 0.15s linear; /* transition-transform (Tailwind default timing) */
}

.benefit-card:hover .benefit-card__icon-wrap {
  transform: scale(1.1); /* group-hover:scale-110 */
}

.benefit-card__icon-wrap svg {
  width: 1.75rem; /* h-7 w-7 */
  height: 1.75rem;
}

.benefit-card__title {
  margin-top: 1.25rem; /* mt-5 */
  margin-bottom: 0;
  font-size: 1.25rem; /* text-xl */
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  color: var(--foreground);
}

.benefit-card__desc {
  margin-top: 0.625rem; /* mt-2.5 */
  margin-bottom: 0;
  font-size: 0.875rem; /* text-sm */
  line-height: 1.625; /* leading-relaxed */
  color: var(--muted-foreground);
}

.benefit-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: #fff;
  padding: 1rem 2rem; /* py-4 px-8 */
  font-size: 0.875rem; /* text-sm */
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  box-shadow:
    0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1); /* shadow-xl */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-cta:hover {
  transform: translateY(-2px); /* hover:-translate-y-0.5 */
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); /* hover:shadow-2xl */
  color: var(--primary);
}

/* Portfolio grid item */
.portfolio-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 1rem;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: var(--card);
  box-shadow: var(--shadow-soft);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.portfolio-item:hover {
  transform: translateY(-0.375rem);
  box-shadow: var(--shadow-lift);
}

.portfolio-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-item .portfolio-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(0 0 0 / 0.85), rgb(0 0 0 / 0.2), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.portfolio-item:hover .portfolio-caption {
  opacity: 1;
}

.portfolio-item .portfolio-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem;
  transform: translateY(1rem);
  text-align: left;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.portfolio-item:hover .portfolio-meta {
  opacity: 1;
  transform: translateY(0);
}

/* Process timeline line */
.process-line {
  position: absolute !important;
  left: 0;
  right: 0;
  top: 3rem;
  height: 1px !important;
  background: linear-gradient(to right, transparent, var(--border), transparent) !important;
}

/* Pricing tabs */
.pricing-tab {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  text-align: left;
  border: 0;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  background: transparent;
  color: var(--muted-foreground);
  transition: all 0.2s ease;
}

.pricing-tab:hover {
  background: var(--card);
  color: var(--foreground);
}

.pricing-tab.active {
  background: oklch(0.635 0.245 22.5 / 0.1);
  color: var(--primary);
  box-shadow: var(--shadow-soft);
}

.pricing-tab-icon {
  display: flex;
  height: 2.25rem;
  width: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: var(--card);
  color: var(--foreground);
  transition: all 0.2s ease;
}

.pricing-tab.active .pricing-tab-icon {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-brand);
}

.pricing-panel {
  animation: fadeIn 0.45s ease both;
}

/* Pricing tab panels: clearer separation between feature cards */
.pricing-points-row {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 1.75rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* FAQ */
.faq-item {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.faq-item.is-open {
  border-color: oklch(0.635 0.245 22.5 / 0.4);
  background: oklch(0.635 0.245 22.5 / 0.03);
}

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.faq-answer {
  display: grid;
  transition: grid-template-rows 0.3s ease, opacity 0.3s ease;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-item:not(.is-open) .faq-answer {
  grid-template-rows: 0fr;
  opacity: 0;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

/* Form controls hero card */
.form-control-hero {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--foreground);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-control-hero:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px oklch(0.635 0.245 22.5 / 0.15);
}

.form-label-hero {
  display: block;
  margin-bottom: 0.375rem; /* mb-1.5 */
  font-size: 0.75rem; /* text-xs */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em; /* tracking-wider */
  color: var(--muted-foreground);
}

.form-terms-note {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Footer */
.site-footer {
  background: var(--foreground);
  color: #fff;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer .footer-link:hover {
  color: var(--primary);
}

/* Skip link (a11y + SEO) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  z-index: 2000;
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: #fff;
  border-radius: 0.375rem;
}

.skip-link:focus {
  left: 0.5rem;
}

/* Mobile nav panel (toggled by main.js) */
#mobileNav {
  display: none;
  border-top: 1px solid var(--border);
  background: #fff;
}

#mobileNav.show {
  display: block;
}

@media (min-width: 768px) {
  #mobileNav {
    display: none !important;
  }
}

.text-muted-custom {
  color: var(--muted-foreground) !important;
}

.bg-surface {
  background-color: var(--surface) !important;
}

.bg-surface-soft {
  background-color: var(--surface-soft) !important;
}

.text-foreground {
  color: var(--foreground) !important;
}

.bg-primary-section {
  background-color: var(--primary) !important;
  color: #fff;
}

/* ----- Services grid — src/components/site/Services.tsx ----- */
.services-grid {
  display: grid;
  gap: 1.25rem; /* gap-5 */
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* sm:grid-cols-2 */
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)); /* lg:grid-cols-3 */
  }
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem; /* rounded-2xl */
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.75rem; /* p-7 */
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); /* shadow-sm */
  height: 100%;
}

.service-card__blob {
  position: absolute;
  right: -2rem; /* -right-8 */
  top: -2rem; /* -top-8 */
  width: 7rem; /* h-28 w-28 */
  height: 7rem;
  border-radius: 50%;
  background: oklch(0.635 0.245 22.5 / 0.05); /* bg-primary/5 */
  transition: transform 0.5s ease, background-color 0.5s ease;
  pointer-events: none;
}

.service-card:hover .service-card__blob {
  transform: scale(1.5); /* group-hover:scale-150 */
  background: oklch(0.635 0.245 22.5 / 0.1); /* group-hover:bg-primary/10 */
}

.service-card__icon-wrap {
  position: relative;
  display: flex;
  width: 3.5rem; /* h-14 w-14 */
  height: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem; /* rounded-2xl */
  background: oklch(0.635 0.245 22.5 / 0.1);
  color: var(--primary);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.service-card__icon-wrap svg {
  width: 1.75rem; /* h-7 w-7 */
  height: 1.75rem;
}

.service-card:hover .service-card__icon-wrap {
  background: var(--primary);
  color: var(--primary-foreground);
}

.service-card__title {
  position: relative;
  margin-top: 1.25rem; /* mt-5 */
  margin-bottom: 0;
  font-size: 1.25rem; /* text-xl */
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  color: var(--foreground);
}

.service-card__desc {
  position: relative;
  margin-top: 0.625rem; /* mt-2.5 */
  margin-bottom: 0;
  font-size: 0.875rem; /* text-sm */
  line-height: 1.625; /* leading-relaxed */
  color: var(--muted-foreground);
}

.service-card__learn {
  position: relative;
  margin-top: 1.25rem; /* mt-5 */
  display: inline-flex;
  align-items: center;
  gap: 0.375rem; /* gap-1.5 */
  font-size: 0.875rem; /* text-sm */
  font-weight: 600;
  color: var(--primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-card__learn {
  opacity: 1; /* group-hover:opacity-100 */
}

.service-card__learn svg {
  width: 1rem; /* h-4 w-4 */
  height: 1rem;
  flex-shrink: 0;
}

.btn-services-cta.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem; /* py-4 px-8 */
  font-size: 0.875rem;
  font-weight: 600;
}

.ratio-5x3 {
  aspect-ratio: 5 / 3;
  position: relative;
}

.ratio-5x3 > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ratio-5x3 > .badge,
.ratio-5x3 > .position-absolute.bottom-0 {
  z-index: 1;
}

.industry-sector-card .industry-sector-card__overlay {
  z-index: 1;
  pointer-events: none;
  padding-top: 2.75rem;
  background: linear-gradient(to top, rgb(0 0 0 / 0.92) 0%, rgb(0 0 0 / 0.55) 45%, rgb(0 0 0 / 0.12) 72%, transparent 100%);
}

.industry-sector-card__desc {
  opacity: 0.92;
  line-height: 1.45;
}

.sidebar-pricing {
  border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
  .sidebar-pricing {
    border-bottom: 0;
    border-right: 1px solid var(--border);
  }
}

.review-logos {
  opacity: 0.7;
  filter: grayscale(1);
  transition: opacity 0.25s ease, filter 0.25s ease;
}

.review-logos:hover {
  opacity: 1;
  filter: grayscale(0);
}

.review-logos .fw-bold {
  font-size: 1rem; /* text-base */
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}
