:root {
  --orange: #e95600;
  --orange-dark: #cc4b00;
  --cream: #fff6e8;
  --cream-deep: #fff4e3;
  --ink: #2a1a10;
  --muted: #5a4a3d;
  --pill-bg: #ffe8d3;
  --border: rgba(80, 45, 20, 0.10);
  --header-h: 80px;
  --shadow-phone: 0 40px 80px -24px rgba(80, 45, 20, 0.45);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(255, 246, 232, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(80, 45, 20, 0.02), 0 8px 24px -20px rgba(80, 45, 20, 0.25);
}

.nav {
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.brand__mark {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand__name {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.01em;
}

.nav__links {
  list-style: none;
  display: flex;
  gap: 34px;
  margin: 0 auto;
}

.nav__links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.18s ease;
}

.nav__links a:hover {
  color: var(--orange);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  border-radius: 999px;
  padding: 16px 26px;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background-color 0.18s ease,
    box-shadow 0.18s ease, border-color 0.18s ease;
}

.btn--sm {
  padding: 11px 18px;
  font-size: 15px;
}

.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 12px 24px -10px rgba(233, 86, 0, 0.55);
}

.btn--primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 30px -12px rgba(233, 86, 0, 0.6);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  border-color: var(--border);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(80, 45, 20, 0.22);
  transform: translateY(-2px);
}

.btn__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  margin-left: -6px;
}

/* ---------- Mobile nav toggle ---------- */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
}

.nav__toggle span {
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  background: var(--cream);
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Right-half kitchen background with a soft left + bottom fade into cream */
.hero__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 54%;
  background: url("assets/hero-bg.png") center right / cover no-repeat;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 30%),
    linear-gradient(to bottom, #000 60%, transparent 96%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to right, transparent 0%, #000 30%),
    linear-gradient(to bottom, #000 60%, transparent 96%);
  mask-composite: intersect;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 32px 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

/* ---------- Hero copy ---------- */
.hero__content {
  max-width: 560px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pill-bg);
  color: var(--orange);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 15px;
  border-radius: 999px;
  margin-bottom: 26px;
}

.pill__icon {
  font-size: 15px;
  line-height: 1;
}

.hero__heading {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: clamp(40px, 6.4vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.hero__slogan {
  margin-top: 22px;
  color: var(--orange);
  font-weight: 600;
  font-size: clamp(19px, 2.2vw, 24px);
  letter-spacing: -0.01em;
}

.hero__body {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  max-width: 480px;
}

.hero__ctas {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- Hero visual ---------- */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
}

.phone {
  position: relative;
  width: clamp(260px, 26vw, 320px);
  aspect-ratio: 320 / 660;
  background: #111;
  border-radius: 46px;
  padding: 10px;
  box-shadow: var(--shadow-phone);
  transform: rotate(0.5deg);
}

.phone__island {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 26px;
  background: #000;
  border-radius: 16px;
  z-index: 2;
}

.phone__screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 37px;
}

.chippy-card {
  position: absolute;
  right: -6px;
  top: 26%;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 240px;
  padding: 14px 16px;
  background: rgba(255, 251, 244, 0.82);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 20px 40px -18px rgba(80, 45, 20, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.chippy-card__avatar {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  object-fit: contain;
}

.chippy-card__text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}

.chippy-card__text span {
  color: var(--muted);
  font-weight: 500;
}

/* ---------- Bottom cream wave ---------- */
.hero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 70px;
  z-index: 1;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__bg {
    width: 62%;
    opacity: 0.6;
  }
  .phone {
    width: clamp(240px, 34vw, 300px);
  }
  .chippy-card {
    right: -12px;
  }
}

@media (max-width: 760px) {
  .nav {
    padding: 0 18px;
    gap: 12px;
  }
  .brand__name {
    font-size: 21px;
  }
  .nav__links {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 8px 20px 16px;
    margin: 0;
    display: none;
  }
  .nav__links.is-open {
    display: flex;
  }
  .nav__links li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav__toggle {
    display: flex;
  }

  .hero {
    align-items: flex-start;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    padding: 36px 20px 80px;
    gap: 36px;
  }
  .hero__content {
    max-width: 100%;
    text-align: center;
  }
  .hero__body {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__ctas {
    justify-content: center;
  }
  .pill {
    margin-bottom: 20px;
  }

  /* Soft background behind the phone only */
  .hero__bg {
    width: 100%;
    opacity: 0.35;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 40%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 40%, transparent 100%);
  }
  .hero__visual {
    min-height: 0;
  }
  .phone {
    width: min(72vw, 300px);
  }
  .chippy-card {
    right: 0;
    top: auto;
    bottom: 8%;
    max-width: 210px;
  }
}

@media (max-width: 420px) {
  .chippy-card {
    display: none;
  }
}

/* ---------- Benefits section ---------- */
.benefits {
  background: var(--cream);
  padding: 112px 0 120px;
}

.benefits__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.benefits__head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pill-bg);
  color: var(--orange);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
}

.eyebrow__icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.benefits__heading {
  margin-top: 20px;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.benefits__sub {
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

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

.bcard {
  background: #fffdf9;
  border: 1px solid rgba(233, 86, 0, 0.14);
  border-radius: 28px;
  padding: 30px 28px;
  box-shadow: 0 10px 24px -18px rgba(80, 45, 20, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.bcard:hover {
  transform: translateY(-4px);
  border-color: rgba(233, 86, 0, 0.28);
  box-shadow: 0 22px 38px -22px rgba(80, 45, 20, 0.4);
}

.bcard__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--pill-bg);
  color: var(--orange);
  margin-bottom: 20px;
  transition: background-color 0.2s ease;
}

.bcard__badge svg {
  width: 26px;
  height: 26px;
}

.bcard:hover .bcard__badge {
  background: #ffdcbe;
}

.bcard__title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.bcard__accent {
  display: block;
  width: 30px;
  height: 3px;
  border-radius: 3px;
  background: var(--orange);
  margin: 14px 0 14px;
}

.bcard__body {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ---------- CTA strip ---------- */
.cta-strip {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 26px 34px;
  background: linear-gradient(180deg, #fff1e1 0%, #ffe7d2 100%);
  border: 1px solid rgba(233, 86, 0, 0.18);
  border-radius: 28px;
}

.cta-strip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 20px -8px rgba(233, 86, 0, 0.55);
}

.cta-strip__text {
  flex: 1;
}

.cta-strip__text h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 24px);
  letter-spacing: -0.01em;
  color: var(--ink);
}

.cta-strip__text p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.5;
}

.cta-strip__btn {
  flex-shrink: 0;
}

@media (max-width: 980px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .benefits {
    padding: 72px 0 80px;
  }
  .benefits__grid {
    grid-template-columns: 1fr;
  }
  .cta-strip {
    flex-direction: column;
    text-align: center;
    gap: 18px;
    padding: 28px 24px;
  }
  .cta-strip__text {
    flex: initial;
  }
}

/* ---------- How it works ---------- */
.howit {
  background: var(--cream);
  padding: 24px 0 120px;
}

.howit__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.steps {
  display: flex;
  align-items: stretch;
  gap: 6px;
}

.step-arrow {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  color: var(--orange);
  opacity: 0.7;
}

.step-arrow svg {
  width: 32px;
  height: 22px;
}

.scard {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: #fffdf9;
  border: 1px solid rgba(233, 86, 0, 0.14);
  border-radius: 26px;
  padding: 28px 24px;
  box-shadow: 0 10px 24px -18px rgba(80, 45, 20, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.scard:hover {
  transform: translateY(-4px);
  border-color: rgba(233, 86, 0, 0.28);
  box-shadow: 0 22px 38px -22px rgba(80, 45, 20, 0.4);
}

.scard__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.scard__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
  box-shadow: 0 6px 14px -6px rgba(233, 86, 0, 0.6);
}

.scard__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--pill-bg);
  color: var(--orange);
  transition: background-color 0.2s ease;
}

.scard__badge svg {
  width: 23px;
  height: 23px;
}

.scard:hover .scard__badge {
  background: #ffdcbe;
}

.scard__title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.scard .bcard__accent {
  margin: 12px 0 12px;
}

.scard__body {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}

.scard__visual {
  margin-top: 22px;
}

/* ----- Step 1 visual: mic + bubble ----- */
.v1 {
  position: relative;
}

.v1__mic {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 10px 12px;
  box-shadow: 0 8px 18px -14px rgba(80, 45, 20, 0.4);
}

.v1__micbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  flex-shrink: 0;
}

.v1__micbtn svg {
  width: 18px;
  height: 18px;
}

.v1__wave {
  display: flex;
  align-items: center;
  gap: 3px;
  flex: 1;
  height: 22px;
}

.v1__wave i {
  flex: 1;
  background: rgba(233, 86, 0, 0.55);
  border-radius: 2px;
  height: 30%;
}

.v1__wave i:nth-child(2n) { height: 70%; }
.v1__wave i:nth-child(3n) { height: 95%; }
.v1__wave i:nth-child(4n) { height: 45%; }
.v1__wave i:nth-child(5n) { height: 80%; }

.v1__hold {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

.v1__photo {
  position: absolute;
  top: -12px;
  right: -4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 17px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 11px;
  transform: rotate(8deg);
  box-shadow: 0 8px 16px -10px rgba(80, 45, 20, 0.45);
}

.v1__bubble {
  margin-top: 12px;
  background: var(--pill-bg);
  color: #7a3d12;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.4;
  padding: 11px 13px;
  border-radius: 14px 14px 14px 4px;
}

/* ----- Step 2 visual: food list ----- */
.v2 {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.v2 li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 9px 11px;
}

.v2__emoji {
  font-size: 18px;
  flex-shrink: 0;
}

.v2__info {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  flex: 1;
  min-width: 0;
}

.v2__info b {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.v2__info small {
  font-size: 11px;
  color: var(--muted);
}

.tag {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 999px;
  white-space: nowrap;
}

.tag--red { color: #c0392b; background: #fde7e2; }
.tag--orange { color: #c2660f; background: #ffe9d0; }
.tag--blue { color: #356fae; background: #e6effb; }
.tag--green { color: #4a8a3f; background: #ebf5e8; }

/* ----- Step 3 visual: recipe card ----- */
.v3 {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 8px 18px -14px rgba(80, 45, 20, 0.4);
}

.v3__img {
  position: relative;
  height: 78px;
  border-radius: 11px;
  background: linear-gradient(135deg, #f4cf93 0%, #ec8a4a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.v3__emoji {
  font-size: 34px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.18));
}

.v3__verified {
  position: absolute;
  top: 8px;
  left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.95);
  color: #2e7d32;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
}

.v3__title {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.v3__meta {
  display: flex;
  gap: 12px;
  margin-top: 6px;
  font-size: 11.5px;
  color: var(--muted);
}

.v3__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}

.v3__chips span {
  font-size: 10.5px;
  font-weight: 600;
  color: #7a3d12;
  background: var(--pill-bg);
  padding: 4px 8px;
  border-radius: 999px;
}

.v3__chips .muted {
  color: var(--muted);
  background: transparent;
}

/* ----- Step 4 visual: savings ----- */
.v4 {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 8px 18px -14px rgba(80, 45, 20, 0.4);
}

.v4__panel {
  text-align: center;
  line-height: 1.2;
}

.v4__panel small {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}

.v4__amount {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--orange);
  margin: 2px 0;
}

.v4__chart {
  width: 100%;
  height: 52px;
  margin: 10px 0 2px;
  display: block;
}

.v4__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
}

.v4__up {
  color: #4a8a3f;
  background: #ebf5e8;
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .step-arrow {
    display: none;
  }
}

@media (max-width: 760px) {
  .howit {
    padding: 8px 0 80px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
}

/* ---------- Pricing ---------- */
.pricing {
  background: var(--cream);
  padding: 24px 0 120px;
}

.pricing__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.plans {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.plan {
  position: relative;
  flex: 1 1 0;
  max-width: 430px;
  display: flex;
  flex-direction: column;
  background: #fffdf9;
  border: 1px solid rgba(233, 86, 0, 0.16);
  border-radius: 30px;
  padding: 34px 32px;
  box-shadow: 0 14px 30px -22px rgba(80, 45, 20, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 44px -26px rgba(80, 45, 20, 0.45);
}

.plan--best {
  border: 2px solid var(--orange);
  background: linear-gradient(180deg, #fffaf2 0%, #fff4e6 100%);
  box-shadow: 0 18px 40px -22px rgba(233, 86, 0, 0.45);
}

.plan__badge {
  position: absolute;
  top: -13px;
  left: 32px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 999px;
  background: var(--pill-bg);
  color: var(--orange);
}

.plan__badge--best {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 16px -7px rgba(233, 86, 0, 0.6);
}

.plan__name {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 4px;
}

.plan__tag {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14.5px;
}

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 18px;
}

.plan__amount {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  color: var(--orange);
  letter-spacing: -0.02em;
}

.plan__suffix {
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
}

.plan__trial {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  margin-top: 16px;
  background: #ebf5e8;
  color: #4a8a3f;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 999px;
}

.plan__features {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.plan__features li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 15px;
  color: var(--ink);
}

.ck {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
}

.ck::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.plan__btn {
  width: 100%;
  margin-top: 28px;
}

.plan__fine {
  margin-top: 12px;
  text-align: center;
  color: var(--muted);
  font-size: 12.5px;
}

/* ---------- Trust strip ---------- */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 44px auto 0;
  max-width: 1040px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px 12px;
}

.trust__item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 6px 22px;
}

.trust__item + .trust__item {
  border-left: 1px solid var(--border);
}

.trust__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pill-bg);
  color: var(--orange);
}

.trust__icon svg {
  width: 22px;
  height: 22px;
}

.trust__text b {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
}

.trust__text p {
  margin-top: 2px;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.4;
}

@media (max-width: 760px) {
  .pricing {
    padding: 8px 0 72px;
  }
  .plans {
    flex-direction: column;
    align-items: stretch;
    max-width: 460px;
  }
  .plan {
    max-width: 100%;
    padding: 30px 26px;
  }
  .trust {
    grid-template-columns: 1fr 1fr;
    gap: 18px 0;
    padding: 24px 8px;
  }
  .trust__item + .trust__item {
    border-left: none;
  }
  .trust__item:nth-child(even) {
    border-left: 1px solid var(--border);
  }
}

@media (max-width: 440px) {
  .trust {
    grid-template-columns: 1fr;
  }
  .trust__item:nth-child(even) {
    border-left: none;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: #241008;
  color: #f3e6d6;
  padding: 64px 0 28px;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.site-footer__brand {
  max-width: 300px;
}

.site-footer__brand .brand__name {
  color: #fff;
}

.site-footer__tagline {
  margin: 14px 0 20px;
  color: rgba(243, 230, 214, 0.7);
  font-size: 15px;
  line-height: 1.5;
}

.site-footer__cols {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__col h4 {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(243, 230, 214, 0.55);
  margin-bottom: 4px;
}

.site-footer__col a {
  color: rgba(243, 230, 214, 0.85);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.18s ease;
}

.site-footer__col a:hover {
  color: var(--orange);
}

.site-footer__bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding: 22px 32px 0;
  border-top: 1px solid rgba(243, 230, 214, 0.14);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(243, 230, 214, 0.6);
}

@media (max-width: 760px) {
  .site-footer {
    padding: 48px 0 24px;
  }
  .site-footer__inner {
    gap: 36px;
  }
  .site-footer__cols {
    gap: 40px;
  }
  .site-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
  }
  .btn {
    transition: none;
  }
}
