/* ─── SELF-HOSTED FONTS ──────────────────────────────────── */

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/playfair-display.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/playfair-display.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/playfair-display-italic.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/dm-sans.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-sans.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/dm-sans.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'DM Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-mono-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'DM Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/dm-mono-500.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --peach: #f4a57a;
  --peach-dark: #e8845a;
  --peach-light: #fdeade;
  --ink: #1a1612;
  --ink-mid: #5c4e44;
  --stone: #a89a90;
  --cream: #fdfaf6;
  --border: #e8ddd5;
}

/* ─── RESET ─────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-padding-top: 0;
  overflow-x: hidden;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  max-width: 100%;
}

/* ─── NAV ────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 32px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(253, 250, 246, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  opacity: 0;
  animation: slideFromLeft 0.55s ease 1800ms forwards;
}

.nav-wordmark {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  opacity: 0;
  animation: slideFromRight 0.55s ease 1800ms forwards;
}

.nav-links a {
  font-size: 13px;
  color: var(--stone);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  background: var(--ink);
  color: var(--cream);
  padding: 14px 30px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.25s 0s;
  will-change: background;
}

.nav-cta,
.nav-links a.nav-cta {
  color: var(--cream) !important;
  transition: background 0.25s 0s;
  will-change: background;
}
.nav-cta:hover,
.nav-links a.nav-cta:hover {
  background: var(--peach-dark);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
  height: 32px;
}

.nav-hamburger span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--ink);
  transition:
    transform 0.25s,
    opacity 0.25s;
  transform-origin: center;
}

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

/* ─── MOBILE MENU ────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(253, 250, 246, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
}

.mobile-menu.open {
  max-height: 320px;
  padding: 24px 24px 28px;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu a {
  font-size: 16px;
  color: var(--ink-mid);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--ink);
}
.mobile-menu .btn-primary {
  display: inline-block;
  font-size: 14px;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn-primary {
  background: var(--ink);
  color: var(--cream);
  padding: 14px 30px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition:
    background 0.25s 0s,
    transform 0.25s 0s;
  will-change: background, transform;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--peach-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--ink-mid);
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

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

.arrow {
  display: inline-block;
  transition: transform 0.2s;
}
.btn-ghost:hover .arrow {
  transform: translateX(3px);
}

/* ─── SHARED SECTION STYLES ──────────────────────────────── */
.section-label {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 16px;
}

h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 56px;
  max-width: 520px;
}

h2 em {
  font-style: italic;
  color: var(--peach-dark);
}

.cloud {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, #f4a57a 0%, transparent 70%);
}

.cloud-problems {
  left: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  opacity: 0.15;
}

.cloud-how {
  left: -150px;
  bottom: -80px;
  width: 520px;
  height: 520px;
  opacity: 0.16;
}

.cloud-pricing {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 500px;
  opacity: 0.14;
}

.cloud-faq {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  opacity: 0.13;
}

.cloud-cta {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 650px;
  height: 450px;
  opacity: 0.18;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 48px 80px;
  position: relative;
  text-align: center;
}

.hero-content {
  max-width: 620px;
  position: relative;
  z-index: 2;
}

/* ─── Hero entrance sequence ─────────────────────────────── */
.hl {
  display: inline-block;
  opacity: 0;
}
.hl-1 {
  animation: fadeUp 0.55s ease 350ms forwards;
}
.hl-2 {
  animation: fadeUp 0.55s ease 700ms forwards;
}
.hl-3 {
  animation: fadeUp 0.55s ease 1050ms forwards;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 36px;
}

.tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--peach);
  flex-shrink: 0;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 28px;
}

h1 em {
  font-style: italic;
  color: var(--peach-dark);
}

.hero-body {
  font-size: 18px;
  color: var(--ink-mid);
  line-height: 1.7;
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto 48px;
  opacity: 0;
  animation: fadeUp 0.5s ease 1300ms forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  animation: fadeUp 0.5s ease 1550ms forwards;
}

.hero-scroll-arrow,
.section-arrow {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(26, 22, 18, 0.8);
  text-decoration: none;
  animation: scrollBounce 2s ease-in-out infinite;
  transition: color 0.2s;
  z-index: 2;
}

.hero-scroll-arrow {
  opacity: 0;
  animation:
    heroArrowIn 0.5s ease 2050ms forwards,
    scrollBounce 2s ease-in-out 2550ms infinite;
}

@keyframes heroArrowIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.hero-scroll-arrow:hover,
.section-arrow:hover {
  color: var(--ink);
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

.hero-peach {
  position: absolute;
  right: 9%;
  top: 50%;
  transform: translateY(-50%);
  animation: float 5s ease-in-out infinite;
  z-index: 2;
}

/* ─── WHO THIS IS FOR ────────────────────────────────────── */
.who-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 48px;
  position: relative;
}

.who-inner {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.who-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.who-body p {
  font-size: 18px;
  color: var(--ink-mid);
  line-height: 1.75;
  font-weight: 300;
}

/* ─── PROBLEMS ───────────────────────────────────────────── */
.problems-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 48px;
  position: relative;
}

.problems-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.problems {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.problem {
  background: var(--cream);
  padding: 36px 36px;
  transition: background 0.2s;
}

.problem:hover {
  background: white;
}

.problem-full {
  grid-column: 1 / -1;
}

.problem-number {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--peach);
  margin-bottom: 14px;
}

.problem-body {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.75;
  font-weight: 300;
}

/* ─── ABOUT ──────────────────────────────────────────────── */
.about-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 48px;
  position: relative;
}

.about-inner {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-body p {
  font-size: 18px;
  color: var(--ink-mid);
  line-height: 1.75;
  font-weight: 300;
}

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 48px;
  position: relative;
}

.faq-inner {
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faqs {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: var(--border);
  gap: 1px;
  border: 1px solid var(--border);
}

.faq {
  background: var(--cream);
  transition: background 0.35s ease;
}
.faq.is-open {
  background: white;
}

.faq-question {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  padding: 24px 28px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}

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

.faq-question::after {
  content: "+";
  font-size: 20px;
  font-weight: 300;
  color: var(--stone);
  flex-shrink: 0;
  transition:
    transform 0.25s,
    color 0.2s;
  line-height: 1;
}

.faq.is-open .faq-question::after {
  transform: rotate(45deg);
  color: var(--ink);
}

.faq-answer {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.75;
  font-weight: 300;
  padding: 0 28px;
  overflow: hidden;
  height: 0;
}

/* ─── HOW IT WORKS ───────────────────────────────────────── */
.how-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 48px;
  position: relative;
}

.how-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.step {
  background: var(--cream);
  padding: 44px 36px;
  transition: background 0.2s;
}

.step:hover,
.step-active {
  background: white;
}

.step-number {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.2s;
}

.step:hover .step-number,
.step-active .step-number {
  color: var(--peach);
}

@keyframes stepBgActivate {
  to {
    background: white;
  }
}

@keyframes stepNumActivate {
  to {
    color: var(--peach);
  }
}

.steps-in-view .step-seq-1 {
  animation: stepBgActivate 0.5s ease 1.5s forwards;
}
.steps-in-view .step-seq-1 .step-number {
  animation: stepNumActivate 0.5s ease 1.5s forwards;
}

.steps-in-view .step-seq-2 {
  animation: stepBgActivate 0.5s ease 3s forwards;
}
.steps-in-view .step-seq-2 .step-number {
  animation: stepNumActivate 0.5s ease 3s forwards;
}

.steps-in-view .step-seq-3 {
  animation: stepBgActivate 0.5s ease 4.5s forwards;
}
.steps-in-view .step-seq-3 .step-number {
  animation: stepNumActivate 0.5s ease 4.5s forwards;
}
.step-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
}
.step-body {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.7;
  font-weight: 300;
}

/* ─── OFFER CARD ─────────────────────────────────────────── */
.offer-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 52px;
  background: white;
  width: 100%;
}

.offer-title {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 18px;
}

.offer-body {
  font-size: 17px;
  color: var(--ink-mid);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 28px;
}

.offer-cta {
  display: inline-block;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
  padding: 14px 30px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.25s;
  vertical-align: middle;
}

.offer-cta:hover {
  background: var(--peach-dark);
}

.offer-cta-track {
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.offer-cta-default,
.offer-cta-hover {
  display: block;
  white-space: nowrap;
  line-height: 1;
}

.offer-cta:hover .offer-cta-track {
  transform: translateY(-50%);
}

/* ─── SERVICES ───────────────────────────────────────────── */
.services-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 48px;
  position: relative;
}

.services-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.service {
  padding: 44px 40px;
  background: var(--cream);
  transition: background 0.2s;
}

.service:hover {
  background: white;
}

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--peach-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 18px;
}

.service-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}

.service-body {
  font-size: 13px;
  color: var(--stone);
  line-height: 1.75;
  font-weight: 300;
}

/* ─── PRICING ────────────────────────────────────────────── */
.pricing-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 48px;
  position: relative;
}

.pricing-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pricing-anchor {
  border: 1px solid var(--peach);
  border-radius: 20px;
  padding: 48px 56px;
  background: white;
  box-shadow: 0 8px 40px rgba(244, 165, 122, 0.14);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 56px;
}

.pricing-from {
  flex-shrink: 0;
}

.pricing-from-label {
  display: block;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 10px;
  white-space: nowrap;
}

.pricing-from-amount {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 700;
  color: var(--peach-dark);
  line-height: 1;
}

.pricing-from-note {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.75;
  font-weight: 300;
  border-left: 1px solid var(--border);
  padding-left: 56px;
}

.pricing-phases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.pricing-phase {
  background: var(--cream);
  padding: 44px 40px;
  transition: background 0.2s;
}

.pricing-phase:hover {
  background: white;
}

.pricing-phase-number {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.2s;
}

.pricing-phase:hover .pricing-phase-number {
  color: var(--peach);
}

.pricing-phase-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
}

.pricing-phase-body {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.75;
  font-weight: 300;
}

/* ─── CTA ────────────────────────────────────────────────── */
.cta-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 48px;
  text-align: center;
  position: relative;
}

.cta-inner {
  position: relative;
  z-index: 1;
}
.cta-section h2 {
  margin: 0 auto 20px;
  text-align: center;
}

.cta-section .section-label {
  text-align: center;
  margin-bottom: 20px;
}

.cta-body {
  font-size: 16px;
  color: var(--ink-mid);
  font-weight: 300;
  margin: 0 auto 40px;
  max-width: 400px;
  line-height: 1.7;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--peach-light);
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-wordmark {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.06em;
}

.footer-right {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--stone);
  text-transform: uppercase;
}

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideFromRight {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(-50%) translateY(0);
  }
  50% {
    transform: translateY(-50%) translateY(-18px);
  }
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  nav {
    padding: 16px 24px;
  }
  .nav-links {
    display: none;
  }
  .nav-wordmark {
    display: none;
  }
  .nav-hamburger {
    display: none;
  }
  .hero-scroll-arrow,
  .section-arrow {
    display: none;
  }

  .hero {
    padding: 100px 24px 60px;
  }
  .hero-peach {
    display: none;
  }

  .problems-section,
  .how-section,
  .services-section,
  .about-section,
  .pricing-section,
  .faq-section,
  .cta-section {
    padding: 64px 24px;
  }

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

  .steps,
  .services,
  .pricing-phases {
    grid-template-columns: 1fr;
  }

  .pricing-anchor {
    flex-direction: column;
    gap: 28px;
    padding: 36px 28px;
  }

  .pricing-from-note {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border);
    padding-top: 28px;
  }

  footer {
    padding: 28px 24px;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
