/* ─── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ─── Base ───────────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  line-height: initial;
  transition: 0.9s ease-in-out;
}

body {
  font-size: 16px;
  font-family: scandia-web, system-ui, sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #1E1F21;
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
}

/* ─── Font Utility Classes ───────────────────────────────────────── */
.stozl-medium {
  font-family: stolzl, sans-serif;
  font-style: normal;
  font-weight: 500;
}

.stozl-bold {
  font-family: stolzl, sans-serif;
  font-style: normal;
  font-weight: 700;
}

.stozl-regular {
  font-family: stolzl, sans-serif;
  font-style: normal;
  font-weight: 400;
}

.scandia-medium {
  font-family: scandia-web, sans-serif;
  font-style: normal;
  font-weight: 500 !important;
}

.scandia-regular {
  font-family: scandia-web, sans-serif;
  font-style: normal;
  font-weight: 400;
}

/* ─── Headings ───────────────────────────────────────────────────── */
h1,
h2,
.c-title {
  font-family: stolzl, sans-serif;
  font-style: normal;
  font-weight: 700;
}

h3,
h4,
h5,
h6 {
  font-family: stolzl, sans-serif;
  font-style: normal;
  font-weight: 500;
}

/* ─── Font Sizes (design system only) ───────────────────────────── */
.c-title {
  font-size: 64px;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .c-title { font-size: 36px; }
  h1       { font-size: 28px; }
  h2       { font-size: 24px; }
  h3       { font-size: 22px; }
  h4       { font-size: 20px; }
  h5       { font-size: 20px; }
  h6       { font-size: 18px; }
  .big-paragraph { font-size: 18px; }
}

/* ─── Text Utilities ─────────────────────────────────────────────── */
.text-color {
  background: linear-gradient(88deg, rgba(0, 170, 175, 1), rgba(42, 84, 199, 1));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.big-subheader {
  font-size: 14px;
  font-family: scandia-web, sans-serif;
  font-style: normal;
  font-weight: 500;
}

.small-paragraph {
  font-size: 13px;
  font-family: scandia-web, sans-serif;
  font-style: normal;
  font-weight: 400;
}

.big-paragraph {
  font-size: 20px;
  font-family: scandia-web, sans-serif;
  font-style: normal;
  font-weight: 500;
}

.big-paragraph-2 {
  font-size: 20px;
}

.text-1E1F21-0 {
  color: rgba(30, 31, 33, .5);
}

.text-FFFFFF-0 {
  color: rgba(255, 255, 255, .5);
}

/* ─── Buttons ────────────────────────────────────────────────────── */
.c-button-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: 16px 28px;
  border-radius: 26px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  line-height: normal;
  font-family: scandia-web, sans-serif;
  font-style: normal;
  font-weight: 500;
  background: rgba(42, 84, 199, 1);
  color: white;
  text-decoration: none;
  border: none;
  cursor: pointer;
  overflow: hidden;
  z-index: 0;
  transition: background 0.5s ease, transform .22s ease, box-shadow .22s ease;
  white-space: nowrap;
}

.c-button-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(76deg, rgba(42, 84, 199, 1), rgba(0, 170, 175, 1));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.c-button-primary:hover::before {
  opacity: 1;
}

.c-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(42, 84, 199, .3);
}

.c-button-primary:active {
  transform: translateY(0);
}

.c-button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 26px;
  line-height: normal;
  font-family: scandia-web, sans-serif;
  font-style: normal;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}

.c-link-button {
  font-family: scandia-web, sans-serif;
  font-style: normal;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}

.c-link-button-disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.c-res-button-primary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: 16px 20px;
  border-radius: 26px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  width: 100%;
  text-align: center;
  line-height: normal;
  font-family: scandia-web, sans-serif;
  font-style: normal;
  font-weight: 500;
  background: rgba(42, 84, 199, 1);
  color: white;
  border: none;
  cursor: pointer;
  overflow: hidden;
  z-index: 0;
  transition: background 0.5s ease;
}

.c-res-button-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(76deg, rgba(42, 84, 199, 1), rgba(0, 170, 175, 1));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.c-res-button-primary:hover::before {
  opacity: 1;
}

/* ─── Inputs ─────────────────────────────────────────────────────── */
.footer-input {
  width: 100%;
  background: #262626;
  box-shadow: 0 1px 0 #A1A1A1;
  padding: 16px 20px;
  color: #FFFFFF;
  text-transform: capitalize;
  border-radius: 8px;
  border: none;
  font-family: scandia-web, sans-serif;
}

.footer-input::placeholder {
  color: rgba(255, 255, 255, .5);
  text-transform: capitalize;
}

.footer-input:focus-visible {
  outline: none;
}

.register-input {
  width: 100%;
  padding: 16px 20px;
  background: rgba(231, 232, 233, 1);
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(161, 161, 161, 1);
  border: 1.5px solid transparent;
  font-family: scandia-web, sans-serif;
  color: #1E1F21;
  transition: border-color .2s, box-shadow .2s;
}

.register-input::placeholder {
  color: rgba(38, 38, 38, .5);
  text-transform: capitalize;
}

.register-input:focus {
  outline: none;
  border-color: rgba(42, 84, 199, 1);
  box-shadow: 0 0 0 4px rgba(42, 84, 199, .1);
}

input::placeholder,
textarea::placeholder {
  color: rgba(38, 38, 38, .5);
}

/* ─── Vue Tel Input ──────────────────────────────────────────────── */
.vti__input {
  border-radius: 4px 4px 16px 4px !important;
  padding-left: 4px !important;
  width: 100%;
  background: rgba(231, 232, 233, 1) !important;
  outline: none !important;
  border: none !important;
  padding: 16px;
}

.vti__dropdown {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  color: #1e1f21 !important;
  background: #FFFFFF !important;
  border-radius: 6px;
  padding: 12px 8px !important;
  outline: none;
  margin-right: 10px;
}

.vue-tel-input {
  width: 100%;
  background: rgba(231, 232, 233, 1) !important;
  padding: 4px;
  color: #262626;
  box-shadow: 0 1px 0 rgba(161, 161, 161, 1) !important;
  border: 2px solid transparent !important;
  border-radius: 8px !important;
}

.vue-tel-input::placeholder {
  transition: 0.5s ease-in-out;
  color: #a9a9a9 !important;
}

/* ─── CSS Custom Properties ──────────────────────────────────────── */
:root {
  --brand: rgba(42, 84, 199, 1);
  --brand-dark: #1e3fa3;
  --brand-light: #eef2ff;
  --brand-glow: rgba(42, 84, 199, .25);
  --accent: rgba(0, 170, 175, 1);
  --accent-light: #e0f7f8;
  --green: #22c55e;
  --text: #1E1F21;
  --text-2: #374151;
  --muted: #6b7280;
  --border: #e2e8f0;
  --white: #ffffff;
  --gray-bg: #f6f8f9;
  --dark-bg: #0a1628;
  --dark-card: #162035;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(42, 84, 199, .08);
  --shadow: 0 6px 28px rgba(42, 84, 199, .13);
  --shadow-lg: 0 16px 56px rgba(42, 84, 199, .22);
  --shadow-xl: 0 28px 80px rgba(42, 84, 199, .28);
}

/* ─── Layout ─────────────────────────────────────────────────────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

.container.narrow {
  max-width: 780px;
}

.center {
  text-align: center;
}

.mt-2 {
  margin-top: 1.5rem;
}

.mt-3 {
  margin-top: 2.5rem;
}

.gap-lg {
  gap: 1.5rem;
}

.section {
  padding: 96px 0;
}

.section-white {
  background: var(--white);
}

.section-gray {
  background: var(--gray-bg);
}

.section-dark {
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.section-dark::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 170, 175, .12) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.section-dark p, .section-dark li {
  color: #9ca3af;
}

.section-dark h2 {
  color: var(--white);
}

.section-dark .overline {
  color: #7dd3d6;
}

.section-cta {
  background: linear-gradient(76deg, rgba(42, 84, 199, 1), rgba(0, 170, 175, 1));
  position: relative;
  overflow: hidden;
}

.section-cta > * {
  position: relative;
}

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

.section-cta p {
  margin: 1rem 0 2rem;
  opacity: .9;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

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

/* ─── Typography Extras ──────────────────────────────────────────── */
p {
  color: var(--text-2);
}

.overline {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: .6rem;
  display: block;
}

.highlight {
  background: linear-gradient(90deg, #fff 0%, #b3efff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Nav ────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(42, 84, 199, .1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav .c-button-primary {
  padding: 10px 20px;
}

.logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.logo-footer {
  filter: brightness(0) invert(1);
  opacity: .85;
}

/* ─── Hero ───────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(186deg, rgba(42, 84, 199, 1), rgba(0, 170, 175, 1));
  color: var(--white);
  padding: 110px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 200, 210, .65) 0%, transparent 95%);
  top: -200px;
  right: -150px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .1) 0%, transparent 95%);
  bottom: -100px;
  left: 10%;
  pointer-events: none;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero h1 {
  color: var(--white);
  margin: 1rem 0;
  line-height: 1.08;
  letter-spacing: -.02em;
}

.hero-sub {
  color: rgba(255, 255, 255, 1);
  margin-bottom: 1.75rem;
  max-width: 580px;
  line-height: 1.65;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255, 255, 255, .15);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 100px;
  padding: 5px 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  backdrop-filter: blur(8px);
}

.badge::before {
  content: '✦';
}

.hero-bullets {
  list-style: none;
  margin-bottom: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: rgba(255, 255, 255, 1);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 8px;
  padding: 10px 16px;
  backdrop-filter: blur(4px);
  max-width: 420px;
}

.check {
  color: #b3efff;
  flex-shrink: 0;
}

.check-green {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.price-tag {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}

.price-tag .price-orig {
  color: rgba(255, 255, 255, .55);
  font-weight: 500;
  text-decoration: line-through;
}

.price-tag .price-val {
  font-weight: 900;
  color: var(--white);
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 1;
}

.hero-wave svg {
  width: 100%;
  display: block;
}

/* ─── Stats Bar ──────────────────────────────────────────────────── */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.stats-inner {
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 40px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
}

.stat-label {
  color: var(--muted);
  margin-top: 3px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}

@media (max-width: 600px) {
  .stat-item {
    padding: 8px 20px;
    border-right: none;
    border-bottom: 1px solid var(--border);
    width: 50%;
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid var(--border);
  }
}

/* ─── Pain Cards ─────────────────────────────────────────────────── */
.pain-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: box-shadow .2s;
}

.pain-card:hover {
  box-shadow: var(--shadow);
}

.pain-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.divider-label {
  text-align: center;
  position: relative;
  margin: 2.5rem 0;
  font-weight: 800;
  color: var(--brand);
  font-family: stolzl, sans-serif;
}

.divider-label::before,
.divider-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 28%;
  height: 1.5px;
}

.divider-label::before {
  left: 0;
  background: linear-gradient(90deg, transparent, var(--border));
}

.divider-label::after {
  right: 0;
  background: linear-gradient(270deg, transparent, var(--border));
}

.solution-box {
  background: linear-gradient(145deg, #eef2ff, #f0fffe 80%);
  border: 1.5px solid rgba(42, 84, 199, .15);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.solution-box::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(42, 84, 199, .06);
}

.solution-box p {
  color: var(--text);
  line-height: 1.75;
  position: relative;
}

/* ─── Modules Grid ───────────────────────────────────────────────── */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
  margin-top: 2.75rem;
}

.module-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 1rem;
  transition: box-shadow .25s, transform .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(42, 84, 199, 1), rgba(0, 170, 175, 1));
  opacity: 0;
  transition: opacity .25s;
}

.module-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: rgba(42, 84, 199, .25);
}

.module-card:hover::before {
  opacity: 1;
}

.module-num {
  font-weight: 900;
  background: linear-gradient(135deg, #c8dcff, var(--brand-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
  margin-top: 2px;
}

.module-body h3 {
  margin-bottom: .4rem;
}

.module-body p {
  color: var(--muted);
  line-height: 1.55;
}

/* ─── Bonus Price Tag ────────────────────────────────────────────── */
.bonus-price-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .6rem;
  font-weight: 600;
  color: var(--muted);
}

.bonus-price-tag s {
  color: var(--muted);
  font-weight: 500;
}

.bonus-free {
  background: linear-gradient(90deg, rgba(42, 84, 199, 1), rgba(0, 170, 175, 1));
  color: var(--white);
  font-weight: 800;
  padding: 2px 9px;
  border-radius: 100px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ─── Bonus Value Summary ────────────────────────────────────────── */
.bonus-value-box {
  background: linear-gradient(145deg, #eef2ff, #f0fffe 80%);
  border: 1.5px solid rgba(42, 84, 199, .15);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-top: 2.5rem;
}

.bonus-value-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(42, 84, 199, .08);
  color: var(--text-2);
}

.bonus-value-row:last-child {
  border-bottom: none;
}

.bonus-value-row.total-row {
  padding-top: 14px;
  margin-top: 4px;
  font-weight: 700;
  color: var(--text);
}

.bonus-value-row s {
  color: var(--muted);
}

.bonus-value-row.price-row {
  padding-top: 14px;
  margin-top: 4px;
  font-weight: 800;
  color: var(--text);
  border-top: 2px solid rgba(42, 84, 199, .2);
  border-bottom: none;
}

.bonus-value-row.price-row .price-val {
  color: var(--brand);
  font-weight: 900;
}

/* ─── Countdown Timer ────────────────────────────────────────────── */
.countdown-wrap {
  display: flex;
  margin-top: 2rem;
}

.countdown-bar {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--dark-bg);
  border: 1px solid rgba(42, 84, 199, .3);
  border-radius: 100px;
  padding: 10px 24px;
}

.countdown-label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #7dd3d6;
}

.countdown-digits {
  font-weight: 900;
  color: var(--white);
  font-variant-numeric: tabular-nums;
  letter-spacing: .05em;
}

/* ─── Instructor ─────────────────────────────────────────────────── */
.instructor-intro {
  color: var(--text-2);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.instructor-card {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-top: 2.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.instructor-card::after {
  content: '"';
  position: absolute;
  top: -10px;
  right: 24px;
  font-size: 9rem;
  color: var(--brand-light);
  font-family: Georgia, serif;
  line-height: 1;
}

.instructor-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(42, 84, 199, 1) 0%, rgba(0, 170, 175, 1) 100%);
  color: var(--white);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px var(--brand-glow);
  letter-spacing: -.02em;
}

.instructor-name {
  margin-bottom: .25rem;
}

.instructor-role {
  color: var(--brand);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}

.instructor-info p {
  line-height: 1.7;
}

.instructor-tagline {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--brand-light);
  color: var(--brand);
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: 700;
}

@media (max-width: 540px) {
  .instructor-card {
    flex-direction: column;
    padding: 24px;
  }
}

/* ─── For You List ───────────────────────────────────────────────── */
.for-you-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem 2rem;
  margin-top: 2rem;
}

.for-you-list li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  padding: 12px 16px;
}

@media (max-width: 640px) {
  .for-you-list {
    grid-template-columns: 1fr;
  }
}

/* ─── FAQ ────────────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  margin-top: 2.25rem;
}

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}

.faq-item:hover {
  border-color: rgba(42, 84, 199, .3);
  box-shadow: var(--shadow-sm);
}

.faq-item[open] {
  border-color: rgba(42, 84, 199, .4);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  padding: 18px 22px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  gap: 1rem;
  font-family: stolzl, sans-serif;
}

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

.faq-item summary::after {
  content: '+';
  color: var(--brand);
  transition: transform .2s;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-light);
  border-radius: 6px;
  font-weight: 400;
  font-family: scandia-web, sans-serif;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item[open] summary {
  color: var(--brand);
}

.faq-item p {
  padding: 0 22px 18px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── Footer ─────────────────────────────────────────────────────── */
.footer {
  background: var(--dark-bg);
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  color: #4b5563;
}

/* ─── Checkout Page ──────────────────────────────────────────────── */
.checkout-page {
  min-height: 100vh;
  background: var(--gray-bg);
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2rem;
  padding: 60px 0 80px;
  align-items: start;
}

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

.checkout-summary {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.summary-title {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.summary-price {
  color: var(--brand);
  display: flex;
  align-items: baseline;
  gap: .4rem;
  letter-spacing: -.02em;
  margin-bottom: .5rem;
}

.summary-course-name {
  font-weight: 700;
  margin-bottom: .9rem;
  line-height: 1.3;
  font-family: stolzl, sans-serif;
}

.summary-divider {
  height: 1px;
  background: var(--border);
  margin: 1.25rem 0;
}

.summary-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.summary-points li {
  display: flex;
  gap: .65rem;
  color: var(--text-2);
  align-items: flex-start;
}

.summary-points li::before {
  content: '✓';
  color: var(--brand);
  font-weight: 800;
  flex-shrink: 0;
  background: var(--brand-light);
  width: 18px;
  height: 18px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  margin-top: 2px;
}

.secure-badge {
  display: flex;
  gap: .5rem;
  align-items: center;
  color: var(--muted);
  background: var(--gray-bg);
  border-radius: 8px;
  padding: 10px 14px;
}

/* ─── Form Card ──────────────────────────────────────────────────── */
.form-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-sm);
}

.form-card .sub {
  color: var(--muted);
  margin-bottom: 2.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-bottom: 1.35rem;
}

.form-group label {
  font-weight: 700;
  color: var(--text);
  letter-spacing: .01em;
  font-family: stolzl, sans-serif;
}

.form-group input,
.form-group select {
  padding: 16px 20px;
  background: rgba(231, 232, 233, 1);
  border: 1.5px solid transparent;
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(161, 161, 161, 1);
  font-family: scandia-web, sans-serif;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder {
  color: rgba(38, 38, 38, .5);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: rgba(42, 84, 199, 1);
  box-shadow: 0 0 0 4px rgba(42, 84, 199, .1);
}

.form-group input:hover,
.form-group select:hover {
  border-color: rgba(42, 84, 199, .3);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-divider {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--muted);
  margin: 1.5rem 0;
}

.form-divider::before, .form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.form-note {
  color: var(--muted);
  text-align: center;
  margin-top: 1rem;
}

.form-note a {
  color: var(--brand);
  text-decoration: none;
}

.form-note a:hover {
  text-decoration: underline;
}

/* ─── Button Loader ──────────────────────────────────────────────── */
.btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255, 255, 255, .35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  flex-shrink: 0;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.c-res-button-primary.loading .btn-label {
  opacity: .6;
}

.c-res-button-primary.loading .btn-spinner {
  display: block;
}

.c-res-button-primary.loading {
  cursor: not-allowed;
}

/* ─── BirdSend Overrides ─────────────────────────────────────────── */
.bs-branding-url,
[bs-form] .bs-branding-url,
[bs-form] div:has(.bs-branding-url) {
  display: none !important;
}

#bs-message:not(:empty) {
  margin-top: 1rem;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
}

#bs-message.success {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

#bs-message.error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

/* ─── Thank You Page ─────────────────────────────────────────────── */
.thankyou-page {
  min-height: 100vh;
  background: var(--gray-bg);
  display: flex;
  flex-direction: column;
}

.thankyou-main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.thankyou-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 52px 44px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--shadow-xl);
}

.thankyou-icon {
  width: 84px;
  height: 84px;
  background: linear-gradient(135deg, var(--brand-light), #c8e4ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  margin: 0 auto 1.75rem;
  box-shadow: 0 4px 20px var(--brand-glow);
}

.thankyou-card h1 {
  margin-bottom: .75rem;
}

.thankyou-card > p {
  color: var(--muted);
  margin-bottom: 2rem;
}

.price-display {
  background: linear-gradient(145deg, #eef2ff, #f0fffe 80%);
  border: 1.5px solid rgba(42, 84, 199, .2);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 2rem;
}

.price-display .label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .3rem;
}

.price-display .amount {
  font-weight: 900;
  color: var(--brand);
  letter-spacing: -.02em;
}

.payment-options {
  margin: 2rem 0;
  text-align: left;
}

.payment-options h3 {
  margin-bottom: 1rem;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  text-align: center;
}

.bank-cards {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.bank-card {
  background: var(--gray-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color .2s, box-shadow .2s;
}

.bank-card:hover {
  border-color: rgba(42, 84, 199, .3);
  box-shadow: var(--shadow-sm);
}

.bank-left {
  flex: 1;
}

.bank-name {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.bank-acct {
  font-weight: 900;
  color: var(--brand);
  letter-spacing: .05em;
  line-height: 1.2;
}

.bank-type {
  color: var(--muted);
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: .3rem;
}

.bank-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .5rem;
  flex-shrink: 0;
  margin-left: 1rem;
}

.bank-flag {
  font-size: 1.4rem;
}

.copy-btn {
  background: var(--brand-light);
  color: var(--brand);
  border: 1.5px solid rgba(42, 84, 199, .2);
  border-radius: 26px;
  padding: 6px 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: scandia-web, sans-serif;
  transition: all .2s;
  white-space: nowrap;
}

.copy-btn:hover {
  background: #c8dcff;
  border-color: var(--brand);
}

.thankyou-note {
  margin-top: 2rem;
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #15803d;
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  text-align: left;
  line-height: 1.55;
}

@media (max-width: 620px) {
  .form-card {
    padding: 28px 20px;
  }

  .thankyou-card {
    padding: 32px 20px;
  }

  .bank-card {
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem;
  }

  .bank-right {
    flex-direction: row;
    margin-left: 0;
  }
}
