/* =========================
   1. ROOT / VARIABLES
========================= */
:root {
  --black: #000000;
  --white: #ffffff;
  --white-soft: #f7f2fa;
  --purple-primary: #6b0f8f;
  --purple-secondary: #6750a4;
  --purple-dark: #4f378a;
  --purple-light: #eaddff;
  --grey: #2c2c2c;

  --font-heading: 'Alumni Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-ui: 'Roboto', sans-serif;
  --font-accent: 'Bricolage Grotesque', sans-serif;

  --container-width: 1512px;
  --container-padding-desktop: 48px;
  --container-padding-tablet: 28px;
  --container-padding-mobile: 16px;

  --radius-sm: 10px;
  --radius-md: 18px;

  --transition-fast: 0.2s ease;
}

/* =========================
   2. RESET / GLOBAL
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

/* =========================
   3. LAYOUT / UTILITIES
========================= */
.container {
  width: min(100% - (var(--container-padding-desktop) * 2), var(--container-width));
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

/* =========================
   4. TYPOGRAPHY / COMPONENTS
========================= */
.heading-display {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.heading-display strong {
  font-weight: 700;
}

.text-body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
}

.btn {
  min-width: 238px;
  min-height: 64px;
  padding: 16px 28px;
  border: 0;
  border-radius: var(--radius-md);
  background: #e9e5ec;
  color: var(--purple-secondary);
  font-family: var(--font-ui);
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

.btn-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex: 0 0 auto;
  transition: filter 0.2s ease;
}

/* =========================
   5. HEADER
========================= */
.site-header {
  padding: 32px 0 12px;
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-logo img {
  width: 118px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  color: var(--white);
  padding: 10px 18px;
  border-radius: 10px;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.nav-link:hover {
  background: var(--purple-primary);
  transform: translateY(-1px);
}

/* =========================
   6. HERO
========================= */
.hero {
  padding: 12px 0 0;
}

.hero-inner {
  position: relative;
  width: 1512px;
  max-width: 100%;
  min-height: 422px;
  display: grid;
  grid-template-columns: 58% 42%;
  align-items: end;
  gap: 0;
}

.hero-art {
  position: relative;
  align-self: end;
  z-index: 1;
}

.hero-art img {
  width: 820px;
  max-width: none;
  height: auto;
  object-fit: contain;
}

.hero-content {
  position: relative;
  align-self: center;
  max-width: 620px;
  padding-bottom: 0;
  margin-left: -80px;
  z-index: 3;
}

.hero-title {
  font-size: 55px;
  line-height: 0.95;
  color: var(--white);
}

.hero-title span {
  display: block;
  margin-top: 20px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.hero-btn {
  min-width: 238px;
  min-height: 64px;
  padding: 16px 28px;
  border-radius: 18px;
  background: #e9e5ec;
  color: var(--purple-secondary);
  font-family: var(--font-ui);
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.hero-btn:hover {
  background: var(--purple-primary);
  color: var(--white);
}

.hero-btn:hover .btn-icon {
  filter: brightness(0) invert(1);
}

.hero-btn:hover {
  background: var(--purple-primary);
  color: var(--white);
  transform: translateY(-1px);
}

.hero-btn:hover .btn-icon {
  filter: brightness(0) invert(1);
}

/* =========================
   7. STATS SECTION
========================= */
.stats-section {
  padding: 92px 0 120px;
  min-height: 589px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 240px);
  justify-content: center;
  gap: 45px;
}

.stat-card {
  width: 240px;
  height: 167px;
  background: var(--purple-primary);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 18px 18px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transform-origin: center;
  cursor: default;
}

.stat-card:hover {
  transform: scale(1.03);
  box-shadow:
    0 0 12px rgba(255,255,255,0.8),
    0 0 35px rgba(255,255,255,0.6),
    0 12px 40px rgba(0,0,0,0.45);
}
.stat-card__icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 18px;
}

.stat-card__value {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  color: var(--white);
  margin-bottom: 10px;
}

.stat-card__label {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--white);
}

.stats-copy {
  display: flex;
  justify-content: center;
  margin-top: 92px;
  text-align: center;
}

.stats-copy__text {
  margin: 0;
  max-width: 900px;
  font-family: var(--font-accent);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.18;
  color: var(--white);
}

/* =========================
   8. TESTIMONIALS SECTION
========================= */
.testimonials-section {
  padding: 88px 0 110px;
  min-height: 589px;
}

.testimonials-header {
  text-align: center;
}

.testimonials-title {
  font-size: 53px;
  font-weight: 700;
  line-height: 0.95;
  color: var(--white);
}

.testimonials-subtitle {
  margin: 18px 0 0;
  font-family: var(--font-accent);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 407px);
  justify-content: center;
  gap: 31px;
  margin-top: 64px;
}

.testimonial-card {
  width: 407px;
  height: 205px;
  border-radius: var(--radius-sm);
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transform-origin: center;
}

.testimonial-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 0 18px rgba(255,255,255,0.9),
    0 0 50px rgba(255,255,255,0.6),
    0 16px 45px rgba(0,0,0,0.5);
}

.testimonial-card--purple {
  background: var(--purple-primary);
  color: var(--white);
}

.testimonial-card--light {
  background: #e8e8e8;
  color: #1f1f1f;
}

.testimonial-quote {
  margin: 0;
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.12;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  object-fit: cover;
  flex: 0 0 auto;
}

.testimonial-person {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-result {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.testimonial-name {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

/* =========================
   9. METHOD SECTION
========================= */
.method-section {
  min-height: 1040px;
  padding: 56px 0 120px;
}

.method-header {
  text-align: center;
}

.method-title {
  font-size: 53px;
  font-weight: 700;
  line-height: 0.95;
  color: var(--white);
}

.method-subtitle {
  margin: 18px 0 0;
  font-family: var(--font-accent);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--white);
}

.method-list {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.method-card {
  width: 367px;
  min-height: 100px;
  background: #eee9f1;
  border-radius: var(--radius-sm);
  display: grid;
  grid-template-columns: 34px 1fr 72px;
  align-items: center;
  column-gap: 14px;
  padding: 14px 14px 14px 14px;
}

.method-card,
.how-card {
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s ease;
  transform-origin: center;
  will-change: transform, box-shadow;
}

.method-card:hover,
.how-card:hover {
  transform: translateY(-10px) scale(1.07);
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
}

.method-card__number {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #ddd0f6;
  color: var(--purple-secondary);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.method-card__content {
  min-width: 0;
}

.method-card__title {
  margin: 0;
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
  color: #242424;
}

.method-card__text {
  margin: 8px 0 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  color: #333333;
}

.method-card__image {
  width: 72px;
  height: 72px;
  object-fit: contain;
  justify-self: end;
}

/* =========================
   10. PRICING SECTION
========================= */
.pricing-section {
  padding: 78px 0 120px;
}

.pricing-header {
  text-align: center;
}

.pricing-title {
  font-size: 53px;
  font-weight: 700;
  line-height: 0.9;
  color: var(--white);
}

.pricing-grid {
  margin-top: 78px;
  display: grid;
  grid-template-columns: 324px 362px 494px;
  justify-content: center;
  align-items: start;
  gap: 36px;
}

.pricing-card {
  height: 455px;
  border-radius: 10px;
  overflow: hidden;
}

.pricing-card {
  transition: transform 0.28s cubic-bezier(.2,.8,.2,1), box-shadow 0.28s ease, border-color 0.28s ease;
  transform-origin: center;
  will-change: transform, box-shadow;
}

.pricing-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 18px 40px rgba(0,0,0,0.38);
}

.pricing-card--featured:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 22px 50px rgba(0,0,0,0.45);
  border-color: #ffffff;
}

.pricing-card__button {
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.pricing-card__button:hover {
  background: var(--purple-primary);
  color: var(--white);
  transform: translateY(-1px);
}

.pricing-card--featured .pricing-card__button {
  background: var(--white);
  color: var(--purple-primary);
}

.pricing-card--featured .pricing-card__button:hover {
  background: var(--purple-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.pricing-card__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px 26px 24px;
}

.pricing-card--light {
  background: #efefef;
  color: #232323;
}

.pricing-card--featured {
  background: var(--purple-primary);
  color: var(--white);
  border: 3px solid #f0e8ff;
}

.pricing-card--tier1 {
  width: 324px;
}

.pricing-card--tier2 {
  width: 362px;
}

.pricing-card--tier3 {
  width: 494px;
}

.pricing-card__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 600;
  line-height: 0.95;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  letter-spacing: -0.4px;
}

.pricing-card__price {
  margin-top: 14px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  font-family: var(--font-body);
  line-height: 1;
}

.pricing-card__currency {
  font-size: 24px;
  font-weight: 700;
}

.pricing-card__amount {
  font-size: 48px;
  font-weight: 700;
}

.pricing-card__suffix {
  font-size: 20px;
  font-weight: 400;
}

.pricing-card__features {
  margin: 18px 0 0;
  padding-left: 22px;
  list-style: disc;
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  flex-grow: 1;
}

.pricing-card__features li + li {
  margin-top: 8px;
}

.pricing-card__note {
  margin: 16px 0 12px;
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
}

.pricing-card__note--muted {
  color: #6a6a6a;
}

.pricing-card__button {
  width: 260px;
  height: 48px;
  margin: auto auto 0;
  border-radius: 6px;
  background: #2b2b2b;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.pricing-card__button:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

/* =========================
   11. HOW IT WORKS SECTION
========================= */
.how-section {
  min-height: 908px;
  padding: 56px 0 110px;
}

.how-header {
  text-align: center;
}

.how-title {
  font-size: 53px;
  font-weight: 700;
  line-height: 0.95;
  color: var(--white);
}

.how-subtitle {
  margin: 18px 0 0;
  font-family: var(--font-accent);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--white);
}

.how-list {
  margin-top: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.how-card {
  width: 391px;
  min-height: 108px;
  background: #eee9f1;
  border: 4px solid var(--purple-primary);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 38px 1fr 88px;
  align-items: center;
  column-gap: 14px;
  padding: 16px 16px 16px 16px;
}

.how-card__number {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #ddd0f6;
  color: var(--purple-secondary);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-card__content {
  min-width: 0;
}

.how-card__title {
  margin: 0;
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.12;
  color: #242424;
  text-transform: uppercase;
}

.how-card__image {
  width: 88px;
  height: 88px;
  object-fit: contain;
  justify-self: end;
}

/* =========================
   12. FAQ SECTION
========================= */

.faq-section {
  padding: 120px 0 140px;
}

.faq-container {
  max-width: 920px;
}

.faq-title {
  text-align: center;
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 60px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.faq-question {
  width: 100%;
  padding: 26px 0;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 20px;
}

.faq-question:hover {
  opacity: 0.85;
}

.faq-icon {
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  flex: 0 0 auto;
  margin-right: 2px;
}

.faq-item.active .faq-icon {
  transform: rotate(135deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-accent);
  font-size: 18px;
  line-height: 1.6;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  margin: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

/* =========================
   13. FOOTER
========================= */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 42px 0 28px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}

.footer-left {
  display: flex;
  gap: 72px;
  flex-wrap: wrap;
}

.footer-group {
  min-width: 180px;
}

.footer-heading {
  margin: 0 0 18px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li + li {
  margin-top: 12px;
}

.footer-links a {
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.78);
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-right {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  min-width: 180px;
}

.footer-logo {
  width: 112px;
  height: auto;
}

.footer-bottom {
  margin-top: 44px;
}

.footer-note {
  margin: 0;
  font-family: var(--font-accent);
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.58);
}

/* =========================
   14. RESPONSIVE
========================= */
@media (max-width: 1200px) {
  .container {
    width: min(100% - (var(--container-padding-tablet) * 2), var(--container-width));
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 8px;
  }

  .hero-art {
    order: 1;
  }

  .hero-content {
    order: 2;
    max-width: 100%;
    margin-left: 0;
    padding-bottom: 0;
  }

  .hero-art img {
    width: min(100%, 720px);
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-title {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
    gap: 20px;
  }

  .site-header {
    padding-top: 24px;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    gap: 14px;
  }

    .stats-grid {
    grid-template-columns: repeat(2, 240px);
    gap: 28px;
  }

  .stats-section {
    min-height: auto;
    padding: 72px 0 96px;
  }

  .stats-copy {
    margin-top: 64px;
  }

  .stats-copy__text {
    max-width: 760px;
    font-size: 22px;
    line-height: 1.25;
  }

    .testimonials-section {
    min-height: auto;
    padding: 72px 0 96px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 407px);
    gap: 24px;
    margin-top: 48px;
  }

  .testimonials-grid .testimonial-card:last-child {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .testimonials-title {
    font-size: 46px;
  }

  .testimonials-subtitle {
    font-size: 22px;
  }
    .method-section {
    min-height: auto;
    padding: 64px 0 96px;
  }

  .method-title {
    font-size: 46px;
  }

  .method-subtitle {
    font-size: 22px;
  }

  .method-list {
    gap: 28px;
    margin-top: 36px;
  }

    .pricing-section {
    padding: 72px 0 96px;
  }

  .pricing-title {
    font-size: 72px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 26px;
    margin-top: 56px;
  }

  .pricing-card,
  .pricing-card--tier1,
  .pricing-card--tier2,
  .pricing-card--tier3 {
    width: 100%;
    max-width: 494px;
    height: auto;
    min-height: 455px;
  }

  .how-section {
    min-height: auto;
    padding: 64px 0 96px;
  }

  .how-title {
    font-size: 46px;
  }

  .how-subtitle {
    font-size: 22px;
  }

  .how-list {
    margin-top: 34px;
  }

  .footer-top {
    gap: 36px;
  }

  .footer-left {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - (var(--container-padding-mobile) * 2), var(--container-width));
  }

  .site-logo img {
    width: 96px;
  }

  .site-nav {
    gap: 10px 14px;
  }

  .nav-link {
    font-size: 13px;
  }

  .nav-link.is-active {
    padding: 10px 14px;
  }

  .hero {
    padding: 24px 0 28px;
  }

  .hero-title {
    font-size: clamp(34px, 10vw, 52px);
    line-height: 1;
  }

  .hero-title span {
    margin-top: 12px;
  }

  .hero-actions {
    margin-top: 28px;
    gap: 14px;
  }

  .btn,
  .hero-btn {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    font-size: 15px;
    padding: 14px 18px;
  }

    .stats-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
  }

  .stat-card {
    width: min(100%, 320px);
    height: auto;
    min-height: 167px;
  }

  .stat-card__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
  }

  .stat-card__value {
    font-size: 22px;
  }

  .stat-card__label {
    font-size: 16px;
  }

  .stats-section {
    padding: 56px 0 72px;
  }

  .stats-copy {
    margin-top: 40px;
  }

  .stats-copy__text {
    max-width: 100%;
    font-size: 18px;
    line-height: 1.4;
  }
    .testimonials-section {
    padding: 56px 0 72px;
  }

  .testimonials-title {
    font-size: 38px;
    line-height: 1;
  }

  .testimonials-subtitle {
    margin-top: 12px;
    font-size: 18px;
    line-height: 1.35;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 36px;
  }

  .testimonial-card,
  .testimonials-grid .testimonial-card:last-child {
    width: 100%;
    max-width: 407px;
    height: auto;
    min-height: 205px;
    justify-self: center;
  }

  .testimonial-quote {
    font-size: 20px;
    line-height: 1.2;
  }

  .testimonial-result,
  .testimonial-name {
    font-size: 15px;
  }
    .method-section {
    padding: 56px 0 72px;
  }

  .method-title {
    font-size: 38px;
    line-height: 1;
  }

  .method-subtitle {
    margin-top: 12px;
    font-size: 18px;
    line-height: 1.35;
  }

  .method-list {
    gap: 18px;
    margin-top: 28px;
  }

  .method-card {
    width: 100%;
    max-width: 367px;
    grid-template-columns: 32px 1fr 56px;
    column-gap: 12px;
    padding: 14px 12px;
  }

  .method-card__number {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .method-card__title {
    font-size: 20px;
  }

  .method-card__text {
    font-size: 14px;
  }

  .method-card__image {
    width: 56px;
    height: 56px;
  }
    .pricing-section {
    padding: 56px 0 72px;
  }

  .pricing-title {
    font-size: 52px;
    line-height: 0.95;
  }

  .pricing-grid {
    margin-top: 36px;
    gap: 18px;
  }

  .pricing-card__inner {
    padding: 20px 18px 20px;
  }

  .pricing-card__title {
    font-size: 30px;
  }

  .pricing-card__currency {
    font-size: 20px;
  }

  .pricing-card__amount {
    font-size: 40px;
  }

  .pricing-card__suffix {
    font-size: 18px;
  }

  .pricing-card__features {
    font-size: 15px;
    line-height: 1.4;
  }

  .pricing-card__note {
    font-size: 15px;
  }

  .pricing-card__button {
    width: 100%;
    max-width: 260px;
    font-size: 18px;
  }

    .how-section {
    padding: 56px 0 72px;
  }

  .how-title {
    font-size: 38px;
    line-height: 1;
  }

  .how-subtitle {
    margin-top: 12px;
    font-size: 18px;
    line-height: 1.35;
  }

  .how-list {
    gap: 16px;
    margin-top: 28px;
  }

  .how-card {
    width: 100%;
    max-width: 391px;
    grid-template-columns: 34px 1fr 64px;
    column-gap: 12px;
    padding: 14px 12px;
    min-height: 96px;
  }

  .how-card__number {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  .how-card__title {
    font-size: 20px;
    line-height: 1.15;
  }

  .how-card__image {
    width: 64px;
    height: 64px;
  }
    .site-footer {
    padding: 36px 0 24px;
  }

  .footer-top {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 28px;
  }

  .footer-left {
    flex-direction: column;
    gap: 28px;
  }

  .footer-group {
    min-width: 0;
  }

  .footer-logo {
    width: 96px;
  }

  .footer-bottom {
    margin-top: 28px;
  }

  .footer-heading {
    font-size: 17px;
  }

  .footer-links a {
    font-size: 15px;
  }

  .footer-note {
    font-size: 14px;
  }
}

.woocommerce,
.woocommerce-page {
  background: var(--black);
  color: var(--white);
}

.woocommerce .site-main,
.woocommerce-page .site-main {
  width: min(100% - 96px, var(--container-width));
  margin: 0 auto;
  padding: 60px 0 100px;
}

.woocommerce div.product,
.woocommerce-page div.product,
.woocommerce-cart,
.woocommerce-checkout,
.woocommerce-account {
  color: var(--white);
}

.woocommerce div.product .product_title,
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce-tabs,
.woocommerce-tabs p,
.woocommerce-tabs li,
.woocommerce div.product .woocommerce-product-details__short-description,
.woocommerce div.product .stock,
.woocommerce div.product .sku_wrapper,
.woocommerce div.product .posted_in,
.woocommerce div.product .tagged_as {
  color: var(--white);
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background: var(--purple-primary);
  color: var(--white);
  border-radius: 10px;
  border: none;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
  background: var(--purple-dark);
  color: var(--white);
}

.woocommerce input,
.woocommerce textarea,
.woocommerce select,
.woocommerce-page input,
.woocommerce-page textarea,
.woocommerce-page select {
  background: #111;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
}

.woocommerce table.shop_table,
.woocommerce table.shop_table td,
.woocommerce table.shop_table th {
  border-color: rgba(255,255,255,0.12);
  color: var(--white);
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
  background: #111;
  color: var(--white);
  border-top-color: var(--purple-primary);
}

body.woocommerce-cart .wc-block-cart__submit-button,
body.woocommerce-cart .wc-block-components-button.wc-block-cart__submit-button,
body.woocommerce-cart a.wc-block-components-button.wc-block-cart__submit-button.contained {
  background: var(--purple-primary) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  text-decoration: none !important;
  transition: background-color 0.2s ease, transform 0.2s ease !important;
}

body.woocommerce-cart .wc-block-cart__submit-button:hover,
body.woocommerce-cart .wc-block-components-button.wc-block-cart__submit-button:hover,
body.woocommerce-cart a.wc-block-components-button.wc-block-cart__submit-button.contained:hover {
  background: var(--purple-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

body.woocommerce-cart .wc-block-cart__submit-button .wc-block-components-button__text,
body.woocommerce-cart .wc-block-components-button.wc-block-cart__submit-button .wc-block-components-button__text {
  color: var(--white) !important;
}

/* Woo Blocks cart CTA */
body.woocommerce-cart .wp-block-woocommerce-cart {
  --wp--preset--color--primary: #6b0f8f;
}

body.woocommerce-cart .wp-block-woocommerce-cart .wc-block-components-button:not(.is-link),
body.woocommerce-cart .wp-block-woocommerce-cart .wc-block-cart__submit-button,
body.woocommerce-cart .wp-block-woocommerce-cart a.wc-block-components-button {
  background-color: #6b0f8f !important;
  color: #ffffff !important;
  border: 0 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  text-decoration: none !important;
  transition: background-color 0.2s ease, transform 0.2s ease !important;
}

body.woocommerce-cart .wp-block-woocommerce-cart .wc-block-components-button:not(.is-link):hover,
body.woocommerce-cart .wp-block-woocommerce-cart .wc-block-cart__submit-button:hover,
body.woocommerce-cart .wp-block-woocommerce-cart a.wc-block-components-button:hover {
  background-color: #4f378a !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}

body.woocommerce-cart .wp-block-woocommerce-cart .wc-block-components-button__text {
  color: #ffffff !important;
}

a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained {
  background: #6b0f8f !important;
  background-color: #6b0f8f !important;
  background-image: none !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained:hover {
  background: #4f378a !important;
  background-color: #4f378a !important;
  background-image: none !important;
  color: #ffffff !important;
}

a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained
  .wc-block-components-button__text {
  color: #ffffff !important;
}

a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained {
  background: #6b0f8f !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 10px !important;
}

a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained:hover {
  background: #4f378a !important;
  color: #ffffff !important;
}

a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained .wc-block-components-button__text {
  color: #ffffff !important;
}

/* Checkout fields */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce-checkout input,
.woocommerce-checkout textarea,
.woocommerce-checkout select {
  background: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #d0d0d0 !important;
  border-radius: 8px !important;
  padding: 12px !important;
}

.woocommerce form .form-row label,
.woocommerce-checkout label {
  color: rgba(255,255,255,0.8) !important;
}

/* Coupon button */
.woocommerce .coupon .button,
.woocommerce-checkout .coupon .button,
button[name="apply_coupon"],
input[name="apply_coupon"] {
  background: #6b0f8f !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 10px 16px !important;
}

.woocommerce .coupon .button:hover,
.woocommerce-checkout .coupon .button:hover,
button[name="apply_coupon"]:hover,
input[name="apply_coupon"]:hover {
  background: #4f378a !important;
  color: #ffffff !important;
}

/* Coupon input */
.woocommerce .coupon input,
.woocommerce-checkout .coupon input {
  background: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #d0d0d0 !important;
  border-radius: 8px !important;
  padding: 10px !important;
}

/* ===== CHECKOUT BLOCK INPUTS ===== */
.wp-block-woocommerce-checkout input,
.wp-block-woocommerce-checkout select,
.wp-block-woocommerce-checkout textarea {
  background: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #d0d0d0 !important;
  border-radius: 8px !important;
  padding: 12px !important;
}

/* Labels */
.wp-block-woocommerce-checkout label {
  color: rgba(255,255,255,0.8) !important;
}

/* Section titles */
.wp-block-woocommerce-checkout h2,
.wp-block-woocommerce-checkout h3 {
  color: #ffffff !important;
}

/* Order summary card */
.wp-block-woocommerce-checkout .wc-block-components-order-summary {
  background: #111 !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 10px !important;
}

/* Coupon dropdown */
.wp-block-woocommerce-checkout .wc-block-components-totals-coupon__button {
  background: #6b0f8f !important;
  color: #ffffff !important;
  border-radius: 8px !important;
}

.wp-block-woocommerce-checkout .wc-block-components-totals-coupon__button:hover {
  background: #4f378a !important;
}

/* Fix weird grey backgrounds */
.wp-block-woocommerce-checkout .wc-block-components-text-input input {
  background: #ffffff !important;
  color: #000 !important;
}

/* Payment error box */
.wp-block-woocommerce-checkout .wc-block-components-notice-banner {
  background: #2a0f12 !important;
  color: #fff !important;
  border: 1px solid rgba(255,0,0,0.3) !important;
}

/* ===== FIX PLACEHOLDER TEXT (Woo Blocks) ===== */
.wp-block-woocommerce-checkout input::placeholder,
.wp-block-woocommerce-checkout textarea::placeholder {
  color: #666666 !important;
  opacity: 1 !important;
}

.wp-block-woocommerce-checkout input::-webkit-input-placeholder {
  color: #666 !important;
}

.wp-block-woocommerce-checkout input:-ms-input-placeholder {
  color: #666 !important;
}

.wp-block-woocommerce-checkout input::placeholder {
  color: #666 !important;
}

/* FORCE placeholder color inside Woo Blocks inputs */
.wp-block-woocommerce-checkout .wc-block-components-text-input input::placeholder,
.wp-block-woocommerce-checkout .wc-block-components-text-input textarea::placeholder {
  color: #666666 !important;
  opacity: 1 !important;
}

/* Extra aggressive fallback */
.wp-block-woocommerce-checkout input::placeholder,
.wp-block-woocommerce-checkout textarea::placeholder {
  color: #666666 !important;
  opacity: 1 !important;
}

/* Fix autofill weirdness (Chrome) */
.wp-block-woocommerce-checkout input:-webkit-autofill {
  -webkit-text-fill-color: #000 !important;
}
.wp-block-woocommerce-checkout {
  --wc-block-components-color-text: #000000 !important;
  --wc-block-components-color-text-muted: #666666 !important;
}

/* Checkout input text + placeholder */
.wp-block-woocommerce-checkout input,
.wp-block-woocommerce-checkout textarea,
.wp-block-woocommerce-checkout select {
  color: #000000 !important;
  background: #ffffff !important;
}

.wp-block-woocommerce-checkout input::placeholder,
.wp-block-woocommerce-checkout textarea::placeholder {
  color: #666666 !important;
  opacity: 1 !important;
}

.wp-block-woocommerce-checkout input::-webkit-input-placeholder,
.wp-block-woocommerce-checkout textarea::-webkit-input-placeholder {
  color: #666666 !important;
}

.wp-block-woocommerce-checkout input:-ms-input-placeholder,
.wp-block-woocommerce-checkout textarea:-ms-input-placeholder {
  color: #666666 !important;
}

/* Woo Blocks floating labels inside white inputs */
.wp-block-woocommerce-checkout .wc-block-components-text-input label,
.wp-block-woocommerce-checkout .wc-block-components-combobox-control label,
.wp-block-woocommerce-checkout .wc-block-components-select label {
  color: #666666 !important;
}

/* When the field is active / floating */
.wp-block-woocommerce-checkout .wc-block-components-text-input.is-active label,
.wp-block-woocommerce-checkout .wc-block-components-combobox-control.is-active label,
.wp-block-woocommerce-checkout .wc-block-components-select .wc-block-components-select__label {
  color: #666666 !important;
}

/* ===== Woo Checkout Blocks spacing cleanup ===== */

/* More even spacing between checkout fields */
.wp-block-woocommerce-checkout .wc-block-components-address-form,
.wp-block-woocommerce-checkout .wc-block-checkout__billing-fields,
.wp-block-woocommerce-checkout .wc-block-checkout__contact-fields {
  row-gap: 16px !important;
  column-gap: 16px !important;
}

/* Clean spacing inside each field wrapper */
.wp-block-woocommerce-checkout .wc-block-components-text-input,
.wp-block-woocommerce-checkout .wc-block-components-combobox,
.wp-block-woocommerce-checkout .wc-block-components-select {
  margin-bottom: 0 !important;
}

/* Make inputs taller and give typed text breathing room */
.wp-block-woocommerce-checkout .wc-block-components-text-input input,
.wp-block-woocommerce-checkout .wc-block-components-combobox input,
.wp-block-woocommerce-checkout .wc-block-components-select select,
.wp-block-woocommerce-checkout input,
.wp-block-woocommerce-checkout select,
.wp-block-woocommerce-checkout textarea {
  min-height: 56px !important;
  padding: 20px 14px 10px !important;
  line-height: 1.3 !important;
  box-sizing: border-box !important;
}

/* Push the floating label slightly higher so it doesn't crowd the value */
.wp-block-woocommerce-checkout .wc-block-components-text-input label,
.wp-block-woocommerce-checkout .wc-block-components-combobox-control label,
.wp-block-woocommerce-checkout .wc-block-components-select label {
  top: 8px !important;
  left: 14px !important;
  font-size: 12px !important;
  line-height: 1 !important;
}

/* When field is active / filled, keep label compact and out of the way */
.wp-block-woocommerce-checkout .wc-block-components-text-input.is-active label,
.wp-block-woocommerce-checkout .wc-block-components-text-input.has-value label,
.wp-block-woocommerce-checkout .wc-block-components-combobox-control.is-active label,
.wp-block-woocommerce-checkout .wc-block-components-combobox-control.has-value label,
.wp-block-woocommerce-checkout .wc-block-components-select .wc-block-components-select__label {
  transform: none !important;
  top: 8px !important;
  font-size: 12px !important;
}

/* Give the email field and similar wrappers a bit more room */
.wp-block-woocommerce-checkout .wc-block-components-text-input {
  min-height: 56px !important;
}

/* Reset checkboxes and radios */
.wp-block-woocommerce-checkout input[type="checkbox"],
.wp-block-woocommerce-checkout input[type="radio"] {
  min-height: auto !important;
  height: 18px !important;
  width: 18px !important;
  padding: 0 !important;
  background: #ffffff !important;
  border: 1px solid #cfcfcf !important;
  border-radius: 4px !important;
  box-sizing: border-box !important;
  appearance: auto !important;
}

.header-cart {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.header-cart:hover {
  color: var(--purple-primary);
}

/* Header cart button same as nav buttons */
.header-cart {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* If your nav buttons already styled, you may not need this,
   but adding hover safety anyway */

.header-cart:hover {
  background: var(--purple-primary);
  color: white;
}

/* =========================
   15. MOBILE / TABLET PATCH
========================= */

/* Better anchor landing with sticky-ish header spacing */
.hero,
.stats-section,
.testimonials-section,
.method-section,
.pricing-section,
.how-section,
.faq-section {
  scroll-margin-top: 100px;
}

/* ---------- Tablet ---------- */
@media (max-width: 992px) {
  .container {
    width: min(100% - 40px, var(--container-width));
  }

  .site-header {
    padding: 20px 0 10px;
  }

  .header-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .site-logo {
    display: flex;
    justify-content: center;
  }

  .site-nav {
    justify-content: center;
    gap: 10px;
  }

  .nav-link {
    font-size: 14px;
    padding: 10px 14px;
  }

  .hero {
    padding: 20px 0 10px;
  }

  .hero-inner {
    width: 100%;
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-art {
    order: 1;
  }

  .hero-art img {
    width: min(100%, 620px);
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-content {
    order: 2;
    max-width: 100%;
    margin-left: 0;
    text-align: center;
  }

  .hero-title {
    font-size: 46px;
    line-height: 0.95;
  }

  .hero-actions {
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 240px));
    gap: 20px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
  }

  .testimonial-card,
  .testimonials-grid .testimonial-card:last-child {
    width: 100%;
    max-width: 560px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    justify-items: center;
  }

  .pricing-card,
  .pricing-card--tier1,
  .pricing-card--tier2,
  .pricing-card--tier3 {
    width: 100%;
    max-width: 520px;
  }

  .pricing-card__title {
    white-space: normal;
    font-size: 34px;
    line-height: 0.95;
  }

  .footer-top {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 28px;
  }

  .footer-left {
    gap: 36px;
  }
}

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
  .container {
    width: min(100% - 24px, var(--container-width));
  }

  .section {
    padding: 56px 0;
  }

  .site-header {
    padding: 16px 0 10px;
  }

  .site-logo img {
    width: 92px;
  }

  /* mobile nav: horizontally scrollable pill nav */
  .site-nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
    padding-bottom: 4px;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .nav-link {
    flex: 0 0 auto;
    font-size: 13px;
    padding: 10px 12px;
    white-space: nowrap;
  }

  .header-cart {
    flex: 0 0 auto;
  }

  .hero {
    padding: 18px 0 6px;
  }

  .hero-inner {
    gap: 12px;
  }

  .hero-art img {
    width: 100%;
    max-width: 440px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-title {
    font-size: clamp(34px, 9vw, 44px);
    line-height: 0.96;
  }

  .hero-title span {
    margin-top: 10px;
  }

  .hero-actions {
    margin-top: 22px;
    gap: 12px;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btn,
  .btn {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    font-size: 14px;
    padding: 14px 16px;
  }

  .stats-section,
  .testimonials-section,
  .method-section,
  .pricing-section,
  .how-section,
  .faq-section {
    min-height: auto;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stat-card {
    width: 100%;
    max-width: 320px;
    min-height: 160px;
    margin: 0 auto;
  }

  .stats-copy {
    margin-top: 32px;
  }

  .stats-copy__text {
    font-size: 18px;
    line-height: 1.35;
  }

  .testimonials-title,
  .method-title,
  .how-title {
    font-size: 38px;
    line-height: 0.98;
  }

  .testimonials-subtitle,
  .method-subtitle,
  .how-subtitle {
    font-size: 18px;
    line-height: 1.35;
    margin-top: 10px;
  }

  .testimonial-card,
  .testimonials-grid .testimonial-card:last-child {
    max-width: 100%;
    min-height: 190px;
    padding: 18px;
  }

  .testimonial-quote {
    font-size: 20px;
  }

  .method-list,
  .how-list {
    gap: 16px;
    margin-top: 28px;
  }

  .method-card {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 32px 1fr 56px;
    column-gap: 10px;
    padding: 12px;
  }

  .method-card__title {
    font-size: 18px;
  }

  .method-card__text {
    font-size: 13px;
    line-height: 1.3;
  }

  .method-card__image {
    width: 52px;
    height: 52px;
  }

  .how-card {
    width: 100%;
    max-width: 100%;
    min-height: 92px;
    grid-template-columns: 32px 1fr 58px;
    column-gap: 10px;
    padding: 12px;
  }

  .how-card__title {
    font-size: 18px;
    line-height: 1.15;
  }

  .how-card__image {
    width: 56px;
    height: 56px;
  }

  .pricing-title {
    font-size: 52px;
    line-height: 0.95;
  }

  .pricing-grid {
    margin-top: 30px;
    gap: 16px;
  }

  .pricing-card,
  .pricing-card--tier1,
  .pricing-card--tier2,
  .pricing-card--tier3 {
    max-width: 100%;
    min-height: 440px;
  }

  .pricing-card__inner {
    padding: 18px 16px;
  }

  .pricing-card__title {
    white-space: normal;
    font-size: 28px;
    line-height: 0.98;
    letter-spacing: 0;
  }

  .pricing-card__amount {
    font-size: 40px;
  }

  .pricing-card__currency {
    font-size: 20px;
  }

  .pricing-card__suffix {
    font-size: 18px;
  }

  .pricing-card__features {
    font-size: 15px;
    line-height: 1.35;
    padding-left: 18px;
  }

  .pricing-card__note {
    font-size: 14px;
  }

  .pricing-card__button {
    width: 100%;
    max-width: 100%;
    height: 46px;
    font-size: 18px;
  }

  .faq-title {
    font-size: 44px;
    margin-bottom: 28px;
  }

  .faq-question {
    font-size: 16px;
    padding: 18px 0;
  }

  .faq-answer {
    font-size: 15px;
    line-height: 1.5;
  }

  .site-footer {
    padding: 32px 0 22px;
  }

  .footer-left {
    flex-direction: column;
    gap: 24px;
  }

  .footer-logo {
    width: 88px;
  }

  /* tone down hover effects on touch devices */
  .stat-card:hover,
  .testimonial-card:hover,
  .method-card:hover,
  .how-card:hover,
  .pricing-card:hover,
  .pricing-card--featured:hover {
    transform: none;
  }
}

/* ---------- Small phones ---------- */
@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }

  .pricing-title {
    font-size: 42px;
  }

  .testimonials-title,
  .method-title,
  .how-title {
    font-size: 32px;
  }

  .pricing-card__title {
    font-size: 24px;
  }

  .stats-copy__text,
  .testimonials-subtitle,
  .method-subtitle,
  .how-subtitle {
    font-size: 16px;
  }

  .faq-title {
    font-size: 36px;
  }
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .site-logo {
    display: flex;
    justify-content: flex-start;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    z-index: 50;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px 16px;
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
  }

  .site-header {
    position: relative;
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-link {
    width: 100%;
    text-align: left;
    padding: 12px 14px;
  }
}

@media (max-width: 768px) {
  .pricing-card,
  .pricing-card--tier1,
  .pricing-card--tier2,
  .pricing-card--tier3 {
    max-width: 100%;
    min-height: 0;
    height: auto;
  }

  .pricing-card__inner {
    padding: 18px 16px 16px;
    gap: 0;
  }

  .pricing-card__features {
    margin-bottom: 10px;
  }

  .pricing-card__note {
    margin: 10px 0 10px;
  }

  .pricing-card__button {
    margin-top: 0;
  }
}

/* =========================
   MOBILE DRAWER MENU
========================= */

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1002;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.desktop-nav {
  display: flex;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 1000;
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(82vw, 320px);
  height: 100vh;
  background: #0b0b0b;
  border-left: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 80px 20px 24px;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  z-index: 1001;
}

.mobile-menu-drawer .nav-link {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
}

.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
  color: var(--white);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .mobile-menu-overlay {
  opacity: 1;
  visibility: visible;
}

body.menu-open .mobile-menu-drawer {
  transform: translateX(0);
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }
}