@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Lora:wght@600;700&display=swap');

:root {
  --font-lato: 'Lato';
  --font-lora: 'Lora';
  --ink: #112c19;
  --muted: #53635a;
  --green: #173f24;
  --green-bright: #77a70b;
  --cream: #f7f1df;
  --paper: #fffdf7;
  --orange: #e96f37;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-lato), Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  width: min(1180px, calc(100% - 40px));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo {
  width: 190px;
  height: auto;
  display: block;
}

.brand-link {
  flex: 0 0 auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.main-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: color 160ms ease;
}

.main-nav a:hover {
  color: var(--green);
}

.header-cta {
  margin-left: 22px;
  padding: 13px 22px;
  border: 1px solid color-mix(in srgb, var(--green) 18%, transparent);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  transition: transform 180ms ease, background-color 180ms ease;
}

.header-cta span {
  margin-left: 5px;
  color: var(--green-bright);
}

.header-cta:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  padding: 54px 0 86px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(410px, 0.98fr);
  align-items: center;
  gap: clamp(44px, 7vw, 104px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--green-bright);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 650px;
  margin: 0;
  font-family: var(--font-lora), Georgia, serif;
  font-size: clamp(52px, 6.4vw, 91px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero-lead {
  margin: 30px 0 0;
  max-width: 610px;
  font-size: clamp(22px, 2.25vw, 31px);
  font-weight: 900;
  line-height: 1.2;
}

.hero-description {
  max-width: 570px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
}

.primary-cta {
  min-width: 250px;
  padding: 17px 20px 17px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 2px solid var(--green);
  border-radius: 10px;
  background: var(--green);
  color: white;
  box-shadow: 0 14px 30px rgba(17, 44, 25, 0.2);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.primary-cta span {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}

.primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(17, 44, 25, 0.26);
}

.hero-actions p {
  max-width: 225px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.hero-benefits {
  margin: 34px 0 0;
  padding: 24px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  border-top: 1px solid rgba(17, 44, 25, 0.13);
  list-style: none;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-benefits li::before {
  content: '✓';
  color: var(--green-bright);
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 670px;
  display: grid;
  place-items: center;
}

.dot-grid {
  position: absolute;
  right: 1%;
  top: 12%;
  width: 110px;
  height: 110px;
  opacity: 0.3;
  background-image: radial-gradient(var(--green-bright) 2px, transparent 2px);
  background-size: 14px 14px;
}

.sun-shape {
  position: absolute;
  width: min(520px, 100%);
  aspect-ratio: 1;
  border-radius: 48% 52% 42% 58% / 55% 41% 59% 45%;
  background: var(--cream);
  transform: rotate(-9deg);
}

.phone-shell {
  position: relative;
  z-index: 1;
  width: min(330px, 72vw);
  aspect-ratio: 0.515;
  padding: 11px;
  overflow: hidden;
  border: 3px solid #16341f;
  border-radius: 47px;
  background: #0e0d12;
  box-shadow: 0 28px 64px rgba(17, 44, 25, 0.24), 0 2px 0 white inset;
  transform: rotate(3.4deg);
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 50%;
  width: 31%;
  height: 22px;
  border-radius: 99px;
  background: #0d0c11;
  transform: translateX(-50%);
}

.plan-screen {
  width: 100%;
  height: 100%;
  border-radius: 34px;
  object-fit: cover;
  object-position: top center;
}

.note-card {
  position: absolute;
  z-index: 2;
  min-width: 170px;
  padding: 15px 18px;
  border: 1px solid rgba(17, 44, 25, 0.08);
  border-radius: 14px;
  background: rgba(255, 253, 247, 0.94);
  box-shadow: 0 16px 36px rgba(17, 44, 25, 0.14);
  backdrop-filter: blur(8px);
}

.note-card span,
.note-card strong {
  display: block;
}

.note-card span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.note-card strong {
  font-family: var(--font-lora), Georgia, serif;
  font-size: 21px;
}

.note-card-top {
  top: 102px;
  left: -12px;
  transform: rotate(-3deg);
}

.note-card-bottom {
  right: -4px;
  bottom: 112px;
  transform: rotate(3deg);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 34px;
    text-align: center;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-actions,
  .hero-benefits {
    justify-content: center;
  }

  .hero-visual {
    min-height: 630px;
  }
}

@media (max-width: 580px) {
  .site-header {
    width: min(100% - 28px, 1180px);
    min-height: 78px;
  }

  .brand-logo {
    width: 148px;
  }

  .header-cta {
    padding: 11px 15px;
    font-size: 12px;
  }

  .hero {
    width: min(100% - 28px, 1180px);
    min-height: auto;
    gap: 24px;
    padding: 38px 0 56px;
  }

  h1 {
    font-size: clamp(45px, 14vw, 64px);
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .primary-cta {
    width: 100%;
  }

  .hero-actions p {
    max-width: 300px;
  }

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

  .hero-visual {
    min-height: 560px;
  }

  .phone-shell {
    width: 270px;
  }

  .note-card {
    min-width: 145px;
    padding: 12px 14px;
  }

  .note-card-top {
    top: 92px;
    left: -2px;
  }

  .note-card-bottom {
    right: -2px;
    bottom: 96px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 132px 0;
}

.proof-strip {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(17, 44, 25, 0.12);
  border-bottom: 1px solid rgba(17, 44, 25, 0.12);
}

.proof-strip div {
  min-height: 116px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-right: 1px solid rgba(17, 44, 25, 0.12);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong {
  color: var(--green-bright);
  font-family: var(--font-lora), Georgia, serif;
  font-size: 42px;
  line-height: 1;
}

.proof-strip span {
  max-width: 90px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.section-heading h2,
.price-intro h2,
.couple-copy h2,
.showcase-copy h2,
.final-cta-section h2 {
  margin: 0;
  font-family: var(--font-lora), Georgia, serif;
  font-size: clamp(40px, 5.2vw, 68px);
  letter-spacing: -0.05em;
  line-height: 1.04;
  text-wrap: balance;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: clamp(40px, 8vw, 120px);
}

.split-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

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

.process-card {
  min-height: 310px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(17, 44, 25, 0.1);
  border-radius: 24px;
  background: white;
  box-shadow: 0 18px 42px rgba(17, 44, 25, 0.06);
}

.process-card > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--green-bright);
  font-weight: 900;
}

.process-card h3 {
  margin: auto 0 12px;
  font-family: var(--font-lora), Georgia, serif;
  font-size: 26px;
  line-height: 1.15;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.app-showcase {
  width: min(1320px, calc(100% - 40px));
  min-height: 760px;
  margin: 0 auto;
  padding: 82px clamp(28px, 7vw, 110px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  align-items: center;
  gap: 70px;
  overflow: hidden;
  border-radius: 36px;
  background: var(--green);
  color: white;
}

.eyebrow-light {
  color: #b5d85f;
}

.showcase-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.7;
}

.feature-list {
  margin: 42px 0 0;
  padding: 0;
  display: grid;
  gap: 22px;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  border: 3px solid #b5d85f;
  border-radius: 50%;
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list strong {
  font-size: 17px;
}

.feature-list span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.5;
}

.showcase-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.showcase-visual::before {
  content: '';
  position: absolute;
  width: 570px;
  height: 570px;
  border-radius: 50%;
  background: rgba(181, 216, 95, 0.12);
  box-shadow: 0 0 0 70px rgba(181, 216, 95, 0.045);
}

.showcase-phone {
  position: relative;
  z-index: 1;
  width: 300px;
  height: 610px;
  padding: 11px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.52);
  border-radius: 48px;
  background: #101014;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.36);
  transform: rotate(4deg);
}

.showcase-phone img {
  width: 100%;
  height: 100%;
  border-radius: 35px;
  object-fit: cover;
  object-position: top;
}

.floating-stat {
  position: absolute;
  z-index: 2;
  min-width: 170px;
  padding: 14px 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(10, 20, 13, 0.72);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
}

.floating-stat strong,
.floating-stat span {
  display: block;
}

.floating-stat strong {
  color: #b5d85f;
  font-size: 20px;
}

.floating-stat span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.floating-stat-one {
  top: 24%;
  left: 0;
  transform: rotate(-4deg);
}

.floating-stat-two {
  right: 0;
  bottom: 24%;
  transform: rotate(2deg);
}

.couple-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(55px, 9vw, 130px);
}

.plate-scene {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  border-radius: 38px;
  background: var(--cream);
}

.plate {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 18px solid white;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 43%, #eea251 0 9%, transparent 10%),
    radial-gradient(circle at 39% 55%, #78a938 0 8%, transparent 9%),
    radial-gradient(circle at 61% 56%, #e6733d 0 8%, transparent 9%),
    #faf7eb;
  box-shadow: 0 22px 45px rgba(17, 44, 25, 0.14), inset 0 0 0 2px #e7e0d1;
}

.plate span {
  margin-top: 54%;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plate strong {
  margin-top: 4px;
  font-family: var(--font-lora), Georgia, serif;
  font-size: 22px;
}

.plate-large {
  width: 310px;
  height: 310px;
  top: 76px;
  left: 52px;
  transform: rotate(-5deg);
}

.plate-small {
  width: 235px;
  height: 235px;
  right: 38px;
  bottom: 60px;
  transform: rotate(7deg);
}

.measure-line {
  position: absolute;
  z-index: 2;
  left: 15%;
  right: 8%;
  bottom: 31%;
  height: 24px;
  border-radius: 3px;
  background: repeating-linear-gradient(90deg, transparent 0 18px, rgba(17, 44, 25, 0.7) 18px 20px), #b5d85f;
  box-shadow: 0 8px 18px rgba(17, 44, 25, 0.18);
  transform: rotate(-13deg);
}

.couple-copy > p:not(.eyebrow) {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}

.couple-note {
  margin-top: 36px;
  padding: 20px 22px;
  display: inline-flex;
  gap: 7px;
  border-left: 4px solid var(--green-bright);
  background: var(--cream);
  font-size: 16px;
}

.pricing-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(50px, 8vw, 110px);
  border-top: 1px solid rgba(17, 44, 25, 0.12);
}

.price-intro {
  position: sticky;
  top: 40px;
}

.price-intro h2 {
  font-size: clamp(40px, 4.2vw, 58px);
}

.price-intro > p:not(.eyebrow) {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.price-card {
  padding: 42px;
  border-radius: 30px;
  background: var(--cream);
}

.price-card-head {
  padding-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(17, 44, 25, 0.14);
}

.price-card-head > div span,
.price-card-head > div strong {
  display: block;
}

.price-card-head > div span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-card-head > div strong {
  margin-top: 2px;
  font-family: var(--font-lora), Georgia, serif;
  font-size: 58px;
  letter-spacing: -0.05em;
}

.price-cta {
  min-width: 240px;
}

.included-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 26px;
}

.included-grid div {
  position: relative;
  padding-left: 28px;
  color: #34493a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.included-grid div::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -2px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 11px;
}

.price-footnote {
  margin: 34px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(17, 44, 25, 0.14);
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.faq-section {
  max-width: 980px;
}

.faq-section .section-heading {
  max-width: 700px;
}

.faq-list {
  margin-top: 56px;
  border-top: 1px solid rgba(17, 44, 25, 0.14);
}

.faq-list details {
  border-bottom: 1px solid rgba(17, 44, 25, 0.14);
}

.faq-list summary {
  padding: 27px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-lora), Georgia, serif;
  font-size: 22px;
  font-weight: 700;
}

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

.faq-list summary span {
  font-family: var(--font-lato), Arial, sans-serif;
  color: var(--green-bright);
  font-size: 26px;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 760px;
  margin: -8px 0 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.final-cta-section {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto 34px;
  padding: 110px clamp(28px, 10vw, 150px);
  text-align: center;
  border-radius: 36px;
  background: var(--green);
  color: white;
}

.final-cta-section h2 {
  max-width: 980px;
  margin: 0 auto;
}

.final-steps {
  margin: 40px auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.final-steps span {
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 700;
}

.light-cta {
  margin-top: 42px;
  padding: 18px 24px;
  display: inline-flex;
  align-items: center;
  gap: 38px;
  border-radius: 10px;
  background: white;
  color: var(--green);
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease;
}

.light-cta:hover {
  transform: translateY(-3px);
}

.light-cta span {
  color: var(--green-bright);
  font-size: 20px;
}

.final-note {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 700;
}

.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0 24px;
}

.footer-inner {
  padding-bottom: 45px;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 44px;
}

.footer-logo {
  width: 160px;
  height: auto;
  display: block;
}

.footer-inner > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(17, 44, 25, 0.12);
  color: #829087;
  font-size: 12px;
}

/* Order page */
.order-page {
  padding-bottom: 110px;
  background: linear-gradient(180deg, var(--paper) 0 380px, #f2eddf 380px 100%);
}

.order-hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 55px 0 72px;
}

.back-link {
  display: inline-flex;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.back-link:hover {
  color: var(--green);
}

.order-heading {
  margin-top: 36px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 70px;
}

.order-heading h1 {
  max-width: 760px;
  font-size: clamp(44px, 5.7vw, 76px);
}

.order-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.order-perks {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.order-perks span {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.order-layout {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
  gap: 34px;
}

.order-form,
.order-success {
  min-width: 0;
  padding: 8px 44px 44px;
  border: 1px solid rgba(17, 44, 25, 0.08);
  border-radius: 28px;
  background: white;
  box-shadow: 0 20px 50px rgba(17, 44, 25, 0.08);
}

.form-section {
  margin: 0;
  padding: 38px 0;
  border: 0;
  border-bottom: 1px solid rgba(17, 44, 25, 0.1);
}

.form-section legend {
  width: 100%;
  margin-bottom: 27px;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.form-section legend > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--cream);
  color: var(--green-bright);
  font-size: 12px;
  font-weight: 900;
}

.form-section legend strong,
.form-section legend small {
  display: block;
}

.form-section legend strong {
  font-family: var(--font-lora), Georgia, serif;
  font-size: 24px;
}

.form-section legend small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.form-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.field {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field > span {
  color: #34493a;
  font-size: 12px;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d7ded8;
  border-radius: 10px;
  background: #fcfdfb;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.field input,
.field select {
  min-height: 49px;
  padding: 0 14px;
}

.field textarea {
  padding: 13px 14px;
  resize: vertical;
  line-height: 1.5;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green-bright);
  background: white;
  box-shadow: 0 0 0 3px rgba(119, 167, 11, 0.13);
}

.field small {
  color: #7b887f;
  font-size: 11px;
  line-height: 1.45;
}

.choice-panel {
  margin-top: 24px;
  padding: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 14px;
  background: var(--cream);
}

.choice-panel strong,
.choice-panel small {
  display: block;
}

.choice-panel strong {
  font-size: 13px;
}

.choice-panel small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.segmented-control {
  flex: 0 0 auto;
  padding: 4px;
  display: flex;
  gap: 4px;
  border-radius: 10px;
  background: rgba(17, 44, 25, 0.08);
}

.segmented-control label {
  cursor: pointer;
}

.segmented-control input {
  position: absolute;
  opacity: 0;
}

.segmented-control span {
  min-width: 92px;
  padding: 9px 12px;
  display: block;
  text-align: center;
  border-radius: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.segmented-control input:checked + span {
  background: white;
  color: var(--green);
  box-shadow: 0 3px 10px rgba(17, 44, 25, 0.1);
}

.segmented-control input:focus-visible + span {
  outline: 2px solid var(--green-bright);
  outline-offset: 2px;
}

.deadline-field {
  max-width: 260px;
  margin-top: 18px;
}

.partner-section {
  position: relative;
}

.partner-fields {
  position: relative;
  margin-top: 24px;
  padding: 27px;
  border: 1px solid rgba(119, 167, 11, 0.22);
  border-radius: 18px;
  background: #fafcf5;
}

.bonus-badge {
  position: absolute;
  top: -12px;
  right: 22px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--green-bright);
  color: white;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.final-form-section {
  border-bottom: 0;
}

.consent-check {
  margin-top: 22px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  line-height: 1.55;
}

.consent-check input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  flex: 0 0 auto;
  accent-color: var(--green);
}

.form-submit-row {
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 18px;
  background: var(--green);
  color: white;
}

.form-submit-row > div span,
.form-submit-row > div strong,
.form-submit-row > div small {
  display: block;
}

.form-submit-row > div span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-submit-row > div strong {
  font-family: var(--font-lora), Georgia, serif;
  font-size: 36px;
  line-height: 1.1;
}

.form-submit-row > div small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

.submit-order {
  min-width: 220px;
  min-height: 54px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border: 0;
  border-radius: 10px;
  background: white;
  color: var(--green);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.submit-order:disabled {
  cursor: wait;
  opacity: 0.65;
}

.submit-order span {
  color: var(--green-bright);
  font-size: 19px;
}

.form-error {
  margin: 0 0 18px;
  padding: 13px 15px;
  border-radius: 9px;
  background: #fff0eb;
  color: #9d3f20;
  font-size: 13px;
  font-weight: 700;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.order-summary {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 18px;
}

.summary-card,
.privacy-note {
  padding: 28px;
  border-radius: 22px;
  background: var(--green);
  color: white;
  box-shadow: 0 20px 45px rgba(17, 44, 25, 0.16);
}

.summary-label {
  margin: 0;
  color: #b5d85f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.summary-product {
  margin-top: 16px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.summary-product strong {
  font-family: var(--font-lora), Georgia, serif;
  font-size: 30px;
}

.summary-product span {
  font-family: var(--font-lora), Georgia, serif;
  font-size: 26px;
  font-weight: 700;
}

.summary-card > p:not(.summary-label):not(.summary-note) {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.5;
}

.summary-card ul {
  margin: 24px 0;
  padding: 24px 0;
  display: grid;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  list-style: none;
}

.summary-card li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.summary-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #b5d85f;
  font-weight: 900;
}

.summary-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.summary-total span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.summary-total strong {
  font-family: var(--font-lora), Georgia, serif;
  font-size: 34px;
}

.summary-note {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  line-height: 1.5;
}

.privacy-note {
  background: white;
  color: var(--green);
  box-shadow: 0 12px 30px rgba(17, 44, 25, 0.07);
}

.privacy-note strong {
  font-family: var(--font-lora), Georgia, serif;
  font-size: 17px;
}

.privacy-note p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.order-success {
  min-height: 560px;
  padding: 72px 70px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.success-mark {
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--green-bright);
  font-size: 30px;
  font-weight: 900;
}

.order-success h2 {
  max-width: 620px;
  margin: 0;
  font-family: var(--font-lora), Georgia, serif;
  font-size: clamp(36px, 4.4vw, 58px);
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.order-success > p:not(.eyebrow) {
  max-width: 600px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.success-link {
  margin-top: 32px;
}

@media (max-width: 1040px) {
  .main-nav {
    display: none;
  }

  .app-showcase {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .plate-large {
    left: 20px;
  }

  .plate-small {
    right: 18px;
  }

  .pricing-section {
    grid-template-columns: 1fr;
  }

  .price-intro {
    position: static;
    max-width: 800px;
  }

  .order-layout {
    grid-template-columns: minmax(0, 1fr) 290px;
  }

  .form-grid-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .section {
    padding: 90px 0;
  }

  .proof-strip {
    grid-template-columns: 1fr 1fr;
  }

  .proof-strip div:nth-child(2) {
    border-right: 0;
  }

  .proof-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(17, 44, 25, 0.12);
  }

  .split-heading,
  .process-grid,
  .app-showcase,
  .couple-section,
  .order-heading,
  .order-layout {
    grid-template-columns: 1fr;
  }

  .process-card {
    min-height: 250px;
  }

  .app-showcase {
    padding-top: 70px;
  }

  .showcase-copy {
    max-width: 650px;
  }

  .couple-copy {
    order: -1;
  }

  .order-summary {
    position: static;
    grid-row: 1;
  }

  .summary-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px 28px;
  }

  .summary-card > p:not(.summary-label):not(.summary-note),
  .summary-card ul,
  .privacy-note {
    display: none;
  }

  .summary-label,
  .summary-product,
  .summary-total,
  .summary-note {
    grid-column: 1 / -1;
  }

  .summary-product {
    margin-top: 2px;
  }

  .summary-total {
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
  }

  .footer-inner > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 580px) {
  .site-header {
    gap: 12px;
  }

  .header-cta {
    margin-left: 0;
  }

  .header-cta span {
    display: none;
  }

  .section,
  .proof-strip,
  .app-showcase,
  .final-cta-section,
  .site-footer,
  .order-hero,
  .order-layout {
    width: min(100% - 28px, 1180px);
  }

  .proof-strip div {
    min-height: 96px;
    padding: 18px 10px;
  }

  .proof-strip strong {
    font-size: 32px;
  }

  .proof-strip span {
    font-size: 11px;
  }

  .section-heading h2,
  .price-intro h2,
  .couple-copy h2,
  .showcase-copy h2,
  .final-cta-section h2 {
    font-size: 39px;
  }

  .process-grid {
    margin-top: 38px;
  }

  .process-card {
    min-height: 230px;
    padding: 26px;
  }

  .app-showcase {
    min-height: auto;
    padding: 60px 22px 30px;
    border-radius: 26px;
  }

  .showcase-visual {
    min-height: 560px;
    transform: scale(0.88);
    margin: -20px -30px;
  }

  .plate-scene {
    min-height: 440px;
  }

  .plate-large {
    width: 245px;
    height: 245px;
    top: 50px;
    left: 7px;
  }

  .plate-small {
    width: 185px;
    height: 185px;
    right: 7px;
    bottom: 45px;
  }

  .plate {
    border-width: 13px;
  }

  .plate span {
    font-size: 9px;
  }

  .plate strong {
    font-size: 17px;
  }

  .price-card {
    padding: 27px 20px;
  }

  .price-card-head {
    align-items: stretch;
    flex-direction: column;
  }

  .price-cta {
    width: 100%;
    min-width: 0;
  }

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

  .final-cta-section {
    padding: 74px 22px;
    border-radius: 26px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-inner > p {
    grid-column: auto;
    grid-row: auto;
  }

  .order-page {
    background: linear-gradient(180deg, var(--paper) 0 520px, #f2eddf 520px 100%);
  }

  .order-hero {
    padding: 38px 0 52px;
  }

  .order-heading {
    margin-top: 26px;
    gap: 24px;
  }

  .order-heading h1 {
    font-size: 42px;
  }

  .order-layout {
    gap: 18px;
  }

  .order-form,
  .order-success {
    padding: 4px 20px 20px;
    border-radius: 20px;
  }

  .form-section {
    padding: 30px 0;
  }

  .form-section legend strong {
    font-size: 20px;
  }

  .form-grid,
  .form-grid-three {
    grid-template-columns: 1fr;
  }

  .choice-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .segmented-control label,
  .segmented-control span {
    width: 100%;
  }

  .segmented-control {
    width: 100%;
  }

  .partner-fields {
    padding: 26px 17px 18px;
  }

  .form-submit-row {
    align-items: stretch;
    flex-direction: column;
    padding: 22px;
  }

  .submit-order {
    width: 100%;
  }

  .order-success {
    min-height: 500px;
    padding: 50px 28px;
  }
}
