/* ═══════════════════════════════════════════════════════════════
   GourmetPro – GM Coaching Series  |  styles.css
   Font: Lato (Google Fonts)
   Icons: lucide-static (CDN font)
═══════════════════════════════════════════════════════════════ */

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

/* ── Container ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: #0C0C0C;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 1.5;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── Icon helper (lucide font) ─────────────────────────────── */
.icon {
  font-family: 'lucide' !important;
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  line-height: 1;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn:hover { opacity: 0.88; }

.btn--primary {
  background: #FFD212;
  color: #111111;
  border-radius: 8px;
  padding: 18px 44px;
  font-size: 17px;
}

.btn--outline {
  background: transparent;
  color: #FFD212;
  border: 1px solid #FFD212;
}

.btn--outline:hover {
  opacity: 1;
  background: rgba(255, 210, 18, 0.08);
}

.btn--sm {
  border-radius: 6px;
  padding: 13px 28px;
  font-size: 14px;
}

.btn--hero {
  border-radius: 10px;
  padding: 20px 52px;
  font-size: 18px;
  outline: 4px solid #FFD21240;
  outline-offset: 0;
}

.btn--full {
  width: 100%;
  justify-content: center;
  border-radius: 12px;
  height: 58px;
  font-size: 17px;
}

/* ── Section header (reused) ───────────────────────────────── */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.section-header__title {
  font-size: 50px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  color: #FFFFFF;
}

.section-header__sub {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.75;
  text-align: center;
  color: #888888;
}

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  background: #0C0C0C;
  border-bottom: 1px solid #1E1E1E;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

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

.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__links a {
  font-size: 15px;
  color: #888888;
  transition: color 0.2s;
}
.nav__links a:hover { color: #FFFFFF; }

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  background: #0C0C0C;
  background-image: radial-gradient(ellipse at top center, rgba(255, 210, 18, 0.25) 0%, transparent 50%);
  padding-top: 130px;
  padding-bottom: 130px;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  text-align: center;
}

.hero__headline {
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  color: #FFFFFF;
  max-width: 1100px;
}

.hero__sub {
  font-size: 21px;
  font-weight: 400;
  line-height: 1.7;
  color: #888888;
  max-width: 655px;
}

.hero__trust {
  font-size: 14px;
  color: #888888;
  max-width: 1200px;
  margin-top: -10px;
}

/* ══════════════════════════════════════════════════════════════
   WHAT IS SECTION
══════════════════════════════════════════════════════════════ */
.what {
  background: #111111;
  padding-top: 120px;
  padding-bottom: 120px;
}

.what__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.what__card {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  padding: 56px 64px;
  border-radius: 16px;
  background: #111111;
  background-image: radial-gradient(ellipse at top left, rgba(255, 210, 18, 0.08) 0%, transparent 100%);
  border: 1px solid rgba(255, 210, 18, 0.12);
}

.what__card--cols {
  flex-direction: row;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.what__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 48px 44px;
}

.what__col-accent {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 210, 18, 0.1);
  border-radius: 12px;
  margin-bottom: 4px;
}

.what__col-icon {
  font-size: 22px;
  color: #FFD212;
}

.what__col-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #FFD212;
}

.what__col-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255, 210, 18, 0.12);
}

.what__para {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
  color: #BBBBBB;
}

.stats-row {
  display: flex;
  gap: 20px;
  width: 100%;
}

.stat-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 40px;
  background: #1A1A1A;
  border-radius: 16px;
  border: 1px solid #2A2A2A;
}

.stat-card__num {
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  color: #FFD212;
}

.stat-card__label {
  font-size: 14px;
  line-height: 1.6;
  color: #AAAAAA;
}

/* ══════════════════════════════════════════════════════════════
   TESTIMONIAL
══════════════════════════════════════════════════════════════ */
.testimonial {
  background: #0C0C0C;
  background-image: radial-gradient(ellipse at center, rgba(255, 210, 18, 0.05) 0%, transparent 65%);
  border-top: 1px solid rgba(255, 210, 18, 0.15);
  border-bottom: 1px solid rgba(255, 210, 18, 0.15);
  padding-top: 100px;
  padding-bottom: 100px;
}

.testimonial__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.testimonial__quote {
  font-size: 26px;
  font-weight: 400;
  line-height: 1.75;
  color: #F5E88A;
  text-align: center;
  font-style: normal;
}

.testimonial__author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.testimonial__name {
  font-size: 17px;
  font-weight: 700;
  color: #FFD212;
}

.testimonial__role {
  font-size: 15px;
  color: #888888;
}

/* ══════════════════════════════════════════════════════════════
   VIDEO SECTION
══════════════════════════════════════════════════════════════ */
.video-section {
  background: #0C0C0C;
  padding-top: 120px;
  padding-bottom: 120px;
}

.video-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.video-section .section-header__title { font-size: 48px; }
.video-section .section-header__sub   { font-size: 18px; color: #888888; }

.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  height: 520px;
  background: #191919;
  border-radius: 20px;
}

.video-placeholder__play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: #FFD212;
  border-radius: 40px;
  color: #111111;
}

.video-placeholder__play .icon { font-size: 32px; }

.video-placeholder__text {
  font-size: 14px;
  color: #555555;
  text-align: center;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════
   FOCUS AREAS
══════════════════════════════════════════════════════════════ */
.focus {
  background: #0C0C0C;
  padding-top: 120px;
  padding-bottom: 120px;
}

.focus__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
}

.focus .section-header__title { font-size: 50px; }

.focus-grid {
  width: 100%;
}

.focus-grid--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.focus-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px 44px;
  background: #181818;
  border-radius: 20px;
  border: 1px solid #282828;
}

.focus-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #FFD21220;
  border-radius: 14px;
  color: #B89000;
  font-size: 26px;
}

.focus-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
}

.focus-card__desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: #999999;
}

.focus-card__label {
  font-size: 12px;
  font-weight: 700;
  color: #666666;
  letter-spacing: 1.5px;
}

.focus-card__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.focus-card__items li {
  display: flex;
  gap: 10px;
  width: 100%;
}

.focus-card__items .icon {
  color: #FFD212;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.focus-card__items span {
  font-size: 14px;
  line-height: 1.6;
  color: #888888;
}

.focus-optional {
  margin-top: 48px;
  padding: 24px 28px;
  background: #181818;
  border: 1px solid #2A2A2A;
  border-radius: 14px;
}

.focus-optional__text {
  font-size: 14px;
  line-height: 1.8;
  color: #888888;
}

.focus-optional__text strong {
  color: #BBBBBB;
}

/* ══════════════════════════════════════════════════════════════
   EXPERT
══════════════════════════════════════════════════════════════ */
.expert {
  background: #111111;
  padding-top: 120px;
  padding-bottom: 120px;
}

.expert__inner {
  display: flex;
  gap: 100px;
}

.expert__img-col {
  flex-shrink: 0;
  width: 480px;
}

.expert__img-box {
  width: 480px;
  height: 580px;
  border-radius: 20px;
  overflow: hidden;
  background: #E8E8E8;
}

.expert__img-icon { font-size: 64px; color: #AAAAAA; }

.expert__img-label {
  font-size: 14px;
  color: #AAAAAA;
  font-family: 'Lato', sans-serif;
}

.expert__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  display: block;
}

.expert__logos {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  align-items: center;
  gap: 20px 36px;
  padding-top: 4px;
}

.expert__logos--flex {
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: unset;
  justify-content: unset;
  gap: 28px;
}

.expert__logo-img {
  height: auto;
  max-height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.expert__logos--flex .expert__logo-img {
  height: 42px;
  max-height: unset;
  max-width: 130px;
}

.expert__logo-img:hover {
  opacity: 1;
}

.expert__logo-img--lighten {
  filter: grayscale(1) brightness(4);
  opacity: 0.7;
}

.expert__logo-img--lighten:hover {
  opacity: 0.9;
}

.expert__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
}

.expert__title {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.15;
  color: #FFFFFF;
}

.expert__intro {
  font-size: 17px;
  line-height: 1.65;
  color: #888888;
}

.expert__bio {
  font-size: 16px;
  line-height: 1.8;
  color: #AAAAAA;
}

.expert__cred {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid #2A2A2A;
}

.expert__cred-label {
  font-size: 13px;
  font-weight: 700;
  color: #666666;
  letter-spacing: 1.2px;
}

.expert__cred-val {
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
}

.expert__img-wrap {
  position: relative;
}

.expert__achievement {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 18px 20px;
  background: rgba(12, 12, 12, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 0 0 20px 20px;
}

.expert__achievement-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.expert__achievement-num {
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  color: #FFD212;
}

.expert__achievement-desc {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}

.expert__achievement-div {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.expert__achievement-caption {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  color: #666666;
  text-align: center;
  letter-spacing: 0.3px;
}

/* ══════════════════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════════════════ */
.how {
  background: #111111;
  padding-top: 120px;
  padding-bottom: 120px;
}

.how__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
}

.how__title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  color: #FFFFFF;
  max-width: 654px;
}

.how__steps {
  display: flex;
  gap: 28px;
  width: 100%;
}

.how__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 40px;
  background: #1E1E1E;
  border-radius: 20px;
  border: 1px solid #333333;
}

.how__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #FFD212;
  border-radius: 24px;
  font-size: 20px;
  font-weight: 900;
  color: #111111;
  flex-shrink: 0;
}

.how__step-title {
  font-size: 21px;
  font-weight: 700;
  color: #FFFFFF;
  max-width: 276px;
}

.how__step-desc {
  font-size: 15px;
  line-height: 1.75;
  color: #BBBBBB;
}

/* ── How It Works — Timeline layout ───────────────────────── */
.how__timeline {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.how__tl-step {
  display: flex;
  gap: 28px;
}

.how__tl-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.how__tl-line {
  width: 2px;
  flex: 1;
  min-height: 28px;
  background: #2A2A2A;
  margin: 8px 0;
}

.how__tl-step:last-child .how__tl-line {
  display: none;
}

.how__tl-body {
  padding-bottom: 40px;
  flex: 1;
}

.how__tl-step:last-child .how__tl-body {
  padding-bottom: 0;
}

.how__tl-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.how__tl-time {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #FFD212;
  background: rgba(255, 210, 18, 0.12);
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════════════════
   GOOD FIT
══════════════════════════════════════════════════════════════ */
.good-fit {
  background: #0C0C0C;
  padding-top: 120px;
  padding-bottom: 120px;
}

.good-fit__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
}

.good-fit__title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  color: #FFFFFF;
  max-width: 860px;
}

.good-fit__cards {
  display: flex;
  gap: 28px;
  width: 100%;
}

.good-fit__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 36px;
  background: #141414;
  border-radius: 20px;
  border: 1px solid #2A2A2A;
}

.good-fit__icon {
  font-size: 28px;
  color: #FFD212;
  flex-shrink: 0;
}

.good-fit__card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #FFFFFF;
}

.good-fit__card-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #999999;
}

/* ══════════════════════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════════════════════ */
.pricing {
  background: #0C0C0C;
  padding-top: 120px;
  padding-bottom: 120px;
}

.pricing__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.pricing__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.pricing__title {
  font-size: 56px;
  font-weight: 900;
  text-align: center;
  color: #FFFFFF;
}

.pricing__sub {
  font-size: 19px;
  color: #888888;
  text-align: center;
}

.pricing__card {
  width: 100%;
  border-radius: 24px;
  border: 1px solid #2A2A2A;
  overflow: hidden;
  display: flex;
}

.pricing__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 64px 56px;
  background: #141414;
  border-right: 1px solid #2A2A2A;
  text-align: center;
  flex: 0 0 380px;
}

.pricing__guarantee {
  font-size: 13px;
  color: #555555;
  margin: -16px 0 0;
}

.pricing__left .btn {
  width: 100%;
  white-space: nowrap;
}

.pricing__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 64px 56px;
  background: #0E0E0E;
  flex: 1;
}

.pricing__right-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555555;
}

.pricing__tag {
  display: inline-block;
  padding: 8px 18px;
  background: #FFD21225;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: #FFD212;
  letter-spacing: 0.5px;
}

.pricing__price-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.pricing__amount {
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  color: #FFD212;
}

.pricing__note {
  font-size: 18px;
  color: #888888;
}

.pricing__desc {
  font-size: 16px;
  line-height: 1.8;
  color: #BBBBBB;
  max-width: 321px;
}

.pricing__perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing__perks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: #CCCCCC;
}

.pricing__perks li .icon {
  color: #FFD212;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing__perk--bonus {
  margin-top: 4px;
  padding: 12px 16px;
  background: rgba(255, 210, 18, 0.06);
  border: 1px solid rgba(255, 210, 18, 0.2);
  border-radius: 10px;
  color: #FFFFFF !important;
}

.pricing__perk--bonus .icon {
  color: #FFD212;
}

/* ══════════════════════════════════════════════════════════════
   BOOK / FINAL CTA
══════════════════════════════════════════════════════════════ */
.book {
  background: #0C0C0C;
  background-image: radial-gradient(ellipse at center top, rgba(255, 210, 18, 0.06) 0%, transparent 55%);
  padding-top: 100px;
  padding-bottom: 100px;
}

.book__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.book__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.book__eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: #FFD212;
  letter-spacing: 2.5px;
}

.book__title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  color: #FFFFFF;
  max-width: 760px;
}

.book__sub {
  font-size: 17px;
  color: #888888;
  text-align: center;
}

.book__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 520px;
  padding: 40px;
  background: #141414;
  border-radius: 20px;
  border: 1px solid #2A2A2A;
}

.book__form--booking-only {
  align-items: stretch;
}

.book__form--booking-only .form-row,
.book__form--booking-only > .form-field,
.book__form--booking-only .form__stripe {
  display: none;
}

.book__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #666666;
}

.book__divider::before,
.book__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #2A2A2A;
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.form-field__label {
  font-size: 13px;
  font-weight: 700;
  color: #888888;
}

.form-field__input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  background: #1E1E1E;
  border: 1px solid #333333;
  border-radius: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: #FFFFFF;
  outline: none;
  transition: border-color 0.2s;
}

.form-field__input::placeholder { color: #555555; }
.form-field__input:focus { border-color: #FFD212; }

.form-field__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.form-field__icon {
  position: absolute;
  left: 16px;
  font-size: 15px;
  color: #444444;
  pointer-events: none;
}

.form-field__input--icon { padding-left: 40px; }

.form-field__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-field__select option {
  background: #1E1E1E;
  color: #FFFFFF;
}

.form__stripe {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: #555555;
}

.form__stripe-lock { font-size: 12px; }

.form__stripe-badge {
  display: inline-block;
  padding: 3px 8px;
  background: #6772E5;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #FFFFFF;
}

/* ══════════════════════════════════════════════════════════════
   PAYMENT SUCCESS PAGE
══════════════════════════════════════════════════════════════ */
.success {
  background: #0C0C0C;
  background-image: radial-gradient(ellipse at center top, rgba(255, 210, 18, 0.06) 0%, transparent 55%);
  padding-top: 120px;
  padding-bottom: 120px;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
}

.success__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.success__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 560px;
  padding: 48px 40px;
  background: #141414;
  border-radius: 20px;
  border: 1px solid #2A2A2A;
  text-align: center;
}

.success__icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 210, 18, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.success__icon {
  font-size: 36px;
  color: #FFD212;
}

.success__eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: #FFD212;
  letter-spacing: 2.5px;
}

.success__title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.2;
  color: #FFFFFF;
}

.success__sub {
  font-size: 17px;
  color: #888888;
  line-height: 1.6;
}

.success__btn {
  margin-top: 8px;
}

.success__ref {
  font-size: 12px;
  color: #555555;
  word-break: break-all;
  margin-top: 8px;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer {
  background: #111111;
  padding-top: 80px;
  padding-bottom: 48px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 100px;
  width: 100%;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 280px;
}

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

.footer__tagline {
  font-size: 14px;
  line-height: 1.7;
  color: #888888;
}

.footer__links {
  display: flex;
  gap: 80px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col-title {
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}

.footer__col a {
  font-size: 14px;
  color: #666666;
  transition: color 0.2s;
}
.footer__col a:hover { color: #AAAAAA; }

.footer__link--gold { color: #FFD212 !important; }
.footer__link--gold:hover { color: #FFE566 !important; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid #222222;
}

.footer__copy {
  font-size: 13px;
  color: #FFD212;
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 13px;
  color: #555555;
  transition: color 0.2s;
}
.footer__legal a:hover { color: #888888; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .focus-grid--2col { grid-template-columns: 1fr; }
  .how__steps { flex-direction: column; }
  .good-fit__cards { flex-direction: column; }
  .expert__inner { gap: 60px; }
  .expert__img-col, .expert__img-box { width: 360px; }
  .hero__headline { font-size: 56px; }
}

@media (max-width: 768px) {
  .container { padding-left: 24px; padding-right: 24px; }
  .nav__links { display: none; }

  .hero { padding-top: 80px; padding-bottom: 80px; }
  .hero__headline { font-size: 40px; }
  .hero__sub { font-size: 18px; }

  .what { padding-top: 80px; padding-bottom: 80px; }
  .what__inner { gap: 40px; }
  .what__card { padding: 32px 24px; }
  .what__card--cols { flex-direction: column; padding: 0; }
  .what__col { padding: 32px 28px; }
  .what__col-divider { width: 100%; height: 1px; align-self: auto; }

  .testimonial { padding-top: 80px; padding-bottom: 80px; }
  .testimonial__quote { font-size: 20px; }

  .section-header__title { font-size: 32px !important; }
  .section-header__sub { font-size: 16px !important; }

  .stats-row { flex-direction: column; }

  .expert { padding-top: 80px; padding-bottom: 80px; }
  .expert__inner { flex-direction: column; gap: 40px; }
  .expert__img-col { width: 100%; }
  .expert__img-box { width: 100%; height: 320px; }
  .expert__title { font-size: 32px; }
  .expert__achievement { padding: 14px 12px; }
  .expert__achievement-num { font-size: 18px; }
  .expert__achievement-desc { font-size: 9px; }

  .how__title, .good-fit__title, .pricing__title, .book__title { font-size: 32px !important; }

  .focus { padding-top: 80px; padding-bottom: 80px; }
  .focus__inner { gap: 40px; }

  .pricing { padding-top: 80px; padding-bottom: 80px; }
  .pricing__card { flex-direction: column; }
  .pricing__left { flex: none; padding: 40px 24px; border-right: none; border-bottom: 1px solid #2A2A2A; }
  .pricing__right { padding: 40px 24px; }
  .pricing__amount { font-size: 52px; }

  .book__form { width: 100%; padding: 28px 20px; }
  .form-row { flex-direction: column; }

  .success { padding-top: 80px; padding-bottom: 80px; }
  .success__card { padding: 32px 24px; }
  .success__title { font-size: 26px; }

  .footer__top { flex-direction: column; gap: 40px; }
  .footer__links { gap: 40px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
}
