:root {
  --bg: #fbfbf9;
  --ink: #101410;
  --ink-soft: #5a6157;
  --ink-mute: #8d948a;
  --accent: #7ed957;
  --accent-deep: #2f6b21;
  --mint: #edf8e4;
  --lilac: #f0ebfb;
  --blue: #e8f1fb;
  --sand: #fbf3e4;
  --sand-deep: #f3efe4;
  --panel: #f2f4f0;
  --line: rgba(16, 20, 16, 0.08);
  --wrap: 1180px;
  --gutter: 34px;
  --radius-sm: 20px;
  --radius-md: 28px;
  --radius-lg: 44px;
  --shadow-sm: 0 8px 22px rgba(16, 20, 16, 0.08);
  --shadow-md: 0 22px 44px rgba(16, 20, 16, 0.12);
  --shadow-lg: 0 30px 60px rgba(16, 20, 16, 0.22);
  --topbar: 142px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--topbar);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 16px/1.6 "Figtree", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

a {
  color: var(--ink);
  text-decoration: none;
}

a:hover {
  color: var(--accent-deep);
}

button {
  font: inherit;
}

::selection {
  background: #c9f0ae;
}

:focus-visible {
  outline: 2px solid var(--accent-deep);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 12px 0;
}

.skip-link:focus {
  left: 0;
  color: #fff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s, background 0.25s, box-shadow 0.25s;
}

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

.btn--accent {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(126, 217, 87, 0.4);
}

.btn--accent:hover {
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(126, 217, 87, 0.55);
}

.btn--dark {
  background: var(--ink);
  color: #fff;
  font-size: 16px;
  padding: 17px 26px;
}

.btn--dark:hover {
  background: var(--accent-deep);
  color: #fff;
}

.btn--light {
  background: #fff;
  border: 1px solid rgba(16, 20, 16, 0.14);
  font-size: 16px;
  padding: 16px 25px;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

/* Sticky top bar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 70;
}

.marquee {
  display: flex;
  width: 100%;
  background: var(--ink);
  padding: 14px 0;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  flex: none;
  align-items: center;
  gap: 32px;
  padding-right: 32px;
  color: #f2f4f0;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  animation: marquee 42s linear infinite;
}

.marquee__track li::after {
  content: "✦";
  margin-left: 32px;
  color: var(--accent);
}

@keyframes marquee {
  to {
    transform: translateX(-100%);
  }
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px var(--gutter);
  background: rgba(251, 251, 249, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(16, 20, 16, 0.07);
}

.header__brand img {
  width: 124px;
}

.header__list {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--ink);
  padding: 6px;
  border-radius: 999px;
}

.header__list a {
  display: block;
  padding: 10px 18px;
  border-radius: 999px;
  color: #f2f4f0;
  font-size: 14px;
  font-weight: 600;
}

.header__list a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  background: var(--ink);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  background: #f2f4f0;
  transition: translate 0.2s, rotate 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:first-child {
  translate: 0 4px;
  rotate: 45deg;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:last-child {
  translate: 0 -4px;
  rotate: -45deg;
}

.header__list-cta {
  display: none;
}

.header__cta {
  padding: 13px 20px;
  font-size: 14px;
}

/* Hero */
.hero {
  position: relative;
  padding: 52px var(--gutter) 30px;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  pointer-events: none;
  filter: blur(12px);
}

.hero__glow--green {
  left: 50%;
  top: -280px;
  width: 1180px;
  height: 700px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(126, 217, 87, 0.16), rgba(126, 217, 87, 0));
}

.hero__glow--peach {
  right: -140px;
  top: 180px;
  width: 520px;
  height: 520px;
  background: radial-gradient(closest-side, rgba(250, 214, 180, 0.55), rgba(250, 214, 180, 0));
}

.hero__inner {
  position: relative;
  max-width: var(--wrap);
  margin: 0 auto;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid rgba(16, 20, 16, 0.1);
  padding: 8px 16px 8px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(16, 20, 16, 0.06);
}

.badge__dot {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--accent);
}

.hero__title {
  margin: 26px auto 0;
  max-width: 880px;
  font-size: clamp(36px, 5.2vw, 72px);
}

.hero__lead {
  margin: 24px auto 0;
  max-width: 560px;
  font-size: 18px;
  color: var(--ink-soft);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

/* Fanned reel cards */
.fan {
  position: relative;
  margin: 56px auto 0;
  height: 430px;
}

.fan__card {
  position: absolute;
  bottom: 0;
  margin: 0;
  border-radius: 26px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow-md);
  animation: float 7s ease-in-out infinite;
}

.fan__card img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.fan__card--1 {
  left: 0;
  width: 190px;
  rotate: -9deg;
}

.fan__card--2 {
  left: 200px;
  bottom: 22px;
  width: 210px;
  rotate: -5deg;
  animation-delay: 0.6s;
}

.fan__card--3 {
  left: 50%;
  bottom: 34px;
  width: 250px;
  margin-left: -125px;
  z-index: 3;
  border: 6px solid #fff;
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  animation-delay: 0.3s;
  overflow: visible;
}

.fan__card--3 img {
  border-radius: 26px;
}

.fan__card--4 {
  right: 200px;
  bottom: 22px;
  width: 210px;
  rotate: 5deg;
  animation-delay: 0.9s;
}

.fan__card--5 {
  right: 0;
  width: 190px;
  rotate: 9deg;
  animation-delay: 1.2s;
}

.fan__stat {
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  padding: 9px 15px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(16, 20, 16, 0.18);
}

@keyframes float {
  50% {
    translate: 0 -16px;
  }
}

.bubble {
  position: absolute;
  left: 6%;
  top: 18px;
  z-index: 4;
  max-width: 300px;
  margin: 0;
  background: #fff;
  border-radius: 24px 24px 24px 6px;
  padding: 18px 20px;
  text-align: left;
  font-size: 15px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.45;
  box-shadow: 0 18px 40px rgba(16, 20, 16, 0.12);
}

.bubble p {
  transition: opacity 0.35s;
}

.bubble.is-fading p {
  opacity: 0;
}

.pill-dark {
  position: absolute;
  right: 5%;
  top: 64px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.pill-dark__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
}

/* Section scaffolding */
.section {
  padding: 110px var(--gutter);
}

.section--tight {
  padding-top: 0;
}

.section--contact {
  padding: 70px var(--gutter) 110px;
}

.section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
}

.section__head--center {
  display: block;
  text-align: center;
  margin-bottom: 52px;
}

.section__title {
  font-size: clamp(30px, 4.4vw, 58px);
  max-width: 760px;
}

.section__head--center .section__title {
  margin: 22px auto 0;
}

.section__sub {
  max-width: 400px;
  font-size: 16px;
  color: var(--ink-soft);
}

.section__sub--center {
  margin: 18px auto 0;
  max-width: 520px;
}

.eyebrow {
  display: inline-block;
  background: #fff;
  border: 1px solid rgba(16, 20, 16, 0.1);
  padding: 7px 15px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.eyebrow--mint {
  background: var(--mint);
  border-color: transparent;
  color: var(--accent-deep);
}

.eyebrow--ghost {
  background: rgba(255, 255, 255, 0.1);
  border-color: transparent;
  color: var(--accent);
}

.panel {
  background: var(--panel);
  border-radius: var(--radius-lg);
}

.panel--dark {
  background: var(--ink);
  color: #fff;
  padding-block: 96px;
}

.panel--dark .section__title {
  color: #fff;
}

.panel--dark .section__sub {
  color: #a7aea4;
}

/* Pain points */
.pains {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pain {
  border-radius: var(--radius-md);
  padding: 26px 24px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
  transition: transform 0.3s;
}

.pain:hover {
  transform: translateY(-6px);
}

.pain--lilac {
  background: var(--lilac);
  rotate: -1.2deg;
}

.pain--sand {
  background: var(--sand);
  rotate: 1deg;
}

.pain--blue {
  background: var(--blue);
  rotate: -0.8deg;
}

.pain--mint {
  background: var(--mint);
  rotate: 1.4deg;
}

.band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  background: var(--ink);
  border-radius: 30px;
  padding: 38px 40px;
}

.band__text {
  max-width: 640px;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

/* Differentiators */
.usp {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.usp__item {
  display: flex;
  gap: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 30px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.usp__item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-sm);
}

.usp__item--mint {
  background: var(--mint);
  border-color: transparent;
}

.usp__item h3 {
  font-size: 23px;
}

.usp__item p {
  margin-top: 10px;
  font-size: 15px;
  color: var(--ink-soft);
}

.usp__num {
  flex: none;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--accent-deep);
  font-size: 17px;
  font-weight: 800;
}

.usp__num--dark {
  background: var(--ink);
  color: var(--accent);
}

.usp__num--lilac {
  background: var(--lilac);
  color: #5b4b86;
}

.usp__num--blue {
  background: var(--blue);
  color: #41618a;
}

/* Plans */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 32px;
  padding: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.plan:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 50px rgba(16, 20, 16, 0.1);
}

.plan--featured {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 26px 60px rgba(16, 20, 16, 0.22);
}

.plan__flag {
  position: absolute;
  top: -14px;
  left: 50%;
  translate: -50% 0;
  background: var(--accent);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.plan__head {
  border-radius: 24px;
  padding: 26px 24px;
}

.plan__head--sand {
  background: var(--sand);
}

.plan__head--lilac {
  background: var(--lilac);
}

.plan__head--deep {
  background: #14351f;
}

.plan__tags {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.tag {
  background: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.tag--soft {
  background: rgba(255, 255, 255, 0.55);
}

.tag--accent {
  background: var(--ink);
  color: var(--accent);
}

.tag--ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.channels {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.channels li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.6);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
}

.plan__head--deep .channels li {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.channels__icon {
  width: 13px;
  height: 13px;
}

.plan__name {
  font-size: 34px;
  line-height: 1;
}

.plan__desc {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: #6b6250;
}

.plan__head--lilac .plan__desc {
  color: #6b6484;
}

.plan__head--deep .plan__desc {
  color: #b9cfbe;
}

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 24px 22px 6px;
}

.plan__price strong {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.plan__price span {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-mute);
}

.plan__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 22px 26px;
  font-size: 14.5px;
  line-height: 1.45;
  color: #3f463e;
}

.plan--featured .plan__list {
  color: #dfe4dc;
}

.plan__list li {
  display: flex;
  gap: 10px;
}

.plan__list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 800;
}

.plan__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto 12px 12px;
  background: var(--panel);
  padding: 16px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
}

.plan__cta:hover {
  background: var(--ink);
  color: #fff;
}

.plan__cta--accent {
  background: var(--accent);
  font-weight: 800;
}

.plan__cta--accent:hover {
  background: #fff;
  color: var(--ink);
}

.plans__note {
  margin-top: 26px;
  text-align: center;
  font-size: 14px;
  color: var(--ink-mute);
}

/* About */
.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about__media {
  position: relative;
}

.about__blob {
  position: absolute;
  left: -14px;
  top: -14px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: var(--accent);
  animation: float 9s ease-in-out infinite;
}

.about__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 36px;
  background: var(--panel);
  box-shadow: 0 26px 54px rgba(16, 20, 16, 0.12);
}

.about__stat {
  position: absolute;
  right: -16px;
  bottom: 28px;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: 0 16px 34px rgba(16, 20, 16, 0.14);
}

.about__stat strong {
  display: block;
  font-size: 22px;
}

.about__stat span {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-mute);
}

.about__body .section__title {
  margin-top: 22px;
}

.about__text {
  margin-top: 24px;
  max-width: 540px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.skills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 32px;
  margin-top: 30px;
  border-top: 1px solid rgba(16, 20, 16, 0.12);
}

.skills li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(16, 20, 16, 0.12);
  font-size: 14.5px;
  font-weight: 600;
}

.skills li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}

/* Portfolio */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 14px;
}

.chip {
  background: rgba(255, 255, 255, 0.08);
  color: #dfe4dc;
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.chip:hover {
  background: rgba(255, 255, 255, 0.16);
}

.chip.is-active {
  background: var(--accent);
  color: var(--ink);
}

.work__count {
  margin-bottom: 26px;
  font-size: 13.5px;
  color: var(--ink-mute);
}

.work {
  columns: 4;
  column-gap: 16px;
}

.work__item {
  break-inside: avoid;
  margin-bottom: 22px;
  transition: transform 0.3s;
}

.work__item:hover {
  transform: translateY(-6px);
}

.work__figure {
  position: relative;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #1c211b;
}

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

.ratio-portrait img {
  aspect-ratio: 9 / 16;
}

.ratio-tall img {
  aspect-ratio: 4 / 5;
}

.ratio-square img {
  aspect-ratio: 1 / 1;
}

.work__tag {
  position: absolute;
  left: 10px;
  top: 10px;
  background: rgba(16, 20, 16, 0.72);
  color: #fff;
  backdrop-filter: blur(6px);
  font-size: 11px;
  font-weight: 800;
  padding: 6px 11px;
  border-radius: 999px;
}

.work__item:nth-child(3n + 1) .work__tag {
  background: var(--accent);
  color: var(--ink);
}

.work__metric {
  margin-top: 11px;
  font-size: 14px;
  font-weight: 800;
}

.work__note {
  font-size: 12.5px;
  color: var(--ink-mute);
}

.work__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}

.case {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
  margin-top: 36px;
  background: #1a1f19;
  border-radius: 32px;
  padding: 36px 34px;
}

.case__title {
  margin: 16px 0 12px;
  font-size: 27px;
  color: #fff;
}

.case__text {
  font-size: 15px;
  color: #a7aea4;
}

.case__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 0;
}

.case__stats div {
  background: var(--ink);
  border-radius: var(--radius-sm);
  padding: 22px;
}

.case__stats dt {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
}

.case__stats dd {
  margin: 0;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-mute);
}

/* Process */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}

.step--sand {
  background: var(--sand-deep);
  border-color: transparent;
}

.step h3 {
  margin: 12px 0 8px;
  font-size: 21px;
}

.step p {
  font-size: 14.5px;
  color: var(--ink-soft);
}

.step__when {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.step__when--mint {
  color: var(--accent-deep);
}

/* Testimonials */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 38px;
}

.quote {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  border-radius: var(--radius-md);
  padding: 30px 28px;
}

.quote blockquote {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.quote figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  font-size: 12.5px;
}

.quote figcaption strong {
  display: block;
  font-size: 14px;
}

.quote--mint {
  background: var(--mint);
  color: #3d5233;
}

.quote--lilac {
  background: var(--lilac);
  color: #4b4467;
}

.quote--dark {
  background: var(--ink);
  color: #8d948a;
}

.quote--dark blockquote {
  color: #fff;
}

.quote--dark figcaption strong {
  color: var(--accent);
}

/* Extra services */
.extras {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.extra {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.extra__media {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}

.extra__media:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.extra__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.extra h3 {
  margin-top: 6px;
  font-size: 26px;
}

.extra p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.extra__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-size: 14.5px;
  font-weight: 800;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 3px;
  align-self: flex-start;
}

.extras__note {
  margin-top: 22px;
  font-size: 14px;
  color: var(--ink-mute);
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: start;
  background: var(--sand-deep);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
}

.contact .section__title {
  font-size: clamp(32px, 4.6vw, 64px);
}

.contact__text {
  margin-top: 24px;
  max-width: 400px;
  font-size: 17px;
  color: var(--ink-soft);
}

.contact__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 32px;
  font-size: 15.5px;
  font-weight: 700;
}

.form {
  background: #fff;
  border-radius: 32px;
  padding: 34px 32px;
  box-shadow: 0 18px 44px rgba(16, 20, 16, 0.07);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 16px;
  align-items: start;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field label,
.form__packs legend {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-soft);
}

.input,
.field input,
.field textarea {
  border: 1px solid rgba(16, 20, 16, 0.14);
  border-radius: 999px;
  padding: 14px 18px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
}

.field textarea {
  border-radius: 22px;
  resize: vertical;
}

.field input:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.field input:user-invalid {
  border-color: #c0553d;
}

.form__packs {
  margin: 26px 0 0;
  padding: 0;
  border: 0;
}

.form__packs legend {
  padding: 0;
}

.form__choices {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 10px;
}

.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice span {
  display: inline-block;
  border: 1px solid rgba(16, 20, 16, 0.14);
  border-radius: 999px;
  padding: 11px 17px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  background: var(--bg);
  transition: background 0.2s, border-color 0.2s;
}

.choice input:checked + span {
  background: var(--accent);
  border-color: var(--accent);
}

.choice input:focus-visible + span {
  outline: 2px solid var(--accent-deep);
  outline-offset: 2px;
}

.form > .field {
  margin-top: 26px;
}

.form__submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 22px;
  background: var(--ink);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.25s, background 0.25s;
}

.form__submit:hover {
  transform: translateY(-2px);
  background: var(--accent-deep);
}

.form__note {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--ink-mute);
}

/* Floating contact prompt */
.floating-cta {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 18px;
  translate: -50% 120%;
  max-width: calc(100vw - 32px);
  background: var(--ink);
  border-radius: 999px;
  padding: 12px 12px 12px 26px;
  box-shadow: 0 18px 44px rgba(16, 20, 16, 0.32);
  transition: translate 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s;
  opacity: 0;
}

.floating-cta.is-visible {
  translate: -50% 0;
  opacity: 1;
}

.floating-cta__text {
  font-size: 14.5px;
  font-weight: 600;
  color: #dfe4dc;
}

.floating-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: none;
  background: var(--accent);
  color: var(--ink);
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  animation: pulse 2.4s ease-in-out infinite;
}

.floating-cta__btn:hover {
  color: var(--ink);
  animation-play-state: paused;
  background: #fff;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(126, 217, 87, 0.55);
  }

  60% {
    box-shadow: 0 0 0 14px rgba(126, 217, 87, 0);
  }
}

/* Footer */
.footer {
  padding: 0 var(--gutter) 44px;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: var(--ink);
  border-radius: 36px;
  padding: 34px 36px;
}

.footer__brand {
  display: inline-flex;
  background: var(--bg);
  border-radius: 16px;
  padding: 12px 16px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 14px;
  font-weight: 600;
}

.footer__links a {
  color: #a7aea4;
}

.footer__links a:hover {
  color: var(--accent);
}

.footer__legal {
  font-size: 13px;
  color: var(--ink-mute);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  translate: 0 40px;
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), translate 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  translate: 0 0;
}

/* Responsive */
@media (max-width: 1080px) {
  :root {
    --gutter: 22px;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    order: 3;
  }

  .header__cta {
    display: none;
  }

  .nav-toggle {
    margin-left: auto;
  }

  .header__list-cta {
    display: block;
    margin: 6px 8px 4px;
  }

  .header__list-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .header__nav {
    position: absolute;
    left: var(--gutter);
    right: var(--gutter);
    top: calc(100% + 8px);
    display: none;
  }

  .header {
    position: relative;
  }

  .header__nav.is-open {
    display: block;
  }

  .header__list {
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
  }

  .header__list a {
    padding: 14px 18px;
    font-size: 16px;
  }

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

  .work {
    columns: 3;
  }

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

  .plans,
  .quotes {
    grid-template-columns: 1fr;
  }

  .about,
  .contact,
  .case {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact {
    padding: 36px 26px;
  }
}

@media (max-width: 720px) {
  .floating-cta {
    left: 16px;
    right: 16px;
    bottom: 16px;
    translate: 0 140%;
    gap: 12px;
    padding: 10px 10px 10px 18px;
  }

  .floating-cta.is-visible {
    translate: 0 0;
  }

  .floating-cta__text {
    font-size: 13px;
  }

  .floating-cta__btn {
    padding: 12px 16px;
    font-size: 14px;
  }

  :root {
    --topbar: 116px;
  }

  .section {
    padding: 56px var(--gutter);
  }

  .section--tight {
    padding-top: 0;
  }

  .section--contact {
    padding: 44px var(--gutter) 64px;
  }

  .section__head {
    margin-bottom: 28px;
    gap: 16px;
  }

  .section__head--center {
    margin-bottom: 30px;
  }

  .section__head--center .section__title {
    margin-top: 14px;
  }

  .fan {
    height: 330px;
  }

  .fan__card--1,
  .fan__card--5,
  .bubble,
  .pill-dark {
    display: none;
  }

  .fan__card--2 {
    left: 0;
  }

  .fan__card--4 {
    right: 0;
  }

  .pains,
  .steps,
  .usp,
  .form__row {
    grid-template-columns: 1fr;
  }

  .work {
    columns: 2;
  }

  .band {
    padding: 26px 24px;
  }

  .fan {
    height: 380px;
    margin-top: 40px;
  }

  .fan__card--3 {
    width: 186px;
    margin-left: -93px;
  }

  .fan__card--2,
  .fan__card--4 {
    width: 142px;
  }

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

  .floating-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px;
    border-radius: 22px;
  }

  .floating-cta__text {
    padding: 0 4px;
    line-height: 1.35;
  }

  .floating-cta__btn {
    justify-content: center;
    border-radius: 16px;
    padding: 13px 18px;
  }

  .steps {
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--gutter);
    margin: 0 calc(var(--gutter) * -1);
    padding: 4px var(--gutter) 12px;
    scrollbar-width: none;
    cursor: grab;
  }

  .steps::-webkit-scrollbar {
    display: none;
  }

  .steps.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
  }

  .step {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }

  .contact {
    background: none;
    border-radius: 0;
    padding: 0;
  }

  .form {
    border-radius: 26px;
    padding: 26px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    translate: none;
  }

  .floating-cta.is-visible {
    opacity: 1;
  }
}
