/* ===================
   1. DESIGN TOKENS
   =================== */

:root {
  --teal: #3a9e8c;
  --teal-dark: #1f6e5f;
  --teal-light: #e8f7f4;
  --orange: #e8724a;
  --orange-light: #fdf0eb;
  --cream: #fdf9f6;
  --warm-gray: #6b6560;
  --dark: #2c2420;
  --white: #ffffff;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;

  --section-py: 5rem;
  --container: 1200px;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-pill: 2rem;

  --shadow-soft: 0 20px 60px rgba(58, 158, 140, 0.12);
  --shadow-card: 0 8px 32px rgba(44, 36, 32, 0.08);
  --shadow-orange: 0 20px 60px rgba(232, 114, 74, 0.2);

  --t: 0.3s ease;
}

/* ===================
   2. RESET & BASE
   =================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--dark);
  background-color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t);
}

ul, ol { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-sans);
}

*:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ===================
   3. TYPOGRAPHY
   =================== */

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.15;
  color: var(--dark);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 300; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 300; }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); font-weight: 400; }

p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--warm-gray);
  line-height: 1.75;
}

/* ===================
   4. LAYOUT
   =================== */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===================
   5. NAVIGATION
   =================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid #f0ebe6;
  height: 72px;
  display: flex;
  align-items: center;
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.nav__logo-icon { width: 34px; height: 34px; }

.nav__wordmark {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  line-height: 1;
}

.nav__wordmark .neura { color: var(--teal-dark); }
.nav__wordmark .luxe  { color: var(--orange); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
  margin-right: 1.5rem;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--warm-gray);
}

.nav__links a:hover,
.nav__links a.active { color: var(--teal); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.4rem;
  background: var(--teal);
  color: var(--white) !important;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background var(--t), transform var(--t);
  flex-shrink: 0;
}

.nav__cta:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid #f0ebe6;
  padding: 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 99;
  box-shadow: var(--shadow-card);
}

.nav__mobile.open { display: flex; }

.nav__mobile a {
  font-size: 1rem;
  font-weight: 400;
  color: var(--warm-gray);
  padding: 0.6rem 0;
  border-bottom: 1px solid #f5f0ec;
}

.nav__mobile a:hover { color: var(--teal); }

.nav__mobile .nav__cta {
  justify-content: center;
  text-align: center;
  margin-top: 0.75rem;
  border-bottom: none;
  padding: 0.75rem 1.5rem;
}

/* ===================
   6. FOOTER
   =================== */

.footer {
  background: var(--dark);
  color: var(--white);
  padding: 4rem 1.5rem 0;
}

.footer__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.footer__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.footer__social {
  display: flex;
  gap: 0.6rem;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  transition: background var(--t), color var(--t);
}

.footer__social a:hover {
  background: var(--teal);
  color: var(--white);
}

.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.2rem;
}

.footer__col ul li { margin-bottom: 0.6rem; }

.footer__col ul li a {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
}

.footer__col ul li a:hover { color: var(--teal); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.5;
}

/* ===================
   7. BUTTONS
   =================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  transition: background var(--t), transform var(--t), color var(--t), box-shadow var(--t);
  cursor: pointer;
  white-space: nowrap;
  border: none;
}

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

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(232, 114, 74, 0.3);
}

.btn-primary:hover {
  background: #d4623c;
  box-shadow: 0 12px 32px rgba(232, 114, 74, 0.4);
  color: var(--white);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

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

.btn-white {
  background: var(--white);
  color: var(--teal-dark);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.btn-white:hover { background: var(--teal-light); color: var(--teal-dark); }

.btn-ghost {
  background: transparent;
  color: var(--teal);
  padding-left: 0;
  padding-right: 0;
  box-shadow: none;
}

.btn-ghost:hover {
  color: var(--teal-dark);
  transform: translateX(4px);
}

/* ===================
   8. TAGS
   =================== */

.tag {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.tag-teal  { background: var(--teal-light);   color: var(--teal-dark); }
.tag-orange { background: var(--orange-light); color: var(--orange); }

/* ===================
   9. SECTION INTRO
   =================== */

.section-intro { margin-bottom: 3rem; }
.section-intro .tag { margin-bottom: 1rem; display: block; }
.section-intro h2 { margin-bottom: 1rem; }
.section-intro p { max-width: 600px; }
.section-intro.centered { text-align: center; }
.section-intro.centered p { margin: 0 auto; }

/* ===================
   10. REVEAL ANIMATION
   =================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ===================
   11. HERO (HOME)
   =================== */

.hero {
  min-height: 88vh;
  background: linear-gradient(135deg, #ffffff 0%, var(--cream) 50%, var(--teal-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 1.5rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: -12%;
  right: -6%;
  width: 520px;
  height: 520px;
  background: var(--orange-light);
  border-radius: 50%;
  opacity: 0.65;
  pointer-events: none;
}

.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content .tag { margin-bottom: 1.5rem; display: block; }

.hero__content h1 { margin-bottom: 1.5rem; }

.hero__content h1 em {
  color: var(--teal);
  font-style: italic;
}

.hero__content > p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Hero card */
.hero__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.hero__card-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.hero__card-dots {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hero__card-dots span {
  height: 8px;
  width: 8px;
  border-radius: 4px;
  background: #e0d9d4;
  transition: width var(--t), background var(--t);
}

.hero__card-dots span.active {
  background: var(--teal);
  width: 24px;
}

.hero__card-stats {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  border-top: 1px solid #f0ebe6;
  padding-top: 1.2rem;
}

.hero__card-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--warm-gray);
}

.hero__card-stat strong {
  color: var(--teal-dark);
  font-weight: 500;
}

.hero__card-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 112px;
  height: 112px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.35;
  padding: 1rem;
  box-shadow: var(--shadow-orange);
}

/* ===================
   12. TRUST BAR
   =================== */

.trust-bar {
  background: var(--teal);
  padding: 1.4rem 1.5rem;
}

.trust-bar__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 3rem;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 400;
  white-space: nowrap;
}

.trust-bar__item svg { flex-shrink: 0; }

/* ===================
   13. PAIN POINTS
   =================== */

.pain-points {
  background: var(--white);
  padding: var(--section-py) 1.5rem;
}

.pain-points__inner { max-width: var(--container); margin: 0 auto; }

.pain-points__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.pain-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border-left: 3px solid var(--teal);
  transition: transform var(--t), box-shadow var(--t);
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.pain-card__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.pain-card__label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.04em;
}

/* ===================
   14. TRANSFORMATION TABLE
   =================== */

.transformation {
  background: var(--cream);
  padding: var(--section-py) 1.5rem;
}

.transformation__inner { max-width: var(--container); margin: 0 auto; }

.transformation__table {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.t-header {
  padding: 0.9rem 1.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(107, 101, 96, 0.55);
  background: var(--white);
  border-bottom: 1px solid #f0ebe6;
}

.t-header.mid { background: var(--orange-light); }
.t-header.right { background: var(--teal-light); color: rgba(31, 110, 95, 0.55); }

.t-cell {
  padding: 1.15rem 1.5rem;
  background: var(--white);
  border-bottom: 1px solid #f5f0ec;
  display: flex;
  align-items: center;
}

.t-cell p { font-size: 0.9rem; font-weight: 300; color: var(--warm-gray); line-height: 1.5; }

.t-cell.arrow {
  background: var(--orange-light);
  justify-content: center;
  font-size: 1.1rem;
  color: var(--orange);
  font-weight: 700;
  padding: 1.15rem 0.5rem;
  border-bottom: 1px solid rgba(232, 114, 74, 0.12);
}

.t-cell.to {
  background: var(--teal-light);
  border-bottom: 1px solid rgba(58, 158, 140, 0.12);
}

.t-cell.to p { color: var(--teal-dark); font-weight: 500; }

.transformation__table > *:nth-last-child(-n+3) { border-bottom: none !important; }

/* ===================
   15. ABOUT PREVIEW
   =================== */

.about-preview {
  background: var(--white);
  padding: var(--section-py) 1.5rem;
}

.about-preview__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-preview__image-wrap { position: relative; }

.about-preview__placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--orange-light) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.about-preview__accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-card);
  max-width: 165px;
}

.about-preview__accent small {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.3rem;
}

.about-preview__accent p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--dark);
}

.about-preview__content .tag { margin-bottom: 1rem; display: block; }
.about-preview__content h2 { margin-bottom: 1.25rem; }
.about-preview__content > p { margin-bottom: 0.9rem; }

.about-preview__bullets {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.about-preview__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--warm-gray);
}

.about-preview__bullets li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 0.35rem;
}

/* ===================
   16. TESTIMONIALS
   =================== */

.testimonials {
  background: var(--white);
  padding: var(--section-py) 1.5rem;
}

.testimonials__inner { max-width: var(--container); margin: 0 auto; }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.t-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--t), box-shadow var(--t);
}

.t-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.t-card__mark {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 0.55;
  color: var(--teal-light);
  display: block;
  margin-bottom: 1.25rem;
}

.t-card__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.t-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.t-card__avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--teal-dark);
}

.t-card__name {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
}

.t-card__desc {
  font-size: 0.78rem;
  color: var(--warm-gray);
}

/* ===================
   17. CTA BANNER (SHARED)
   =================== */

.cta-banner {
  background: var(--teal);
  padding: var(--section-py) 1.5rem;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner h2 em { font-style: italic; }

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}

/* ===================
   18. ABOUT HERO
   =================== */

.about-hero {
  background: linear-gradient(135deg, var(--white) 0%, var(--teal-light) 100%);
  padding: 5rem 1.5rem;
}

.about-hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-hero__content .tag { margin-bottom: 1.5rem; display: block; }
.about-hero__content h1 { margin-bottom: 1.25rem; }
.about-hero__content h1 em { color: var(--teal); font-style: italic; }
.about-hero__content p { font-size: 1.05rem; }

.about-hero__photo {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--orange-light) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

/* ===================
   19. TIMELINE
   =================== */

.timeline {
  background: var(--white);
  padding: var(--section-py) 1.5rem;
}

.timeline__inner {
  max-width: 780px;
  margin: 0 auto;
}

.timeline__items {
  position: relative;
  padding-left: 2.25rem;
  margin-top: 3rem;
}

.timeline__items::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal-light) 0%, var(--teal) 50%, var(--orange-light) 100%);
}

.timeline__item {
  position: relative;
  margin-bottom: 3rem;
}

.timeline__item:last-child { margin-bottom: 0; }

.timeline__item::before {
  content: '';
  position: absolute;
  left: -2.6rem;
  top: 0.3rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--teal);
}

.timeline__era {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.35rem;
}

.timeline__item h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.timeline__item p { font-size: 0.95rem; }

/* ===================
   20. VALUES GRID
   =================== */

.values {
  background: var(--cream);
  padding: var(--section-py) 1.5rem;
}

.values__inner { max-width: var(--container); margin: 0 auto; }

.values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--t), box-shadow var(--t);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.value-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.value-card h3 { font-family: var(--font-serif); font-weight: 600; margin-bottom: 0.75rem; }
.value-card p { font-size: 0.9rem; }

/* ===================
   21. SERVICES HERO
   =================== */

.services-hero {
  background: linear-gradient(135deg, var(--white) 0%, var(--teal-light) 100%);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
}

.services-hero__inner {
  max-width: 720px;
  margin: 0 auto;
}

.services-hero .tag { margin-bottom: 1.25rem; display: inline-block; }
.services-hero h1 { margin-bottom: 1.25rem; }
.services-hero p { font-size: 1.05rem; }

/* ===================
   22. SERVICES GRID
   =================== */

.services-section {
  background: var(--cream);
  padding: var(--section-py) 1.5rem;
}

.services-section__inner { max-width: var(--container); margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.s-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border-top: 3px solid transparent;
  transition: transform var(--t), box-shadow var(--t);
  display: flex;
  flex-direction: column;
  position: relative;
}

.s-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.s-card.featured { border-top-color: var(--orange); }

.s-card__badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--orange);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 500;
  padding: 0.25rem 0.8rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.s-card__icon { font-size: 2rem; margin-bottom: 1rem; display: block; }

.s-card h3 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 600; margin-bottom: 0.6rem; }

.s-card > p { font-size: 0.875rem; margin-bottom: 1.25rem; }

.s-card__features { flex-grow: 1; margin-bottom: 1.5rem; }

.s-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--warm-gray);
  padding: 0.35rem 0;
  border-bottom: 1px solid #f5f0ec;
}

.s-card__features li:last-child { border-bottom: none; }

.s-card__features li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.8rem;
  line-height: 1.55;
}

.s-card__price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
}

.s-card__price span {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--warm-gray);
}

.s-card .btn { width: 100%; margin-top: auto; }

/* ===================
   23. SERVICES SOFT CTA
   =================== */

.services-cta {
  background: var(--cream);
  padding: 4rem 1.5rem;
  text-align: center;
  border-top: 1px solid #f0ebe6;
}

.services-cta .tag { margin-bottom: 1rem; display: inline-block; }
.services-cta h2 { margin-bottom: 2rem; }

/* ===================
   24. RESPONSIVE
   =================== */

@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__col:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  :root { --section-py: 3.5rem; }

  .nav__links,
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero {
    min-height: auto;
    padding: 4rem 1.5rem 5rem;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero::before {
    width: 280px;
    height: 280px;
    top: -4%;
    right: -15%;
  }

  .hero__card-badge {
    width: 90px;
    height: 90px;
    font-size: 0.62rem;
    bottom: -0.75rem;
    right: -0.75rem;
  }

  .about-preview__inner,
  .about-hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-preview__accent {
    bottom: -1rem;
    right: 1rem;
  }

  .about-hero__photo { aspect-ratio: 16 / 9; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }

  .footer__col:first-child { grid-column: auto; }

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

@media (max-width: 540px) {
  .pain-points__grid,
  .testimonials__grid,
  .values__grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .transformation__table {
    grid-template-columns: 1fr 40px 1fr;
    font-size: 0.82rem;
  }

  .t-cell { padding: 0.9rem 0.85rem; }
  .t-header { padding: 0.8rem 0.85rem; }
  .t-cell.arrow { padding: 0.9rem 0; font-size: 0.95rem; }

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

  .trust-bar__item { white-space: normal; }
}
