:root {
  --font-heading: "Playfair Display", serif;
  --font-body: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --color-navy: #06122c;
  --color-navy-muted: #1c2d55;
  --color-blue: #1f3fb5;
  --color-blue-soft: #2e55e0;
  --color-gold: #f7b733;
  --color-muted: #6b7794;
  --color-border: rgba(15, 31, 64, 0.08);
  --shadow-lg: 0 32px 80px rgba(6, 17, 44, 0.25);
  --shadow-md: 0 18px 40px rgba(6, 17, 44, 0.18);
  --shadow-sm: 0 10px 25px rgba(6, 17, 44, 0.12);
  --max-width: 1120px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-navy);
  background: linear-gradient(180deg, #f9fbff 0%, #eef2ff 45%, #fdf9f6 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

.page {
  overflow-x: hidden;
}

.container {
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding-inline: clamp(1.2rem, 4vw, 2.4rem);
}

.section {
  padding-block: clamp(3.25rem, 6vw, 6rem);
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-blue);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.06rem;
  color: var(--color-muted);
  margin: 0 0 1rem;
}

.hero {
  position: relative;
  padding-block: clamp(4rem, 8vw, 7rem);
  color: #fff;
  background:
    radial-gradient(140% 120% at -10% -10%, rgba(246, 189, 96, 0.28) 0%, rgba(246, 189, 96, 0) 45%),
    radial-gradient(110% 70% at 100% 0%, rgba(81, 126, 249, 0.45) 0%, rgba(81, 126, 249, 0) 55%),
    linear-gradient(135deg, #031031 0%, #010711 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='320' height='320' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='a' width='40' height='40' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255,255,255,0.08)'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='320' height='320' fill='url(%23a)'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  opacity: 0.5;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  justify-items: center;
}

.hero__copy {
  max-width: 640px;
  text-align: center;
}

.hero__stat {
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 0.8rem;
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5vw, 3.7rem);
  line-height: 1.15;
  margin: 0 0 1.6rem;
}

.hero__headline span {
  display: block;
}

.hero__subtitle {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 2rem;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.95rem 2.8rem;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  background: linear-gradient(115deg, #fca311 0%, #ff7833 100%);
  color: #0b0f1d;
  box-shadow: 0 25px 40px rgba(255, 163, 51, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 56px rgba(255, 163, 51, 0.35);
}

.intro {
  background: #ffffff;
}

.intro__layout {
  display: grid;
  gap: clamp(2.5rem, 6vw, 3.8rem);
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
}

.intro__content h2 {
  margin: 0 0 1.8rem;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.7rem);
}

.intro__portrait-card {
  background: #ffffff;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  display: grid;
  gap: 1.3rem;
  justify-items: center;
}

.intro__portrait {
  width: 100%;
  max-width: 320px;
  border-radius: 0;
  object-fit: cover;
  box-shadow: none;
  background: #ffffff;
}

.intro__contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: center;
  font-weight: 600;
  color: var(--color-navy);
}

.intro__contact a {
  color: var(--color-blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.testimonials-section {
  background: linear-gradient(180deg, #f4f7ff 0%, #ffffff 100%);
}

.testimonials-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.6rem);
  text-align: center;
}

.testimonials-subtitle {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.4rem;
}

.testimonials-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.quote-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f2f7ff 100%);
  border-radius: 1.5rem;
  padding: 2.1rem;
  box-shadow: var(--shadow-sm);
}

.quote-card::before {
  content: "“";
  position: absolute;
  top: -18px;
  left: 26px;
  font-size: 5rem;
  font-family: var(--font-heading);
  color: rgba(31, 63, 181, 0.12);
}

.quote-card blockquote {
  margin: 0;
  font-size: 1.07rem;
  color: var(--color-navy-muted);
  line-height: 1.68;
  font-weight: 500;
}

.quote-card cite {
  display: block;
  margin-top: 1.5rem;
  font-style: normal;
  font-weight: 600;
  color: var(--color-blue);
  letter-spacing: 0.04em;
}

.hope {
  background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
}

.hope h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 1.2rem;
}

.checklist {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.checklist li {
  position: relative;
  padding: 1.1rem 1.5rem 1.1rem 2.8rem;
  border-radius: 1.3rem;
  background: #ffffff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  color: var(--color-navy-muted);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #21d989 0%, #12b76a 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  font-weight: 700;
}

.side-hustle {
  background: #ffffff;
}

.side-hustle__grid {
  display: grid;
  gap: clamp(2.25rem, 6vw, 3.5rem);
  align-items: center;
}

.side-hustle h2 {
  margin: 0 0 1.3rem;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.7rem);
}

.side-hustle__photo-card {
  background: #ffffff;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  display: grid;
  justify-items: center;
}

.side-hustle__photo {
  width: 100%;
  max-width: 400px;
  border-radius: 0;
  object-fit: cover;
  box-shadow: none;
  background: #ffffff;
}

.arrow-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.9rem;
  color: var(--color-navy-muted);
  font-weight: 600;
}

.arrow-list li {
  position: relative;
  padding-left: 2rem;
}

.arrow-list li::before {
  content: "➤";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.1rem;
  color: var(--color-blue);
}

.video-card {
  position: relative;
  min-height: clamp(220px, 30vw, 340px);
  border-radius: 1.75rem;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(6, 17, 44, 0.6) 0%, rgba(31, 63, 181, 0.4) 100%),
    url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=700&q=70") center/cover;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
}

.video-card__button {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 2.25rem;
  border-radius: 999px;
  border: none;
  background: #ffffff;
  color: var(--color-navy);
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 22px 45px rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: transform 0.25s ease;
}

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

.video-card__button svg {
  width: 1.8rem;
  height: 1.8rem;
  fill: var(--color-blue);
}

.guide-cta {
  margin-top: clamp(2rem, 3vw, 3rem);
  display: flex;
  justify-content: center;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.95rem 2.4rem;
  border-radius: 999px;
  background: linear-gradient(115deg, #1f3fb5 0%, #6280ff 100%);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 24px 38px rgba(31, 63, 181, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 48px rgba(31, 63, 181, 0.35);
}

.milestones h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin: 0 0 1.5rem;
}

.milestones__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.milestones__item {
  background: linear-gradient(135deg, #f5f1ff 0%, #ffffff 100%);
  border-radius: 1.4rem;
  padding: 1.1rem 1.5rem;
  font-weight: 600;
  color: var(--color-navy-muted);
  box-shadow: var(--shadow-sm);
}

.faq {
  background: linear-gradient(180deg, #f2f6ff 0%, #ffffff 100%);
}

.faq h2 {
  margin: 0 0 2rem;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.6rem);
  text-align: center;
}

.faq__accordion {
  display: grid;
  gap: 1rem;
  max-width: 820px;
  margin: 0 auto;
}

.faq__accordion details {
  background: #ffffff;
  border-radius: 1.3rem;
  border: 1px solid var(--color-border);
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-sm);
}

.faq__accordion summary {
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--color-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq__accordion summary::after {
  content: "＋";
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-blue);
  transition: transform 0.25s ease;
}

.faq__accordion details[open] summary::after {
  transform: rotate(45deg);
}

.faq__accordion p {
  margin: 1rem 0 0;
  color: var(--color-muted);
  line-height: 1.65;
}

.lead-form-section {
  background: linear-gradient(180deg, rgba(6, 18, 44, 0.92) 0%, rgba(6, 18, 44, 0.86) 100%);
}

.lead-form {
  background: #ffffff;
  border-radius: clamp(1.6rem, 4vw, 2.4rem);
  padding: clamp(2.6rem, 5vw, 3.4rem);
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 2rem;
}

.lead-form header h2 {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--color-navy);
}

.lead-form__alert {
  padding: 0.9rem 1.2rem;
  border-radius: 1rem;
  font-weight: 600;
  font-size: 0.96rem;
}

.lead-form__alert--success {
  background: rgba(30, 170, 110, 0.12);
  border: 1px solid rgba(30, 170, 110, 0.4);
  color: #0f7a4e;
}

.lead-form__alert--error {
  background: rgba(236, 76, 91, 0.12);
  border: 1px solid rgba(236, 76, 91, 0.32);
  color: #b3122a;
}

.lead-form__form {
  display: grid;
  gap: 1.6rem;
}

.lead-form__grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.lead-form label {
  display: grid;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--color-navy-muted);
}

.lead-form input,
.lead-form textarea {
  border: 1px solid rgba(6, 17, 44, 0.12);
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  color: var(--color-navy);
  background: #f9fbff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: rgba(31, 63, 181, 0.65);
  box-shadow: 0 0 0 3px rgba(31, 63, 181, 0.15);
  background: #ffffff;
}

.lead-form__checkbox {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-weight: 500;
  color: var(--color-muted);
  line-height: 1.5;
}

.lead-form__checkbox input {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.3rem;
  accent-color: var(--color-blue);
}

.lead-form__checkbox a {
  color: var(--color-blue);
  text-decoration: underline;
}

.lead-form__error-text {
  color: #c11f36;
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 0.3rem;
}

.lead-form button {
  justify-self: start;
  padding: 0.95rem 2.8rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(120deg, #ffbf66 0%, #ff9966 100%);
  color: #1b1202;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 24px 36px rgba(255, 153, 102, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lead-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 45px rgba(255, 153, 102, 0.42);
}

.lead-form__note {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.footer {
  background: #020815;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  padding: 2.2rem 1.5rem;
  font-size: 0.96rem;
}

.footer strong {
  color: #ffffff;
}

@media (min-width: 920px) {
  .hero__inner {
    justify-items: start;
  }

  .hero__copy {
    text-align: left;
    max-width: 660px;
  }

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

/* Lead Form Styles */
.lead-form {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 4rem 0;
}

.lead-form header {
  text-align: center;
  margin-bottom: 3rem;
}

.lead-form header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
  color: var(--color-navy);
}

.lead-form header .lead {
  font-size: 1rem;
  color: var(--color-navy-muted);
  max-width: 600px;
  margin: 0 auto;
}

.lead-form__form {
  background: #ffffff;
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
  text-align: left;
}

.lead-form__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.lead-form__grid label {
  display: block;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.lead-form__grid input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.lead-form__grid input:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.lead-form__checkbox {
  display: flex;
  align-items: flex-start;
  font-size: 0.875rem;
  line-height: 1.4;
  cursor: pointer;
  margin-bottom: 1.5rem;
}

.lead-form__checkbox input[type="checkbox"] {
  margin-right: 0.5rem;
  margin-top: 0.125rem;
}

.lead-form__form button {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
  width: 100%;
  margin-bottom: 1rem;
}

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

.lead-form__alert {
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.lead-form__alert--success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.lead-form__alert--error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.lead-form__error-text {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
}

.form-section {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.form-section h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
  color: var(--color-navy);
}

.form-section h4 {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  margin-bottom: 0.5rem;
  color: var(--color-navy-muted);
}

.form-subtitle {
  font-size: 1rem;
  color: var(--color-navy-muted);
  margin-bottom: 2rem;
}

.lead-capture-form {
  background: #ffffff;
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
  text-align: left;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.radio-group label {
  display: flex;
  align-items: center;
  font-weight: 400;
  cursor: pointer;
}

.radio-group input[type="radio"] {
  margin-right: 0.5rem;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  font-size: 0.875rem;
  line-height: 1.4;
  cursor: pointer;
}

.consent-label input[type="checkbox"] {
  margin-right: 0.5rem;
  margin-top: 0.125rem;
}

.form-footer {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-navy-muted);
  margin-top: 1rem;
}

@media (max-width: 720px) {
  .hero__cta,
  .cta-button,
  .lead-form button {
    width: 100%;
    justify-content: center;
  }

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

  .intro__portrait-card {
    padding: 1.6rem;
  }

  .testimonials-subtitle {
    margin-bottom: 1.8rem;
  }

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

  .lead-capture-form {
    padding: 2.5rem 2rem;
  }

  .lead-form__form {
    padding: 2.5rem 2rem;
  }

  .lead-form__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .radio-group {
    flex-direction: column;
  }
}

