:root {
  --green: #4f8f22;
  --green-dark: #27620f;
  --lime: #c7e86d;
  --navy: #061a31;
  --blue: #163a58;
  --ink: #172131;
  --muted: #657286;
  --line: #dbe4ee;
  --soft: #f4f8f0;
  --mist: #eef5f7;
  --white: #ffffff;
  --gold: #b88b2d;
  --danger: #a62b23;
  --shadow: 0 24px 70px rgba(6, 26, 49, 0.16);
  --small-shadow: 0 12px 34px rgba(6, 26, 49, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.91);
  border-bottom: 1px solid rgba(219, 228, 238, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

.nav-links a,
.nav-cta {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--green-dark);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(6, 26, 49, 0.16);
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.82fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(44px, 7vw, 88px) clamp(18px, 5vw, 72px) clamp(42px, 6vw, 72px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(6, 26, 49, 0.97) 0%, rgba(22, 58, 88, 0.93) 48%, rgba(54, 105, 31, 0.78) 100%),
    radial-gradient(circle at 84% 12%, rgba(199, 232, 109, 0.28), transparent 36%);
  color: var(--white);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 14% -9% auto auto;
  width: min(46vw, 620px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-copy .eyebrow,
.cta-band .eyebrow {
  color: var(--lime);
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.1rem, 7vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.lead {
  max-width: 700px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.68;
}

.content-section .lead {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
.nav-cta:focus-visible,
input:focus-visible,
.terms-box:focus-visible {
  outline: 3px solid rgba(184, 139, 45, 0.46);
  outline-offset: 3px;
}

.button.primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 16px 34px rgba(43, 107, 18, 0.32);
}

.button.primary:hover {
  background: var(--green-dark);
}

.button.secondary {
  color: var(--navy);
  background: var(--white);
  border-color: rgba(6, 26, 49, 0.12);
}

.button.ghost {
  color: var(--navy);
  background: var(--mist);
  border-color: var(--line);
}

.button.full {
  width: 100%;
}

.secure-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
  text-align: center;
}

.hero-visual {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 18px;
  min-width: 0;
}

.hero-visual img {
  width: min(100%, 560px);
  max-height: min(70vh, 600px);
  padding: 0;
  object-fit: contain;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.result-panel {
  width: min(92%, 390px);
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.result-panel span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.result-panel strong {
  display: block;
  line-height: 1.35;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  min-height: 112px;
  padding: 24px clamp(18px, 3vw, 34px);
  background: var(--white);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  color: var(--navy);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
}

.proof-strip span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.system-section {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 72px);
  background: linear-gradient(180deg, var(--soft), #ffffff);
}

.system-flow {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.system-step {
  flex: 1 1 0;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--small-shadow);
}

.system-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
}

.system-step h3 {
  margin: 8px 0 0;
  color: var(--navy);
  font-size: 1.2rem;
}

.system-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.system-arrow {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-weight: 900;
}

.system-arrow::before {
  content: "\2192";
  font-size: 1.6rem;
}

.split-section,
.start-section,
.content-section {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 102px;
}

.section-copy,
.section-heading,
.start-copy {
  max-width: 760px;
}

.section-copy h2,
.section-heading h2,
.start-copy h2,
.cta-band h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-copy p:not(.eyebrow),
.start-copy p,
.cta-band p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.74;
}

.flow-stack {
  display: grid;
  gap: 30px;
}

.flow-head {
  margin-bottom: 14px;
}

.flow-head h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.18rem;
}

.flow-tag {
  margin: 6px 0 0;
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 800;
  font-style: italic;
}

.timeline {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--small-shadow);
}

.timeline span,
.mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
}

.timeline h3,
.included-grid h3,
.terms-box h3 {
  margin: 0;
  color: var(--navy);
}

.timeline p,
.included-grid p,
.site-footer p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.band {
  background:
    linear-gradient(180deg, var(--soft), #ffffff);
}

.section-heading {
  margin-bottom: 34px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.included-grid article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 246px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 32px rgba(6, 26, 49, 0.06);
}

.mini-icon {
  width: 38px;
  height: 38px;
  background: var(--green);
}

.mini-icon::before {
  content: "";
  width: 13px;
  height: 7px;
  border-left: 2.5px solid var(--white);
  border-bottom: 2.5px solid var(--white);
  transform: translateY(-2px) rotate(-45deg);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.about-portrait {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(6, 26, 49, 0.06), rgba(79, 143, 34, 0.1));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  padding: clamp(24px, 5vw, 48px);
}

.about-credential {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: grid;
  gap: 2px;
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(6, 26, 49, 0.9);
  box-shadow: var(--small-shadow);
}

.about-credential strong {
  font-size: 1rem;
}

.about-credential span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.78);
}

.about-copy {
  max-width: 640px;
}

.about-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.02;
}

.about-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.74;
}

.about-points {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.about-points li {
  display: grid;
  gap: 4px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 32px rgba(6, 26, 49, 0.06);
}

.about-points strong {
  color: var(--navy);
}

.about-points span {
  color: var(--muted);
  font-size: 0.96rem;
}

.concierge-section {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.concierge-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: start;
}

.concierge-price-card {
  display: grid;
  gap: 8px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(6, 26, 49, 0.96), rgba(22, 58, 88, 0.9));
  color: var(--white);
  box-shadow: var(--shadow);
}

.concierge-price-card span {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
}

.concierge-price-card strong {
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  line-height: 1;
}

.concierge-price-card small {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.94rem;
}

.concierge-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.concierge-services li {
  position: relative;
  padding: 14px 16px 14px 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-weight: 700;
  box-shadow: 0 10px 32px rgba(6, 26, 49, 0.06);
}

.concierge-services li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 14px;
  height: 8px;
  border-left: 2.5px solid var(--green);
  border-bottom: 2.5px solid var(--green);
  transform: translateY(-70%) rotate(-45deg);
}

.concierge-schedule {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.concierge-schedule a {
  color: var(--green-dark);
  font-weight: 800;
}

.contact-section {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.contact-card {
  display: grid;
  gap: 10px;
  max-width: 440px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--small-shadow);
}

.contact-name {
  color: var(--navy);
  font-size: 1.2rem;
}

.contact-line {
  color: var(--green-dark);
  font-weight: 800;
  font-size: 1.06rem;
  text-decoration: none;
}

.contact-line:hover,
.contact-line:focus-visible {
  text-decoration: underline;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  padding: clamp(48px, 7vw, 82px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 26, 49, 0.96), rgba(22, 58, 88, 0.88)),
    linear-gradient(90deg, var(--navy), var(--green-dark));
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
}

.start-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 40px);
  background: var(--white);
}

.checkout-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.checkout-options .plan-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 0;
}

.checkout-options .plan-card .button {
  margin-top: auto;
}

.summary-card {
  display: grid;
  gap: 8px;
  max-width: 360px;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.summary-card span,
.summary-card small,
.form-topper span,
.field-note,
.form-error {
  font-size: 0.9rem;
}

.summary-card span,
.summary-card small,
.form-topper span,
.field-note {
  color: var(--muted);
}

.summary-card strong {
  color: var(--green-dark);
  font-size: 2.2rem;
}

.plan-grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.plan-card {
  display: grid;
  gap: 8px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.plan-card.featured {
  border-color: rgba(79, 143, 34, 0.5);
  background: var(--white);
  box-shadow: var(--small-shadow);
}

.plan-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.plan-label span {
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-price {
  color: var(--green-dark);
  font-size: 1.9rem;
  font-weight: 900;
}

.plan-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.12rem;
}

.plan-flow {
  margin: 0;
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 800;
  font-style: italic;
}

.plan-card p:not(.plan-flow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.checkout-form,
.jotform-card {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-topper,
.jotform-topper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.form-topper strong,
.form-topper span,
.jotform-topper strong,
.jotform-topper span {
  display: block;
}

.form-topper strong,
.jotform-topper strong {
  margin-top: 4px;
  color: var(--navy);
  font-size: 1.12rem;
}

.form-topper img,
.jotform-topper img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.jotform-steps {
  display: grid;
  gap: 12px;
  margin: 8px 0;
}

.jotform-steps div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.jotform-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
}

.jotform-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
}

label span {
  font-size: 0.92rem;
}

input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid #cbd7e3;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

input::placeholder {
  color: #9aa8b5;
}

.coupon-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: end;
}

.field-note,
.form-error {
  min-height: 20px;
  margin: -6px 0 0;
}

.form-error {
  color: var(--danger);
  font-weight: 800;
}

.terms-box {
  max-height: 154px;
  overflow: auto;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.terms-box h3 {
  font-size: 1rem;
}

.terms-box p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.checkbox-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
}

.checkbox-row input {
  min-height: auto;
  margin-top: 3px;
  accent-color: var(--green);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--navy);
}

.site-footer strong {
  font-size: 1.1rem;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1040px) {
  .hero-section,
  .split-section,
  .start-section,
  .about-section,
  .concierge-layout,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .about-portrait {
    max-width: 420px;
  }

  .concierge-services {
    grid-template-columns: 1fr;
  }

  .system-flow {
    flex-direction: column;
  }

  .system-arrow::before {
    content: "\2193";
  }

  .hero-section {
    min-height: auto;
  }

  .hero-visual {
    justify-items: start;
  }

  .hero-visual img {
    width: min(100%, 420px);
    max-height: none;
  }

  .sticky-copy {
    position: static;
  }

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

  .checkout-form,
  .jotform-card {
    max-width: 680px;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .brand span {
    display: none;
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 2px;
    white-space: nowrap;
  }

  .nav-cta {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 0.9rem;
  }

  .hero-section {
    padding-top: 38px;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4.2rem);
  }

  .proof-strip,
  .included-grid,
  .field-grid,
  .checkout-options {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    min-height: auto;
    padding-block: 20px;
  }

  .timeline li {
    grid-template-columns: 52px 1fr;
    padding: 20px;
  }

  .coupon-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 520px) {
  .site-header,
  .hero-section,
  .split-section,
  .content-section,
  .cta-band,
  .start-section,
  .site-footer {
    padding-inline: 16px;
  }

  .hero-actions .button,
  .site-footer .button {
    width: 100%;
  }

  .hero-visual img {
    width: min(100%, 360px);
    padding: 10px;
  }

  .timeline li {
    grid-template-columns: 1fr;
  }
}
