:root {
  --ink: #202124;
  --muted: #5d6673;
  --line: #d9dee6;
  --paper: #ffffff;
  --soft: #f4f7f2;
  --green: #355e3b;
  --green-dark: #24422a;
  --gold: #d6a941;
  --header: #312952;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

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

.brand-logo {
  width: 56px;
  height: 42px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.top-nav a {
  padding: 9px 12px;
  text-decoration: none;
}

.top-nav a:hover {
  text-decoration: underline;
}

.top-nav .nav-button {
  color: #fff;
  background: var(--green);
  border-radius: 8px;
}

.top-nav .nav-button:hover {
  background: var(--green-dark);
  text-decoration: none;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 68vh;
  padding: clamp(64px, 10vw, 116px) clamp(20px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(24, 31, 35, 0.86), rgba(24, 31, 35, 0.58)),
    url("https://marsing.zoholearn.com/_lms/api/portal/marsing/banner?timestamp=1759440353371") center / cover;
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
}

.partner-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.partner-logos img {
  width: auto;
  max-width: min(260px, 100%);
  height: 74px;
  padding: 8px 10px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
}

.partner-logos img:first-child {
  width: 150px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--green);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 5vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
}

.pricing-note {
  display: inline-block;
  margin-bottom: 24px;
  padding: 10px 13px;
  color: #1f2a1f;
  background: rgba(255, 255, 255, 0.94);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  font-weight: 700;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--green);
}

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

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.section {
  padding: clamp(48px, 8vw, 86px) clamp(20px, 5vw, 72px);
}

.section.muted {
  background: var(--soft);
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
}

.summary {
  color: var(--muted);
  font-size: 1.05rem;
}

.price-detail {
  color: var(--green-dark);
  font-weight: 700;
}

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

.feature {
  min-height: 156px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature p {
  margin-bottom: 0;
  color: var(--muted);
}

.topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.topic-list span {
  padding: 9px 12px;
  color: var(--green-dark);
  background: var(--soft);
  border: 1px solid #d6e2d3;
  border-radius: 8px;
  font-weight: 700;
}

.outcomes {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 13px;
  height: 13px;
  background: var(--gold);
  border-radius: 50%;
}

.callout-section {
  background: var(--header);
}

.callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #fff;
}

.callout h2 {
  margin-bottom: 10px;
}

.callout p:last-child {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.form-page {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(42px, 8vw, 82px) 0;
}

.form-intro {
  max-width: 720px;
  margin-bottom: 28px;
}

.form-intro h1 {
  color: var(--header);
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.form-intro p {
  color: var(--muted);
  font-size: 1.06rem;
}

.form-shell {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.field-row {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
}

label {
  color: var(--ink);
  font-weight: 700;
}

.required-mark {
  color: #b42318;
}

input,
textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid #c8ced8;
  border-radius: 8px;
  font: inherit;
}

input:focus,
textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(53, 94, 59, 0.18);
}

textarea {
  resize: vertical;
}

.form-button {
  width: 100%;
  margin-top: 6px;
  font: inherit;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.required-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.form-message {
  display: none;
  margin-top: 16px;
  padding: 13px 14px;
  border-radius: 8px;
  font-weight: 700;
}

.success-message {
  color: #24422a;
  background: #e6f2e7;
  border: 1px solid #bad7bf;
}

.error-message {
  color: #7a271a;
  background: #fff1ed;
  border: 1px solid #f5c1b3;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: #fff;
  background: var(--header);
}

.site-footer a {
  color: #fff;
}

.footer-powered {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-powered img {
  width: min(260px, 42vw);
  height: 42px;
  padding: 5px 8px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
}

@media (max-width: 760px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .top-nav {
    width: 100%;
    flex-wrap: wrap;
  }

  .top-nav a {
    padding-left: 0;
  }

  .top-nav .nav-button {
    padding-left: 12px;
  }

  .hero {
    min-height: 62vh;
  }

  .partner-logos img {
    height: 58px;
  }

  .two-column,
  .feature-grid,
  .outcomes {
    grid-template-columns: 1fr;
  }

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

  .footer-powered {
    align-items: flex-start;
    flex-direction: column;
  }
}
