/* ═══════════════════════════════════════════════════
   Raffaele Tosto — Osteopata · Pistoia
   Design System: Italian Clinical Elegance
   Fonts: Bodoni Moda (display) + Figtree (body)
   ═══════════════════════════════════════════════════ */

/* ─── Custom Properties ─── */
:root {
  /* Colors */
  --c-green: #166534;
  --c-green-dark: #14532d;
  --c-green-deep: #052e16;
  --c-green-light: #bbf7d0;
  --c-green-pale: #f0fdf4;
  --c-green-glow: rgba(22, 101, 52, 0.15);

  --c-cream: #faf8f4;
  --c-cream-dark: #f0ede6;
  --c-white: #fffefb;

  --c-charcoal: #1c1917;
  --c-text: #292524;
  --c-text-light: #57534e;
  --c-text-muted: #a8a29e;
  --c-border: #e7e5e4;
  --c-border-light: #f5f5f4;

  --c-night: #0c1220;
  --c-night-blue: #0f172a;

  --c-accent-blue: #1e40af;
  --c-accent-warm: #b45309;
  --c-accent-sage: #4d7c0f;

  /* Typography */
  --font-display: 'Bodoni Moda', 'Georgia', 'Times New Roman', serif;
  --font-body: 'Figtree', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --section-py: clamp(4.5rem, 9vw, 9rem);
  --section-px: clamp(1.25rem, 5vw, 2rem);
  --container-max: 1180px;
  --container-narrow: 780px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(28, 25, 23, 0.03);
  --shadow-sm: 0 1px 3px rgba(28, 25, 23, 0.05), 0 1px 2px rgba(28, 25, 23, 0.03);
  --shadow-md: 0 4px 14px rgba(28, 25, 23, 0.06);
  --shadow-lg: 0 10px 30px rgba(28, 25, 23, 0.08);
  --shadow-card: 0 1px 3px rgba(28, 25, 23, 0.04), 0 6px 20px rgba(28, 25, 23, 0.03);
  --shadow-card-hover: 0 4px 8px rgba(28, 25, 23, 0.06), 0 12px 32px rgba(28, 25, 23, 0.06);

  /* Motion */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur: 0.35s;
  --dur-slow: 0.6s;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Subtle grain texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 10000;
  opacity: 0.5;
}

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

a {
  color: var(--c-green);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

a:hover {
  color: var(--c-green-dark);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

strong {
  font-weight: 600;
}

/* ─── Layout ─── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--section-px);
  padding-right: var(--section-px);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
  position: relative;
}

.section--white {
  background: var(--c-white);
}

.section--cream {
  background: var(--c-cream);
}

.section__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--c-charcoal);
  letter-spacing: -0.01em;
}

.section__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--c-text-light);
  margin-top: 1rem;
  font-weight: 400;
}

.section__line {
  width: 48px;
  height: 2px;
  background: var(--c-green);
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

/* ─── Scroll Reveal Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ═══════════════════════════════════════════════════
   SEZIONE 0 — STICKY TOP BAR
   ═══════════════════════════════════════════════════ */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 254, 251, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(231, 229, 228, 0.5);
  transition: box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}

.topbar--scrolled {
  box-shadow: 0 2px 20px rgba(28, 25, 23, 0.06);
  background: rgba(255, 254, 251, 0.97);
}

.topbar__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.7rem var(--section-px);
  font-size: 0.85rem;
}

.topbar__text {
  color: var(--c-text-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar__text strong {
  color: var(--c-charcoal);
  font-weight: 600;
}

.topbar__cta {
  flex-shrink: 0;
  color: var(--c-green);
  font-weight: 600;
  font-size: 0.85rem;
  transition: color var(--dur) var(--ease);
  white-space: nowrap;
}

.topbar__cta:hover {
  color: var(--c-green-dark);
}

/* ═══════════════════════════════════════════════════
   SEZIONE 1 — HERO
   ═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6rem var(--section-px) 4rem;
}

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

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transform: scale(1.08);
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      160deg,
      rgba(12, 18, 32, 0.78) 0%,
      rgba(12, 18, 32, 0.6) 40%,
      rgba(22, 101, 52, 0.35) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
}

.hero__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
  animation: heroFadeIn 1s var(--ease-out) 0.2s both;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 4.25rem);
  font-weight: 500;
  line-height: 1.12;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  animation: heroFadeUp 1s var(--ease-out) 0.35s both;
}

.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  animation: heroFadeUp 1s var(--ease-out) 0.5s both;
}

.hero__desc {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  animation: heroFadeUp 1s var(--ease-out) 0.65s both;
}

.hero__cta-wrap {
  animation: heroFadeUp 1s var(--ease-out) 0.8s both;
}

.hero__micro {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1rem;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.35);
  animation: heroFloat 2.5s ease-in-out infinite;
  z-index: 2;
}

.desktop-br {
  display: none;
}

@keyframes heroFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.35; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 0.6; }
}

/* ═══════════════════════════════════════════════════
   SEZIONE 2 — SOCIAL PROOF BAR
   ═══════════════════════════════════════════════════ */
.proof-bar {
  background: var(--c-cream);
  border-bottom: 1px solid var(--c-border-light);
  padding: 1.75rem 0;
}

.proof-bar__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.proof-bar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-text-light);
  white-space: nowrap;
}

.proof-bar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-green);
  font-size: 1rem;
}

.proof-bar__label {
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════
   CARDS — Shared styles
   ═══════════════════════════════════════════════════ */
.cards-grid {
  display: grid;
  gap: 1.5rem;
}

.cards-grid--4 {
  grid-template-columns: 1fr;
}

.card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  position: relative;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}

.card__icon-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--c-green-pale);
  color: var(--c-green);
  margin-bottom: 1.25rem;
}

.card__title {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--c-charcoal);
  line-height: 1.35;
  margin-bottom: 0.65rem;
}

.card__text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--c-text-light);
}

/* Audience card accent variants — doc: "Sfondo diverso per ogni card" */
.card--accent-green { background: #f0fdf4; border-color: #dcfce7; }
.card--accent-blue { background: #eff6ff; border-color: #dbeafe; }
.card--accent-warm { background: #fffbeb; border-color: #fef3c7; }
.card--accent-sage { background: #f7fee7; border-color: #ecfccb; }

.card--accent-green .card__icon-wrap { background: #dcfce7; color: #166534; }
.card--accent-blue .card__icon-wrap { background: #dbeafe; color: #1e40af; }
.card--accent-warm .card__icon-wrap { background: #fef3c7; color: #b45309; }
.card--accent-sage .card__icon-wrap { background: #ecfccb; color: #4d7c0f; }

.card--accent-green:hover { border-color: #bbf7d0; }
.card--accent-blue:hover { border-color: #bfdbfe; }
.card--accent-warm:hover { border-color: #fde68a; }
.card--accent-sage:hover { border-color: #d9f99d; }

/* ═══════════════════════════════════════════════════
   SEZIONE 4 — ABOUT / CHI SONO
   ═══════════════════════════════════════════════════ */
.about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

.about__image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Decorative offset border */
.about__image-frame::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid var(--c-green);
  border-radius: calc(var(--radius-lg) + 4px);
  opacity: 0.15;
  z-index: -1;
  transform: translate(12px, 12px);
}

.about__image {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 20%;
}

.about__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: 0.75rem;
}

.about__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--c-charcoal);
  margin-bottom: 1.75rem;
}

.about__text p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--c-text);
}

.about__text p:first-child {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--c-charcoal);
}

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

.about__signature {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.about__sig-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--c-charcoal);
}

.about__sig-title {
  font-size: 0.85rem;
  color: var(--c-text-muted);
}

/* ═══════════════════════════════════════════════════
   SEZIONE 5 — STEPS / COME FUNZIONA
   ═══════════════════════════════════════════════════ */
.steps {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--c-border);
  position: relative;
}

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

.step__number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--c-accent-blue);
  opacity: 0.15;
  user-select: none;
  min-width: 60px;
  text-align: center;
  padding-top: 0.15em;
}

.step__content {
  padding-top: 0.5rem;
}

.step__title {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--c-charcoal);
  margin-bottom: 0.5rem;
}

.step__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--c-text-light);
}

.step__image-wrap {
  display: none;
}

.steps__footer {
  text-align: center;
  margin-top: 2.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--c-charcoal);
}

/* ═══════════════════════════════════════════════════
   CTA SECTIONS
   ═══════════════════════════════════════════════════ */
.cta-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section--dark {
  background: var(--c-night-blue);
  color: #fff;
}

.cta-section--green {
  background: var(--c-green-deep);
  color: #fff;
}

.cta-section__glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 101, 52, 0.2) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-section__content {
  position: relative;
  z-index: 2;
}

.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-section__title--lg {
  font-size: clamp(1.75rem, 4.5vw, 3rem);
}

.cta-section__sub {
  font-size: 1rem;
  opacity: 0.7;
  margin-bottom: 2rem;
}

.cta-section__lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.cta-section__body {
  font-size: 1rem;
  opacity: 0.7;
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.cta-section__micro {
  font-size: 0.82rem;
  opacity: 0.45;
  margin-top: 1rem;
}

/* ═══════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  padding: 1.1rem 2.25rem;
  background: var(--c-green);
  color: #fff;
  border-radius: 8px;
  font-size: 1.0625rem;
  box-shadow: 0 4px 16px rgba(22, 101, 52, 0.3), 0 1px 3px rgba(22, 101, 52, 0.15);
}

.btn--primary:hover {
  background: #1a7a3e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(22, 101, 52, 0.35), 0 2px 6px rgba(22, 101, 52, 0.2);
}

.btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(22, 101, 52, 0.25);
}

.btn--white {
  padding: 1.1rem 2.25rem;
  background: #fff;
  color: var(--c-night-blue);
  border-radius: 8px;
  font-size: 1.0625rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn--white:hover {
  background: #f8fafc;
  color: var(--c-night-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.btn--white-green {
  padding: 1.1rem 2.25rem;
  background: #fff;
  color: var(--c-green-deep);
  border-radius: 8px;
  font-size: 1.0625rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn--white-green:hover {
  background: var(--c-green-pale);
  color: var(--c-green-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.btn--lg {
  padding: 1.15rem 2.5rem;
  font-size: 1.1rem;
}

/* Focus styles for accessibility */
.btn:focus-visible {
  outline: 3px solid var(--c-green-light);
  outline-offset: 3px;
}

/* ═══════════════════════════════════════════════════
   SEZIONE 7 — TESTIMONIAL
   ═══════════════════════════════════════════════════ */
.testimonial {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.testimonial__intro {
  font-size: 0.92rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-style: italic;
}

.testimonial__quote {
  position: relative;
  margin: 0;
  padding: 0;
}

.testimonial__mark {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.7;
  color: var(--c-accent-blue);
  opacity: 0.15;
  margin-bottom: 0.5rem;
  user-select: none;
}

.testimonial__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  font-style: italic;
  line-height: 1.7;
  color: var(--c-charcoal);
  margin-bottom: 1rem;
}

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

.testimonial__footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-border);
}

.testimonial__cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-text-light);
}

/* ═══════════════════════════════════════════════════
   SEZIONE 9 — FAQ
   ═══════════════════════════════════════════════════ */
.faq {
  max-width: 700px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--c-border);
}

.faq__item:last-child {
  border-bottom: none;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.35rem 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-charcoal);
  line-height: 1.4;
  transition: color var(--dur) var(--ease);
}

.faq__question:hover {
  color: var(--c-green);
}

.faq__question:focus-visible {
  outline: 2px solid var(--c-green);
  outline-offset: 4px;
  border-radius: 4px;
}

.faq__chevron {
  flex-shrink: 0;
  color: var(--c-text-muted);
  transition: transform var(--dur) var(--ease), color var(--dur) var(--ease);
}

.faq__item.active .faq__chevron {
  transform: rotate(180deg);
  color: var(--c-green);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}

.faq__answer p {
  padding-bottom: 1.35rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--c-text-light);
}

/* ═══════════════════════════════════════════════════
   SEZIONE 11 — FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
  background: var(--c-charcoal);
  color: rgba(255, 255, 255, 0.6);
  padding: 3rem 0 2rem;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.3rem;
}

.footer__address {
  font-size: 0.85rem;
}

.footer__links {
  display: flex;
  gap: 1.5rem;
}

.footer__links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--dur) var(--ease);
}

.footer__links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer__bottom {
  text-align: center;
  padding-top: 1.5rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — Tablet (768px+)
   ═══════════════════════════════════════════════════ */
@media (min-width: 768px) {
  .desktop-br {
    display: inline;
  }

  .topbar__inner {
    gap: 1.5rem;
  }

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

  .about {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }

  .step {
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
  }

  .step__number {
    font-size: 4.5rem;
    min-width: 80px;
  }

  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .proof-bar__grid {
    gap: 3rem;
  }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — Desktop (1024px+)
   ═══════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .about {
    grid-template-columns: 3fr 2fr;
    gap: 4.5rem;
  }

  .about__image {
    aspect-ratio: 4 / 5;
  }

  .step {
    grid-template-columns: 90px 1fr auto;
    gap: 2rem;
    align-items: center;
  }

  .step__image-wrap {
    display: block;
    width: 100px;
    height: 100px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
  }

  .step__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .btn--lg {
    padding: 1.2rem 3rem;
    font-size: 1.125rem;
  }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — Large Desktop (1280px+)
   ═══════════════════════════════════════════════════ */
@media (min-width: 1280px) {
  .step__image-wrap {
    width: 130px;
    height: 130px;
  }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — Mobile adjustments
   ═══════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .topbar__text {
    font-size: 0.75rem;
  }

  .topbar__cta {
    font-size: 0.78rem;
  }

  .hero {
    padding-top: 5rem;
    padding-bottom: 3.5rem;
    min-height: 92vh;
  }

  .btn--lg {
    width: 100%;
    padding: 1.1rem 1.5rem;
    font-size: 1.05rem;
  }

  .hero__scroll-hint {
    display: none;
  }

  .proof-bar__grid {
    gap: 1rem 2rem;
  }

  .proof-bar__item {
    font-size: 0.82rem;
  }

  .step {
    grid-template-columns: 48px 1fr;
    gap: 0.75rem;
  }

  .step__number {
    font-size: 2.5rem;
    min-width: 48px;
  }

  .card {
    padding: 1.5rem 1.25rem;
  }
}

/* ═══════════════════════════════════════════════════
   SELECTION / SCROLLBAR
   ═══════════════════════════════════════════════════ */
::selection {
  background: rgba(22, 101, 52, 0.15);
  color: var(--c-charcoal);
}

/* Subtle scrollbar for WebKit */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--c-cream);
}

::-webkit-scrollbar-thumb {
  background: var(--c-text-muted);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--c-text-light);
}

/* ═══════════════════════════════════════════════════
   READABILITY IMPROVEMENTS
   ═══════════════════════════════════════════════════ */

/* Optimal reading width for prose text */
.about__text {
  max-width: 580px;
}

.testimonial__quote p,
.cta-section__body,
.faq__answer p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* Bump card text to 1rem on all viewports for readability */
.card__text {
  font-size: 1rem;
  line-height: 1.7;
}

.step__text {
  font-size: 1rem;
}

/* Better spacing between consecutive white sections */
.section + .section {
  border-top: 1px solid var(--c-border-light);
}

.section--cream + .section,
.section + .section--cream,
.cta-section + .section {
  border-top: none;
}

/* Ensure minimum touch targets (44px) for interactive elements */
.faq__question {
  min-height: 52px;
}

.topbar__cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* Better mobile section padding */
@media (max-width: 767px) {
  :root {
    --section-py: clamp(3.5rem, 8vw, 5rem);
  }

  .section__title {
    font-size: clamp(1.5rem, 5.5vw, 2rem);
  }

  .about__text {
    max-width: 100%;
  }

  .testimonial__quote p {
    font-size: 1rem;
    max-width: 100%;
  }

  .faq__answer p {
    max-width: 100%;
  }

  /* Ensure proof-bar wraps to 2 rows of 2 on mobile */
  .proof-bar__grid {
    justify-content: space-around;
  }

  .proof-bar__item {
    flex: 0 0 auto;
    min-width: 42%;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════
   COOKIE CONSENT BANNER
   ═══════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(28, 25, 23, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.25rem var(--section-px);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out);
  visibility: hidden;
}

.cookie-banner--visible {
  transform: translateY(0);
  visibility: visible;
}

.cookie-banner__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cookie-banner__text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  flex: 1;
}

.cookie-banner__text a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__text a:hover {
  color: #fff;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  border: none;
  white-space: nowrap;
}

.cookie-banner__btn--accept {
  background: var(--c-green);
  color: #fff;
}

.cookie-banner__btn--accept:hover {
  background: #1a7a3e;
}

.cookie-banner__btn--reject {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-banner__btn--reject:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

@media (max-width: 767px) {
  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: center;
  }

  .cookie-banner__btn {
    flex: 1;
    padding: 0.7rem 1rem;
  }
}
