/* ============================================
   ZERO TO 524 — HOMEPAGE STYLES
   Scroll-driven sales page layout
   ============================================ */

/* ---- Sticky Navigation ---- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  background: transparent;
  transition: all 0.3s ease;
}

.site-nav.scrolled {
  background: rgba(5, 7, 13, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid #1c2538;
  padding: 1rem 0;
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
}

.site-nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #e8edf6;
}

.site-nav__logo-icon {
  width: 34px;
  height: 34px;
}

.site-nav__logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.site-nav__logo-gradient {
  background: linear-gradient(120deg, #4d8bff, #22d3ee 55%, #10c8a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.site-nav__cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #8b93a7;
  text-decoration: none;
  transition: color 0.2s;
}

.site-nav__link:hover {
  color: #e8edf6;
}

.site-nav__btn {
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #3f7df6, #2f6ef0);
  padding: 0.7rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 8px 24px -8px rgba(63,125,246,0.5);
  transition: all 0.2s ease;
}

.site-nav__btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  color: #fff;
}


/* ---- Hero Section ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -5%;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(124, 92, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #2fd6c4;
  text-transform: uppercase;
  border: 1px solid #1e3a3f;
  background: rgba(16,200,160,0.06);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #e8edf6;
  margin-bottom: 1.25rem;
  text-wrap: balance;
  animation: fadeUp 0.6s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__title .gradient-text {
  background: linear-gradient(120deg, #4d8bff, #22d3ee 55%, #10c8a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: #8b93a7;
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 2rem;
  animation: fadeUp 0.6s 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__capture {
  animation: fadeUp 0.6s 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__capture-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero__capture-form .input-field {
  flex: 1 1 240px;
  background: #0c1220;
  border: 1px solid #212a3d;
  border-radius: 12px;
  padding: 1rem 1.125rem;
  color: #e8edf6;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.hero__capture-form .input-field::placeholder {
  color: #586079;
}

.hero__capture-form .input-field:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.18);
}

.hero__capture-form .btn-primary {
  border: none;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #4181f7, #2f6ef0);
  padding: 1rem 1.75rem;
  border-radius: 12px;
  box-shadow: 0 12px 30px -10px rgba(63,125,246,0.7);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.hero__capture-form .btn-primary:hover {
  filter: brightness(1.07);
  transform: translateY(-1px);
}

.hero__capture-note {
  font-size: 0.8rem;
  color: #6f7da0;
  margin-top: 0.75rem;
}

.hero__cover-col {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 0.6s 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Scale the 3D cover larger for the hero */
.hero__cover-col .cover-wrapper {
  transform: scale(1.1);
  transform-origin: center center;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ---- Credibility Stats Bar ---- */
.credibility-bar {
  padding: 3.5rem 0;
  background: linear-gradient(180deg, rgba(12, 18, 32, 0.5) 0%, rgba(5, 7, 13, 0) 100%);
  border-top: 1px solid #1c2538;
  border-bottom: 1px solid #1c2538;
}

.credibility-bar__inner {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 6vw, 5rem);
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.credibility-bar__stat {
  text-align: center;
}

.credibility-bar__number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(120deg, #4d8bff, #22d3ee 55%, #10c8a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.credibility-bar__label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6f7da0;
}


/* ---- Pain Points Section ---- */
.pain-section {
  padding: 6rem 0;
}

.pain-section__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
}

.pain-section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.pain-section__eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f43f5e;
  margin-bottom: 1rem;
}

.pain-section__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #e8edf6;
  letter-spacing: -0.03em;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.pain-card {
  background: linear-gradient(180deg, #11182a 0%, #0d1320 100%);
  border: 1px solid #1c2538;
  border-radius: 16px;
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f43f5e, #fb7185);
}

.pain-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 63, 94, 0.3);
  box-shadow: 0 12px 30px -10px rgba(244, 63, 94, 0.15);
}

.pain-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 63, 94, 0.08);
  border: 1px solid rgba(244, 63, 94, 0.15);
  border-radius: 12px;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.pain-card__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #e8edf6;
  margin-bottom: 0.75rem;
}

.pain-card__desc {
  font-size: 0.95rem;
  color: #8b93a7;
  line-height: 1.6;
}


/* ---- System Section ---- */
.system-section {
  padding: 6rem 0;
  position: relative;
}

.system-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
}

.system-section__header {
  text-align: center;
  margin-bottom: 5rem;
}

.system-section__eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #2fd6c4;
  margin-bottom: 1rem;
}

.system-section__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #e8edf6;
  letter-spacing: -0.03em;
}

.system-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.system-feature:last-child {
  margin-bottom: 0;
}

.system-feature--reversed {
  direction: rtl;
}

.system-feature--reversed > * {
  direction: ltr;
}

.system-feature__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.system-feature__icon-block {
  width: 280px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #151d2e, #0d1320);
  border: 1px solid #1c2538;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.system-feature__icon-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #22d3ee);
}

.system-feature__icon-block .icon-large {
  font-size: 4rem;
  line-height: 1;
}

.system-feature__phase {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3f7df6;
  margin-bottom: 0.75rem;
}

.system-feature__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #e8edf6;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.system-feature__desc {
  font-size: 1rem;
  color: #8b93a7;
  line-height: 1.7;
}


/* ---- Testimonial Section ---- */
.testimonial-section {
  padding: 6rem 0;
  position: relative;
}

.testimonial-section__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
}

.testimonial-card {
  background: linear-gradient(180deg, #11182a 0%, #0d1320 100%);
  border: 1px solid #1c2538;
  border-radius: 20px;
  padding: 3.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2fd6c4, #3f7df6);
}

.testimonial-card__quotemark {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 5rem;
  line-height: 0.5;
  background: linear-gradient(120deg, #4d8bff, #22d3ee 55%, #10c8a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  margin-bottom: 1rem;
  display: block;
}

.testimonial-card__quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  font-weight: 500;
  line-height: 1.5;
  color: #e8edf6;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2fd6c4, #3f7df6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.testimonial-card__author-info {
  text-align: left;
}

.testimonial-card__name {
  font-weight: 700;
  color: #2fd6c4;
  font-size: 1rem;
}

.testimonial-card__detail {
  font-size: 0.85rem;
  color: #6f7da0;
  margin-top: 2px;
}

.testimonial-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 200, 160, 0.08);
  border: 1px solid rgba(16, 200, 160, 0.2);
  border-radius: 999px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #2fd6c4;
}


/* ---- Coaching Preview Section ---- */
.coaching-preview {
  padding: 6rem 0;
}

.coaching-preview__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
}

.coaching-preview__header {
  text-align: center;
  margin-bottom: 4rem;
}

.coaching-preview__eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7c5cff;
  margin-bottom: 1rem;
}

.coaching-preview__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #e8edf6;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.coaching-preview__subtitle {
  font-size: 1.05rem;
  color: #8b93a7;
  max-width: 600px;
  margin: 0 auto;
}

.coaching-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.coaching-card {
  background: linear-gradient(180deg, #11182a 0%, #0d1320 100%);
  border: 1px solid #1c2538;
  border-radius: 20px;
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.coaching-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.4);
}

.coaching-card--featured {
  border-color: #7c5cff;
  box-shadow: 0 0 40px -10px rgba(124, 92, 255, 0.2);
}

.coaching-card--featured:hover {
  border-color: #906ffa;
  box-shadow: 0 0 60px -10px rgba(124, 92, 255, 0.3), 0 12px 30px -10px rgba(0, 0, 0, 0.4);
}

.coaching-card__badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: linear-gradient(135deg, #7c5cff, #3f7df6);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.coaching-card__eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.coaching-card__eyebrow--mint {
  color: #2fd6c4;
}

.coaching-card__eyebrow--purple {
  color: #7c5cff;
}

.coaching-card__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #e8edf6;
  margin-bottom: 0.25rem;
}

.coaching-card__duration {
  font-size: 0.9rem;
  color: #6f7da0;
  margin-bottom: 1.5rem;
}

.coaching-card__price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #e8edf6;
  margin-bottom: 2rem;
}

.coaching-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex-grow: 1;
}

.coaching-card__features li {
  font-size: 0.95rem;
  color: #8b93a7;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.coaching-card__features li::before {
  content: '✓';
  color: #2fd6c4;
  font-weight: bold;
  flex-shrink: 0;
}

.coaching-card__cta {
  width: 100%;
  border: none;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: block;
  box-sizing: border-box;
}

.coaching-card__cta--primary {
  background: linear-gradient(135deg, #2fd6c4, #10c8a0);
  color: #05070d;
}

.coaching-card__cta--primary:hover {
  opacity: 0.9;
}

.coaching-card__cta--secondary {
  background: linear-gradient(135deg, #7c5cff, #3f7df6);
  color: #fff;
}

.coaching-card__cta--secondary:hover {
  opacity: 0.9;
}

.coaching-card__cta-sub {
  width: 100%;
  margin-top: 0.75rem;
  background: transparent;
  border: 1px solid #3f7df6;
  color: #3f7df6;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: block;
  box-sizing: border-box;
}

.coaching-card__cta-sub:hover {
  background: rgba(63, 125, 246, 0.08);
  border-color: #4d8bff;
  color: #4d8bff;
}

.coaching-preview__viewall {
  text-align: center;
  margin-top: 2.5rem;
}

.coaching-preview__viewall a {
  font-size: 0.95rem;
  font-weight: 700;
  color: #22d3ee;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s ease, color 0.2s ease;
}

.coaching-preview__viewall a:hover {
  gap: 0.75rem;
  color: #2fd6c4;
}


/* ---- Footer ---- */
.site-footer {
  padding: 3rem 0;
  border-top: 1px solid #1c2538;
  text-align: center;
}

.site-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.site-footer__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #e8edf6;
}

.site-footer__logo-icon {
  width: 26px;
  height: 26px;
}

.site-footer__logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.site-footer__copy {
  font-size: 0.85rem;
  color: #4b5563;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.site-footer__links a {
  font-size: 0.85rem;
  color: #4b5563;
  text-decoration: none;
}

.site-footer__links a:hover {
  color: #e8edf6;
}

.site-footer__disclaimer {
  font-size: 0.75rem;
  color: #3a4356;
  max-width: 560px;
  line-height: 1.5;
}


/* ---- Modal Styling (Homepage) ---- */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(5, 7, 13, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
  padding: 1.5rem;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: linear-gradient(180deg, #11182a 0%, #0d1320 100%);
  border: 1px solid #1c2538;
  border-radius: 20px;
  max-width: 480px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  text-align: left;
  animation: modalSlide 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlide {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: #8b93a7;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  transition: color 0.2s;
}

.modal-close:hover {
  color: #e8edf6;
}

.modal-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  color: #e8edf6;
}

.modal-subtitle {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.modal-desc {
  font-size: 0.9rem;
  color: #8b93a7;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-input {
  background: #0c1220;
  border: 1px solid #212a3d;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  color: #e8edf6;
  font-family: inherit;
  font-size: 0.95rem;
  width: 100%;
  transition: border-color 0.2s;
}

.modal-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.18);
}

.modal-submit {
  background: linear-gradient(135deg, #4d8bff, #22d3ee);
  border: none;
  border-radius: 12px;
  padding: 0.85rem;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: opacity 0.2s;
}

.modal-submit:hover {
  opacity: 0.9;
}

.btn-secondary-outline {
  display: block;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  background: transparent;
  border: 1px solid #3f7df6;
  color: #3f7df6 !important;
  transition: all 0.2s;
}

.btn-secondary-outline:hover {
  background: rgba(63, 125, 246, 0.08);
  border-color: #4d8bff;
  color: #4d8bff !important;
}

.btn-purple-outline {
  display: block;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  background: transparent;
  border: 1px solid #7c5cff;
  color: #7c5cff !important;
  transition: all 0.2s;
}

.btn-purple-outline:hover {
  background: rgba(124, 92, 255, 0.08);
  border-color: #906ffa;
  color: #906ffa !important;
}

.modal-success {
  display: none;
  text-align: center;
  padding: 1.5rem 0;
}

.modal-success-check {
  width: 48px;
  height: 48px;
  background: rgba(16, 200, 160, 0.1);
  color: #2fd6c4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem auto;
  font-weight: bold;
}


/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero__inner {
    gap: 3rem;
  }

  .system-feature {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: 6rem;
    padding-bottom: 3rem;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__capture-form {
    flex-direction: column;
  }

  .hero__capture-note {
    text-align: center;
  }

  .hero__cover-col {
    order: -1;
  }

  .hero__cover-col .cover-wrapper {
    transform: scale(0.85);
  }

  .pain-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .system-feature,
  .system-feature--reversed {
    grid-template-columns: 1fr;
    gap: 2rem;
    direction: ltr;
  }

  .system-feature__visual {
    order: -1;
  }

  .coaching-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .credibility-bar__inner {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .credibility-bar__stat {
    flex: 1 1 120px;
  }

  .site-nav__link {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }

  .credibility-bar__inner {
    gap: 1.5rem;
  }

  .coaching-card {
    padding: 2rem 1.5rem;
  }
}
