:root {
  --navy: #0d2238;
  --navy-deep: #07131f;
  --red: #a92525;
  --red-dark: #851b1b;
  --cream: #f2eadb;
  --paper: #fbf7ef;
  --gold: #b39a69;
  --ink: #18202a;
  --muted: #5d6570;
  --border: rgba(13, 34, 56, 0.16);
  --shadow: 0 18px 50px rgba(5, 18, 31, 0.12);
  --radius: 18px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(179, 154, 105, 0.08), transparent 34%),
    var(--paper);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  z-index: 1000;
  padding: 10px 14px;
  background: #fff;
  color: #000;
}

.skip-link:focus {
  left: 10px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 19, 31, 0.96);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 50px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--navy), var(--red));
  border: 2px solid var(--cream);
  clip-path: polygon(50% 0, 100% 17%, 92% 74%, 50% 100%, 8% 74%, 0 17%);
}

.brand strong {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 1.12rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand small {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.76rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

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

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

.button-dark {
  background: var(--navy);
  color: #fff;
}

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

.button-outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.button-small {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 0.88rem;
}

.button-large {
  width: min(100%, 480px);
  min-height: 58px;
  font-size: 1.08rem;
}

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  display: grid;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(4, 13, 22, 0.98) 0%, rgba(9, 25, 39, 0.93) 43%, rgba(93, 27, 25, 0.78) 100%),
    radial-gradient(circle at 78% 30%, rgba(179, 154, 105, 0.28), transparent 30%),
    linear-gradient(140deg, #0a1a2a, #492425);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
  background-image:
    linear-gradient(30deg, rgba(255,255,255,.05) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.05) 87.5%),
    linear-gradient(150deg, rgba(255,255,255,.05) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.05) 87.5%);
  background-size: 80px 140px;
}

.hero-overlay {
  position: absolute;
  inset: auto -10% 0 auto;
  width: 62%;
  height: 72%;
  opacity: 0.32;
  background:
    radial-gradient(ellipse at 35% 70%, rgba(255,255,255,.12), transparent 28%),
    linear-gradient(120deg, transparent 15%, rgba(255,255,255,.08) 15.5%, transparent 16%),
    linear-gradient(30deg, transparent 28%, rgba(255,255,255,.06) 28.5%, transparent 29%);
  border: 1px solid rgba(255,255,255,.08);
  transform: rotate(-5deg);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.65fr);
  gap: 70px;
  align-items: center;
  padding-block: 90px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.eyebrow-light {
  color: #e5d7b9;
}

.hero h1,
.section-title,
.hero-card h2,
.provider-strip h2,
.connection-strip h2 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  line-height: 1.04;
  letter-spacing: 0.01em;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3.6rem, 8vw, 7.2rem);
}

.hero h1 span {
  display: block;
  color: #e05248;
}

.hero-lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.hero-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.card-kicker,
.form-kicker,
.pricing-label {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-card h2 {
  margin: 0;
  font-size: 2rem;
}

.hero-card p:not(.card-kicker) {
  color: rgba(255, 255, 255, 0.72);
}

.text-link {
  color: #fff;
  font-weight: 700;
  text-decoration-color: var(--red);
  text-underline-offset: 5px;
}

.benefits {
  position: relative;
  z-index: 4;
  margin-top: -28px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.benefit-card {
  padding: 34px;
  border-right: 1px solid rgba(13, 34, 56, 0.12);
}

.benefit-card:last-child {
  border-right: 0;
}

.benefit-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 1.6rem;
}

.benefit-card h2 {
  margin: 0 0 7px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
}

.section {
  padding-block: 92px;
}

.section-dark {
  margin-top: 70px;
  background:
    radial-gradient(circle at 14% 20%, rgba(169, 37, 37, 0.18), transparent 30%),
    var(--navy-deep);
  color: #fff;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.section-title {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.25rem, 4vw, 4rem);
}

.section-title.light {
  color: #fff;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading p:last-child {
  color: var(--muted);
}

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

.check-list li {
  position: relative;
  padding-left: 36px;
  color: rgba(255, 255, 255, 0.82);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.check-list-dark li {
  color: var(--ink);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 900px;
  margin-inline: auto;
}

.pricing-card {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--border);
  border-top: 5px solid var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pricing-card:nth-child(2) {
  border-top-color: var(--red);
}

.pricing-card h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 1.9rem;
  text-transform: uppercase;
}

.price {
  margin: 18px 0 8px;
  color: var(--red);
  font-family: "Oswald", sans-serif;
  font-size: 3.3rem;
  font-weight: 700;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
}

.pricing-card > p:not(.price):not(.pricing-label) {
  min-height: 78px;
  color: var(--muted);
}

.guide-section {
  background:
    linear-gradient(90deg, rgba(13, 34, 56, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(13, 34, 56, 0.04) 1px, transparent 1px),
    var(--cream);
  background-size: 36px 36px;
}

.guide-grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 70px;
  align-items: center;
}

.large-copy {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.12rem;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lead-form,
.training-form {
  padding: 34px;
}

.lead-form h3 {
  margin: 0 0 24px;
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
}

label {
  display: grid;
  gap: 7px;
  margin-bottom: 17px;
  font-weight: 700;
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(13, 34, 56, 0.22);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(169, 37, 37, 0.12);
}

textarea {
  resize: vertical;
}

.checkbox-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--muted);
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.form-note,
.form-status {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
}

.form-status.success {
  color: #176a3a;
  font-weight: 700;
}

.form-status.error {
  color: #9f1d1d;
  font-weight: 700;
}

.training-section {
  background: #fff;
}

.training-form {
  max-width: 980px;
  margin-inline: auto;
}

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

.full-width {
  grid-column: 1 / -1;
}

.provider-strip,
.connection-strip {
  padding-block: 52px;
  background: var(--navy);
  color: #fff;
}

.provider-inner {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 70px;
  align-items: center;
}

.provider-strip h2,
.connection-strip h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.provider-strip p,
.connection-strip p {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  padding-block: 48px 24px;
  background: #050c13;
  color: #fff;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.footer-grid strong {
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.footer-grid p,
.footer-bottom p {
  color: rgba(255, 255, 255, 0.58);
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: start;
}

.footer-grid nav a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-grid nav a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
}

@media (max-width: 900px) {
  .header-actions .button-outline {
    display: none;
  }

  .hero-grid,
  .guide-grid,
  .split-grid,
  .provider-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 32px;
  }

  .hero-card {
    max-width: 620px;
  }

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

  .benefit-card {
    border-right: 0;
    border-bottom: 1px solid rgba(13, 34, 56, 0.12);
  }

  .benefit-card:last-child {
    border-bottom: 0;
  }

  .footer-grid,
  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    position: static;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    max-width: 190px;
    font-size: 0.94rem;
  }

  .header-actions .button {
    padding: 9px 12px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-block: 70px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .hero-buttons {
    display: grid;
  }

  .hero-buttons .button {
    width: 100%;
  }

  .hero-trust {
    display: grid;
  }

  .benefits {
    margin-top: 0;
  }

  .section {
    padding-block: 68px;
  }

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

  .full-width {
    grid-column: auto;
  }

  .pricing-card > p:not(.price):not(.pricing-label) {
    min-height: auto;
  }

  .lead-form,
  .training-form,
  .pricing-card {
    padding: 24px;
  }
}


.instructor-section {
  background:
    radial-gradient(circle at 90% 8%, rgba(169, 37, 37, 0.08), transparent 30%),
    var(--paper);
}

.instructor-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 42px;
}

.instructor-summary {
  color: var(--muted);
}

.instructor-summary .button {
  margin-top: 12px;
}

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

.credential-card {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--border);
  border-top: 4px solid var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.credential-card:nth-child(even) {
  border-top-color: var(--red);
}

.credential-kicker {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.credential-card h3 {
  margin: 0 0 16px;
  font-family: "Oswald", sans-serif;
  font-size: 1.4rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.credential-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-section {
  background: #fff;
}

.faq-grid {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin-inline: auto;
}

.faq-grid details {
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--paper);
}

.faq-grid summary {
  cursor: pointer;
  color: var(--navy);
  font-family: "Oswald", sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  text-transform: uppercase;
}

.faq-grid details p {
  margin: 14px 0 0;
  color: var(--muted);
}

.connection-strip {
  padding-block: 52px;
  background: var(--navy);
  color: #fff;
}

@media (max-width: 1050px) {
  .credential-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .instructor-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 620px) {
  .credential-grid {
    grid-template-columns: 1fr;
  }
}


/* Guide delivery and thank-you page */
.guide-subtitle {
  margin: -6px 0 18px;
  color: var(--red);
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
}

.hidden-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.thank-you-page {
  min-height: 72vh;
  background:
    radial-gradient(circle at 85% 12%, rgba(169, 37, 37, 0.08), transparent 30%),
    var(--cream);
}

.thank-you-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 34px;
  align-items: center;
  max-width: 1080px;
}

.thank-you-card {
  padding: clamp(30px, 5vw, 58px);
}

.thank-you-card .section-title {
  max-width: 760px;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.thank-you-next-step {
  padding: 34px;
  border-left: 5px solid var(--red);
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
}

.thank-you-next-step h2 {
  margin: 0 0 14px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.thank-you-next-step p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.thank-you-next-step .text-link {
  color: #fff;
}

@media (max-width: 900px) {
  .thank-you-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .thank-you-actions {
    display: grid;
  }

  .thank-you-actions .button {
    width: 100%;
  }
}


/* MailerLite guide form — styled with the existing site design */
#mlb2-43668639.ml-form-embedContainer {
  width: 100%;
}

#mlb2-43668639 .row-form,
#mlb2-43668639 .row-success {
  width: 100%;
}

#mlb2-43668639 .ml-form-embedSubmit {
  width: 100%;
}

#mlb2-43668639 .checkbox-row a {
  color: var(--red);
}

#mlb2-43668639 .success-copy {
  margin: 14px 0 20px;
  color: var(--muted);
}

.text-link-dark {
  color: var(--navy);
  text-decoration-color: var(--red);
}

.ml-form-embedSubmitLoad {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: middle;
}

.ml-form-embedSubmitLoad::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 1px;
  border: 3px solid #ffffff;
  border-color: #ffffff #ffffff #ffffff transparent;
  border-radius: 50%;
  animation: ml-form-loader 1.1s linear infinite;
}

@keyframes ml-form-loader {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
