:root {
  --black: #070707;
  --dark: #111014;
  --dark-2: #1b1715;
  --cream: #fff7eb;
  --cream-2: #f6ead7;
  --white: #ffffff;
  --orange: #ff5a1f;
  --orange-2: #ff8a1f;
  --gold: #f6bd60;
  --brown: #3b2418;
  --muted: #76675f;
  --green: #06c755;
  --shopee: #ee4d2d;

  --font-main: "DM Sans", sans-serif;
  --font-display: "Playfair Display", serif;
  --font-big: "Bebas Neue", sans-serif;

  --shadow-dark: 0 28px 90px rgba(0, 0, 0, 0.28);
  --shadow-soft: 0 20px 55px rgba(59, 36, 24, 0.12);

  --radius-xl: 34px;
  --radius-md: 22px;

  --transition: all 0.35s ease;
}

/* Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--cream);
  color: var(--brown);
  overflow-x: hidden;
  line-height: 1.7;
}

img {
  width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 36px));
  margin: auto;
}

.section-space {
  padding: 110px 0;
}

h1,
h2,
h3 {
  color: var(--dark);
  line-height: 1.05;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: -3px;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -2px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

p {
  font-size: 17px;
  color: var(--muted);
}

.top-notice {
  background: var(--black);
  color: var(--cream);
  text-align: center;
  padding: 10px 16px;
  position: relative;
  z-index: 1200;
}

.top-notice p {
  color: var(--cream);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
}

/* Header */
.header {
  position: fixed;
  top: 42px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 22px;
  transition: var(--transition);
}

.header.scrolled {
  top: 10px;
}

.nav-wrapper {
  max-width: 1180px;
  margin: auto;
  height: 76px;
  padding: 0 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(17, 16, 20, 0.08);
  box-shadow: 0 16px 55px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-box img {
  filter: contrast(1.2) brightness(0.9);
}

.logo-box {
  width: 108px;
  height: 54px;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  border: none;
  box-shadow: none;
  transition: all 0.35s ease;
}

.logo-box:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.logo-box img {
      width: 123px;
    max-height: 68px;
    object-fit: contain;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu a {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--dark);
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  transition: var(--transition);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-cta {
  height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  box-shadow: 0 14px 35px rgba(255, 90, 31, 0.34);
  transition: var(--transition);
}

.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(255, 90, 31, 0.45);
}

.menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  background: var(--dark);
  border: none;
  border-radius: 50%;
  padding: 12px;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: var(--transition);
}

/* Buttons */
.primary-btn,
.outline-btn,
.line-btn,
.shopee-btn,
.instagram-btn {
  min-height: 58px;
  padding: 0 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: var(--transition);
}

.primary-btn {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: var(--white);
  box-shadow: 0 18px 45px rgba(255, 90, 31, 0.32);
}

.primary-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(255, 90, 31, 0.46);
}

.outline-btn {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.07);
}

.outline-btn:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-4px);
}

/* Hero */
.hero {
  min-height: 100vh;
  padding: 190px 0 95px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 90, 31, 0.36), transparent 32%),
    radial-gradient(circle at 18% 84%, rgba(246, 189, 96, 0.18), transparent 34%),
    linear-gradient(135deg, #060606 0%, #111014 46%, #251006 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  pointer-events: none;
}

.hero-fire {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.fire-one {
  width: 460px;
  height: 460px;
  background: rgba(255, 90, 31, 0.22);
  right: -120px;
  top: 180px;
}

.fire-two {
  width: 360px;
  height: 360px;
  background: rgba(246, 189, 96, 0.14);
  left: -110px;
  bottom: 40px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}

.tagline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffd7c1;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.tagline::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 8px rgba(255, 90, 31, 0.17);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 26px;
}

.hero-content p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 20px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 44px;
}

.hero-stats {
  max-width: 640px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hero-stats div {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(16px);
}

.hero-stats strong {
  display: block;
  font-family: var(--font-big);
  font-size: 38px;
  line-height: 1;
  color: var(--gold);
  letter-spacing: 1px;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 700;
}

.hero-product {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-glow {
  position: absolute;
  width: 410px;
  height: 410px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  filter: blur(75px);
  opacity: 0.55;
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.45;
  }

  50% {
    transform: scale(1.15);
    opacity: 0.68;
  }
}

.product-card {
  position: relative;
  width: min(440px, 100%);
  padding: 18px;
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(22px);
  transform: rotate(2deg);
  animation: floatCard 5s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0) rotate(2deg);
  }

  50% {
    transform: translateY(-16px) rotate(2deg);
  }
}

.product-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 28px;
}

.best-seller {
  position: absolute;
  top: 34px;
  left: 34px;
  z-index: 3;
  padding: 9px 15px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-box {
  position: absolute;
  right: -18px;
  bottom: 44px;
  z-index: 4;
  padding: 18px 22px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-dark);
}

.price-box small {
  display: block;
  color: #777;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-box strong {
  display: block;
  color: var(--dark);
  font-size: 22px;
  line-height: 1.2;
}

.floating-box {
  position: absolute;
  z-index: 5;
  width: 214px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-dark);
}

.floating-box strong {
  display: block;
  color: var(--dark);
  margin-bottom: 4px;
}

.floating-box span {
  color: #666;
  font-size: 13px;
}

.floating-one {
  left: -30px;
  top: 120px;
}

.floating-two {
  right: -22px;
  bottom: 290px;
}

/* Brand Strip */
.brand-strip {
  background: var(--black);
  padding: 34px 0;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.strip-grid div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.strip-grid span {
  font-family: var(--font-big);
  color: var(--orange-2);
  font-size: 34px;
  line-height: 1;
}

.strip-grid p {
  color: rgba(255, 247, 235, 0.82);
  font-size: 15px;
  font-weight: 700;
}

/* Section Common */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.section-label::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--orange);
}

.section-label.center {
  justify-content: center;
}

.section-label.center::after {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--orange);
}

.section-heading {
  max-width: 760px;
  text-align: center;
  margin: 0 auto 62px;
}

.section-heading p {
  max-width: 680px;
  margin: auto;
}

.section-heading.light h2 {
  color: var(--white);
}

.section-heading.light p {
  color: rgba(255, 247, 235, 0.74);
}

/* Intro */
.intro-section {
  background: var(--cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: center;
}

.intro-image,
.audience-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.intro-image img,
.audience-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.intro-image:hover img,
.audience-image:hover img {
  transform: scale(1.06);
}

.intro-content p {
  margin-bottom: 18px;
}

.icon-list {
  list-style: none;
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.icon-list li {
  position: relative;
  padding-left: 36px;
  font-weight: 800;
  color: var(--brown);
}

.icon-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 24px;
  height: 24px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
}

/* Benefits */
.benefits {
  background: var(--cream-2);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 70px rgba(59, 36, 24, 0.18);
}

.benefit-card img {
  aspect-ratio: 1 / 0.92;
  object-fit: cover;
}

.benefit-content {
  padding: 28px;
}

.benefit-content span {
  display: inline-flex;
  font-family: var(--font-big);
  color: var(--orange);
  font-size: 34px;
  line-height: 1;
  margin-bottom: 10px;
}

/* Product */
.product-section {
  background: var(--cream);
}

.product-grid-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.product-info p {
  margin-bottom: 26px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 34px 0;
}

.feature-grid div {
  padding: 22px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(59, 36, 24, 0.08);
  border: 1px solid rgba(59, 36, 24, 0.08);
}

.feature-grid strong {
  display: block;
  color: var(--dark);
  margin-bottom: 6px;
}

.feature-grid span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.product-showcase {
  position: relative;
  padding: 22px;
  border-radius: 40px;
  background: var(--dark);
  box-shadow: var(--shadow-dark);
  overflow: hidden;
}

.showcase-bg {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  right: -80px;
  top: -80px;
  background: var(--orange);
  filter: blur(70px);
  opacity: 0.7;
}

.product-showcase img {
  position: relative;
  z-index: 2;
  border-radius: 30px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.showcase-badge {
  position: absolute;
  left: 42px;
  bottom: 42px;
  z-index: 3;
  padding: 16px 20px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-dark);
}

.showcase-badge strong {
  display: block;
  color: var(--dark);
}

.showcase-badge span {
  color: var(--orange);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
}

/* Levels */
.levels {
  background: var(--cream-2);
}

.levels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.level-card {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 1px solid rgba(59, 36, 24, 0.08);
}

.level-card:hover {
  transform: translateY(-10px);
}

.level-card.active {
  background: linear-gradient(145deg, var(--black), #281006);
  transform: translateY(-18px);
}

.level-card.active h3,
.level-card.active p,
.level-card.active li {
  color: var(--white);
}

.level-tag {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 90, 31, 0.12);
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.level-card.active .level-tag {
  background: var(--orange);
  color: var(--white);
}

.level-card ul {
  margin-top: 24px;
  padding-left: 20px;
}

.level-card li {
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 700;
}

/* How */
.how-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 90, 31, 0.25), transparent 28%),
    linear-gradient(135deg, var(--black), #1a0e08);
}

.how-section .section-label {
  color: var(--gold);
}

.how-section .section-label::before,
.how-section .section-label::after {
  background: var(--gold);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  padding: 32px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(14px);
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
}

.step-card span {
  font-family: var(--font-big);
  color: var(--gold);
  font-size: 44px;
  line-height: 1;
}

.step-card h3 {
  color: var(--white);
  margin-top: 18px;
}

.step-card p {
  color: rgba(255, 247, 235, 0.72);
}

/* Audience */
.audience-section {
  background: var(--cream);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}

.audience-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.audience-list div {
  padding: 22px;
  border-radius: 22px;
  background: var(--white);
  border-left: 5px solid var(--orange);
  box-shadow: 0 14px 38px rgba(59, 36, 24, 0.08);
}

.audience-list h3 {
  font-size: 20px;
}

/* SEO Content */
.seo-content {
  background: var(--cream-2);
}

.seo-box {
  max-width: 900px;
  text-align: center;
  background: var(--white);
  padding: 60px;
  border-radius: 40px;
  box-shadow: var(--shadow-soft);
}

.seo-box p {
  margin-bottom: 20px;
  text-align: left;
}

/* Reviews */
.reviews {
  background: var(--cream);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  padding: 36px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-8px);
}

.stars {
  color: var(--orange);
  letter-spacing: 4px;
  margin-bottom: 18px;
}

.review-card p {
  font-size: 18px;
  margin-bottom: 24px;
}

.review-card h4 {
  color: var(--dark);
}

.review-card span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

/* FAQ */
.faq-section {
  background: var(--cream-2);
}

.faq-list {
  max-width: 900px;
  margin: auto;
  display: grid;
  gap: 16px;
}

.faq-list details {
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 12px 34px rgba(59, 36, 24, 0.08);
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 24px 58px 24px 26px;
  color: var(--dark);
  font-weight: 900;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 28px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  padding: 0 26px 24px;
}

/* Buy */
.buy-section {
  padding: 96px 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(255, 90, 31, 0.26), transparent 30%),
    linear-gradient(135deg, var(--black), #2d1206);
}

.buy-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding: 58px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: var(--shadow-dark);
}

.buy-box h2 {
  color: var(--white);
}

.buy-box p {
  color: rgba(255, 247, 235, 0.76);
}

.light-label {
  color: var(--gold);
}

.light-label::before {
  background: var(--gold);
}

.buy-actions {
  display: grid;
  gap: 16px;
}

.line-btn {
  background: var(--green);
  color: var(--white);
}

.shopee-btn {
  background: var(--shopee);
  color: var(--white);
}

.instagram-btn {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.07);
}

.line-btn:hover,
.shopee-btn:hover,
.instagram-btn:hover {
  transform: translateY(-4px);
  filter: brightness(1.08);
}

/* Footer */
.footer {
  background: #070707;
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr;
  gap: 60px;
}

.footer-logo {
  width: 120px;
  background: var(--white);
  border-radius: 20px;
  padding: 10px;
  margin-bottom: 22px;
}

.footer p {
  color: rgba(255, 247, 235, 0.68);
  max-width: 430px;
}

.footer h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 18px;
}

.footer a {
  display: block;
  color: rgba(255, 247, 235, 0.68);
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer a:hover {
  color: var(--orange);
  transform: translateX(4px);
}

.footer-bottom {
  margin-top: 60px;
  padding: 22px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  max-width: none;
  font-size: 14px;
}

/* Mobile CTA */
.mobile-cta {
  display: none;
}

/* Animation */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1050px) {
  .hero-grid,
  .intro-grid,
  .product-grid-main,
  .audience-grid,
  .buy-box {
    grid-template-columns: 1fr;
  }

  .hero-product {
    min-height: auto;
  }

  .strip-grid,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-grid,
  .levels-grid,
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }

  .level-card.active {
    transform: none;
  }
}

@media (max-width: 850px) {
  .header {
    padding: 12px 14px;
  }

  .nav-wrapper {
    height: 68px;
  }

  .logo-box {
  width: 96px;
  height: auto;
}

.logo-box img {
  width: 86px;
}

  .nav-menu {
    position: fixed;
    top: 132px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 18px;
    padding: 24px;
    border-radius: 26px;
    background: rgba(17, 16, 20, 0.96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: var(--transition);
  }

  .nav-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    color: var(--white);
  }

  .nav-cta {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .hero {
    padding: 165px 0 70px;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .hero-content p {
    font-size: 17px;
  }

  .hero-stats,
  .strip-grid,
  .benefit-grid,
  .levels-grid,
  .review-grid,
  .steps-grid,
  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-space {
    padding: 80px 0;
  }

  .floating-box {
    display: none;
  }

  .price-box {
    right: 14px;
    bottom: 28px;
  }

  .buy-box,
  .seo-box {
    padding: 36px 24px;
  }

  .mobile-cta {
    display: block;
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 1300;
  }

  .mobile-cta a {
    height: 56px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 18px 45px rgba(255, 90, 31, 0.44);
  }

  body {
    padding-bottom: 76px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .top-notice p {
    font-size: 12px;
  }

  .hero-buttons {
    display: grid;
  }

  .primary-btn,
  .outline-btn {
    width: 100%;
  }

  .product-card {
    transform: none;
    animation: none;
  }

  .product-card img,
  .product-showcase img,
  .intro-image img,
  .audience-image img {
    aspect-ratio: 1 / 1.16;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 38px;
  }
}