/* ===================================
   Patient Flow Toolkit — Brand Styles
   =================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ── CSS Variables ── */
:root {
  --deep-teal: #0A6E6E;
  --deep-teal-light: #0d8a8a;
  --warm-charcoal: #2D2D2D;
  --warm-white: #FAF7F2;
  --soft-gold: #C9A96E;
  --soft-gold-text: #9E8245;
  --muted-coral: #D4796A;
  --muted-coral-hover: #c0624f;
  --light-warm-grey: #E8E4DF;
  --medium-warm-grey: #706B66;
  --font-main: 'Plus Jakarta Sans', sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  color: var(--warm-charcoal);
  background: var(--warm-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--deep-teal);
  text-decoration: none;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-main);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--warm-charcoal);
}

h1 { font-size: clamp(1.75rem, 5vw, 2.75rem); }
h2 { font-size: clamp(1.4rem, 4vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 3vw, 1.5rem); }
h4 { font-size: clamp(1rem, 2.5vw, 1.2rem); }

p {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: var(--warm-charcoal);
  margin-bottom: 1rem;
}

.text-teal { color: var(--deep-teal); }
.text-coral { color: var(--muted-coral); }
.text-gold { color: var(--soft-gold-text); }
.text-grey { color: var(--medium-warm-grey); }
.text-white { color: var(--warm-white); }

.highlight {
  background: linear-gradient(180deg, transparent 60%, rgba(10, 110, 110, 0.15) 60%);
  padding: 0 4px;
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
}

.section--dark {
  background: var(--warm-charcoal);
  color: var(--warm-white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark p {
  color: var(--warm-white);
}

.section--dark .text-teal {
  color: #2BBCBC;
}

.section--grey {
  background: var(--light-warm-grey);
}

.section--teal {
  background: var(--deep-teal);
  color: var(--warm-white);
}

.section--teal h1,
.section--teal h2,
.section--teal h3,
.section--teal h4,
.section--teal p {
  color: var(--warm-white);
}

.section--teal .text-teal {
  color: var(--warm-white);
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn--coral {
  background: var(--muted-coral);
  color: var(--warm-white);
  box-shadow: 0 4px 15px rgba(212, 121, 106, 0.35);
}

.btn--coral:hover {
  background: var(--muted-coral-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 121, 106, 0.45);
}

.btn--teal {
  background: var(--deep-teal);
  color: var(--warm-white);
  box-shadow: 0 4px 15px rgba(10, 110, 110, 0.3);
}

.btn--teal:hover {
  background: var(--deep-teal-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 110, 110, 0.4);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--deep-teal);
  color: var(--deep-teal);
}

.btn--outline:hover {
  background: var(--deep-teal);
  color: var(--warm-white);
}

.btn--full {
  display: block;
  width: 100%;
}

.btn--large {
  padding: 20px 40px;
  font-size: 1.1rem;
}

/* ── Badges ── */
.badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge--teal {
  background: rgba(10, 110, 110, 0.12);
  color: var(--deep-teal);
}

.badge--gold {
  background: rgba(201, 169, 110, 0.15);
  color: var(--soft-gold-text);
}

.badge--coral {
  background: rgba(212, 121, 106, 0.15);
  color: var(--muted-coral);
}

/* ── Cards ── */
.card {
  background: var(--warm-white);
  border-radius: 12px;
  padding: 28px 24px;
  border: 1px solid var(--light-warm-grey);
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 30px rgba(45, 45, 45, 0.08);
}

.card--dark {
  background: var(--warm-charcoal);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--warm-white);
}

.card--dark h3,
.card--dark h4,
.card--dark p {
  color: var(--warm-white);
}

/* ── Hero ── */
.hero {
  padding: 48px 0 40px;
  text-align: center;
}

.hero__label {
  display: inline-block;
  margin-bottom: 12px;
}

.hero h1 {
  margin-bottom: 14px;
  font-size: clamp(1.4rem, 4vw, 2.1rem);
}

.hero__sub {
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  color: var(--medium-warm-grey);
  margin-bottom: 24px;
  line-height: 1.6;
}

.hero__mockup {
  max-width: 500px;
  margin: 0 auto 24px;
  border-radius: 12px;
  overflow: hidden;
}

.hero__mockup-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--warm-charcoal);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
}

.hero__mockup-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 30px,
    rgba(10, 110, 110, 0.03) 30px,
    rgba(10, 110, 110, 0.03) 60px
  );
}

/* ── Stack / Offer Table ── */
.stack-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.stack-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--light-warm-grey);
}

.section--dark .stack-item {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.stack-item__name {
  font-weight: 600;
  font-size: 0.95rem;
  flex: 1;
  padding-right: 16px;
}

.stack-item__value {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  font-size: 0.9rem;
  white-space: nowrap;
}

.stack-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-weight: 800;
  font-size: 1.1rem;
  border-bottom: 2px solid var(--deep-teal);
}

.stack-total__value {
  color: var(--deep-teal);
}

/* ── Price Reveal ── */
.price-reveal {
  text-align: center;
  padding: 40px 0;
}

.price-reveal__old {
  font-size: 1.4rem;
  color: var(--medium-warm-grey);
  text-decoration: line-through;
  margin-bottom: 8px;
}

.price-reveal__new {
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  font-weight: 800;
  color: var(--deep-teal);
  line-height: 1;
  margin-bottom: 8px;
}

.price-reveal__note {
  font-size: 0.9rem;
  color: var(--medium-warm-grey);
}

/* ── Countdown Timer ── */
.timer {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.timer__block {
  text-align: center;
  min-width: 60px;
}

.timer__number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--deep-teal);
  background: var(--warm-white);
  border: 2px solid var(--light-warm-grey);
  border-radius: 8px;
  padding: 8px 12px;
  line-height: 1;
}

.section--dark .timer__number {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--warm-white);
}

.timer__label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--medium-warm-grey);
  margin-top: 6px;
}

.section--dark .timer__label {
  color: rgba(255, 255, 255, 0.5);
}

.section--dark .price-reveal__note {
  color: rgba(255, 255, 255, 0.5);
}

.section--dark .price-reveal__old {
  color: rgba(255, 255, 255, 0.4);
}

/* ── Separator ── */
.divider {
  height: 1px;
  background: var(--light-warm-grey);
  border: none;
  margin: 0;
}

.divider--teal {
  height: 3px;
  background: var(--deep-teal);
}

/* ── Spacer ── */
.spacer-sm { height: 16px; }
.spacer-md { height: 32px; }
.spacer-lg { height: 48px; }

/* ── Testimonial ── */
.testimonial {
  padding: 24px;
  background: var(--warm-white);
  border-radius: 12px;
  border-left: 4px solid var(--deep-teal);
  margin-bottom: 20px;
}

.testimonial__quote {
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 12px;
  line-height: 1.6;
}

.testimonial__author {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--deep-teal);
}

/* ── Steps ── */
.steps {
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
  margin: 0;
}

.step {
  counter-increment: step-counter;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.step__number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--deep-teal);
  color: var(--warm-white);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step__content h4 {
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 4px;
  font-size: 1rem;
}

.step__content p {
  font-size: 0.9rem;
  color: var(--medium-warm-grey);
  margin-bottom: 0;
}

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--light-warm-grey);
  padding: 20px 0;
}

.faq-item__question {
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-item__question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--deep-teal);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-item__question::after {
  content: '−';
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 0.95rem;
  color: var(--medium-warm-grey);
  line-height: 1.7;
}

.faq-item.active .faq-item__answer {
  max-height: 500px;
  padding-top: 12px;
}

/* ── Guarantee Box ── */
.guarantee-box {
  border: 2px solid var(--deep-teal);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
}

.guarantee-box__icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.guarantee-box h3 {
  color: var(--deep-teal);
  margin-bottom: 12px;
}

.guarantee-box p {
  color: var(--medium-warm-grey);
  font-size: 0.95rem;
}

/* ── About Section ── */
.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.about__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--light-warm-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 2rem;
  color: var(--deep-teal);
  flex-shrink: 0;
  border: 3px solid var(--deep-teal);
  overflow: hidden;
}

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__text p {
  font-size: 0.95rem;
  color: var(--medium-warm-grey);
}

.about__text strong {
  color: var(--warm-charcoal);
}

/* ── Checkout Form ── */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  color: var(--warm-charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--light-warm-grey);
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--warm-charcoal);
  background: var(--warm-white);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--deep-teal);
}

.form-group input::placeholder {
  color: var(--medium-warm-grey);
}

.form-group .file-upload {
  position: relative;
  width: 100%;
  padding: 32px 16px;
  border: 2px dashed var(--light-warm-grey);
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group .file-upload:hover {
  border-color: var(--deep-teal);
  background: rgba(10, 110, 110, 0.03);
}

.form-group .file-upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.form-group .file-upload__label {
  font-weight: 600;
  color: var(--deep-teal);
  font-size: 0.95rem;
}

.form-group .file-upload__hint {
  font-size: 0.8rem;
  color: var(--medium-warm-grey);
  margin-top: 4px;
}

/* ── QR Code Box ── */
.qr-box {
  text-align: center;
  padding: 32px 24px;
  background: var(--warm-white);
  border: 2px solid var(--light-warm-grey);
  border-radius: 12px;
}

.qr-box__placeholder {
  width: 200px;
  height: 200px;
  margin: 0 auto 16px;
  background: var(--warm-charcoal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-white);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.qr-box__note {
  font-size: 0.85rem;
  color: var(--medium-warm-grey);
}

/* ── Reservation Notice ── */
.reservation-notice {
  background: rgba(10, 110, 110, 0.06);
  border: 2px solid var(--deep-teal);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
}

.reservation-notice__icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.reservation-notice h3 {
  color: var(--deep-teal);
  font-size: 1.1rem;
  margin-bottom: 12px;
  text-transform: none;
  letter-spacing: 0;
}

.reservation-notice p {
  font-size: 0.9rem;
  color: var(--warm-charcoal);
  margin-bottom: 8px;
}

.reservation-notice .bonus-tag {
  display: inline-block;
  background: var(--deep-teal);
  color: var(--warm-white);
  padding: 6px 16px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 8px;
}

/* ── Payment Partners ── */
.payment-partners {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 12px 0;
}

.payment-partners__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--medium-warm-grey);
}

/* ── Sticky CTA Bar (Mobile) ── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--warm-white);
  padding: 12px 20px;
  box-shadow: 0 -4px 20px rgba(45, 45, 45, 0.1);
  z-index: 100;
  display: none;
}

.sticky-cta .btn {
  width: 100%;
}

/* ── Section Header (centered) ── */
.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.section-header h2 {
  margin-bottom: 12px;
}

.section-header p {
  color: var(--medium-warm-grey);
  max-width: 540px;
  margin: 0 auto;
}

/* ── Bonus Card ── */
.bonus-card {
  background: var(--warm-white);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
  border: 1px solid var(--light-warm-grey);
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: 'FREE';
  position: absolute;
  top: 12px;
  right: -28px;
  background: var(--muted-coral);
  color: var(--warm-white);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 32px;
  transform: rotate(45deg);
  letter-spacing: 0.1em;
}

.bonus-card h4 {
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 8px;
  font-size: 1rem;
  color: var(--deep-teal);
}

.bonus-card p {
  font-size: 0.9rem;
  color: var(--medium-warm-grey);
  margin-bottom: 0;
}

.bonus-card .value-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--soft-gold-text);
  margin-bottom: 8px;
}

/* ── Footer ── */
.footer {
  padding: 40px 0;
  text-align: center;
  background: var(--warm-charcoal);
  color: var(--medium-warm-grey);
}

.footer p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
}

.footer a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: underline;
  font-size: 0.8rem;
}

.footer a:hover {
  color: var(--warm-white);
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* ── Inline Lists ── */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.feature-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 0.95rem;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--deep-teal);
  font-weight: 800;
}

/* ── Comparison Cards ── */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.compare__card {
  border-radius: 12px;
  padding: 24px 20px;
  position: relative;
}

.compare__card--bad {
  background: rgba(212, 121, 106, 0.08);
  border: 1px solid rgba(212, 121, 106, 0.25);
}

.compare__card--good {
  background: rgba(10, 110, 110, 0.1);
  border: 1px solid rgba(10, 110, 110, 0.3);
}

.compare__icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.compare__title {
  text-transform: none;
  letter-spacing: 0;
  font-size: 1rem;
  margin-bottom: 4px;
}

.compare__title--bad { color: #E8977A; }
.compare__title--good { color: #2BBCBC; }

.compare__desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6) !important;
  margin-bottom: 12px;
}

.compare__list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.compare__list li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
}

.compare__card--bad .compare__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--muted-coral);
  font-weight: 700;
}

.compare__card--good .compare__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2BBCBC;
  font-weight: 700;
}

.compare__result {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 6px;
  line-height: 1.4;
}

.compare__result-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
  opacity: 0.7;
}

.compare__result--bad {
  background: rgba(212, 121, 106, 0.12);
  color: #E8977A;
}

.compare__result--good {
  background: rgba(10, 110, 110, 0.15);
  color: #2BBCBC;
}

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

/* ── Stat Grid ── */
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 20px 16px;
  text-align: center;
}

.stat-card__number {
  display: block;
  font-size: clamp(2rem, 6vw, 2.6rem);
  font-weight: 800;
  color: #2BBCBC;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card__text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8) !important;
  margin-bottom: 8px;
  line-height: 1.4;
}

.stat-card__source {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

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

/* ── Signals List (product intro) ── */
.signals-list {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 8px 20px;
  border: 1px solid var(--light-warm-grey);
}

.signal-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--light-warm-grey);
}

.signal-item:last-child {
  border-bottom: none;
}

.signal-item__num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--deep-teal);
  color: var(--warm-white);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.signal-item span {
  font-size: 0.92rem;
  color: var(--warm-charcoal);
}

/* ── Landing page: feature list inside bonus cards ── */
.bonus-card .feature-list {
  margin-bottom: 0;
}

.bonus-card .feature-list li {
  color: var(--medium-warm-grey);
}

/* ── Landing page: dark section overrides ── */
.section--dark .feature-list li {
  color: rgba(255, 255, 255, 0.7);
}

.section--dark .feature-list li::before {
  color: var(--soft-gold);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .section {
    padding: 48px 0;
  }

  .hero {
    padding: 36px 0 32px;
  }

  .container {
    padding: 0 16px;
  }

  .btn--large {
    padding: 18px 28px;
    font-size: 1rem;
  }

  .sticky-cta {
    display: block;
  }

  body {
    padding-bottom: 80px;
  }
}

@media (min-width: 769px) {
  .container {
    padding: 0 24px;
  }
}

/* ── Animations ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.6s ease forwards;
}

/* ── Checkout specific ── */
.checkout-header {
  text-align: center;
  padding: 40px 0 24px;
}

.checkout-header h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 8px;
}

.checkout-header p {
  color: var(--medium-warm-grey);
}

/* ── Payment Steps (checkout) ── */
.payment-steps {
  counter-reset: pay-step;
  list-style: none;
  padding: 0;
  margin: 0;
}

.payment-step {
  counter-increment: pay-step;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--light-warm-grey);
}

.payment-step:last-child {
  border-bottom: none;
}

.payment-step__number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--deep-teal);
  color: var(--warm-white);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-step__content h4 {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.payment-step__content p {
  font-size: 0.85rem;
  color: var(--medium-warm-grey);
  margin-bottom: 0;
}

/* ── Navbar ── */
.topbar {
  background: var(--warm-charcoal);
  padding: 6px 0;
  text-align: center;
}

.topbar__text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--warm-white);
  letter-spacing: 0.02em;
  margin-bottom: 0;
}

.topbar__text span {
  color: var(--soft-gold);
}

/* ── Pulse animation for CTA ── */
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(212, 121, 106, 0.35); }
  50% { box-shadow: 0 4px 30px rgba(212, 121, 106, 0.6); }
}

.btn--pulse {
  animation: pulse 2s infinite;
}

/* ── Text alignment helpers ── */
.text-center { text-align: center; }
.text-left { text-align: left; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
