:root {
  --primary: #e6a24a;
  --primary-2: #d8872f;
  --primary-soft: #fff7e8;
  --ink: #0d1b2a;
  --muted: #425466;
  --card: #ffffff;
  --line: #f8dfba;
  --ok: #0ea366;
  --danger: #d9480f;
  --radius: 22px;
  --shadow-lg: 0 24px 60px rgba(95, 42, 10, 0.11);
  --shadow-md: 0 12px 30px rgba(95, 42, 10, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 12% 16%, #fff7ea 0%, #ffffff 44%),
    radial-gradient(circle at 90% 50%, #fff4dc 0%, #ffffff 36%),
    linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: 168px;
}

h1,
h2,
h3,
h4 {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.02em;
}

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

.container {
  width: min(1080px, 92%);
  margin: 0 auto;
}

.section {
  padding: 52px 0;
}

.bg-orb {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(65px);
  opacity: 0.22;
  z-index: -1;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: #ffd693;
  top: -80px;
  left: -70px;
  animation: driftA 16s ease-in-out infinite;
}

.orb-2 {
  width: 260px;
  height: 260px;
  background: #ffc474;
  right: -90px;
  top: 35%;
  animation: driftB 20s ease-in-out infinite;
}

.orb-3 {
  width: 220px;
  height: 220px;
  background: #ffe6ad;
  left: 20%;
  bottom: -80px;
  animation: driftC 14s ease-in-out infinite;
}

@keyframes driftA {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(30px, 18px, 0);
  }
}

@keyframes driftB {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-26px, 30px, 0);
  }
}

@keyframes driftC {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(22px, -24px, 0);
  }
}

.hero {
  padding-top: 56px;
}

.hero-grid {
  display: grid;
  gap: 20px;
  align-items: center;
  grid-template-columns: 1fr;
}

.brand-logo {
  width: 140px;
  height: auto;
  margin: 0 auto 14px;
  filter: drop-shadow(0 8px 20px rgba(123, 52, 8, 0.2));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid #ffd8a8;
  background: #fff3e0;
  color: #c05621;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 0 5px rgba(245, 158, 11, 0.22);
}

h1 {
  margin: 16px 0 14px;
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1.07;
}

.subtitle {
  margin: 0;
  max-width: 64ch;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
}

.hero-cta-row {
  margin-top: 24px;
}

.hero-meta {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-meta span {
  background: #ffffff;
  border: 1px solid #f5d6aa;
  border-radius: 12px;
  padding: 8px 12px;
  color: #8a3f12;
  font-weight: 500;
  font-size: 0.92rem;
}

.glass-card {
  backdrop-filter: blur(14px);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.95), rgba(255, 243, 224, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-lg);
}

.hero-visual {
  border-radius: 26px;
  padding: 14px;
  margin: 20px 0 14px;
}

.hero-image {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  border-radius: 18px;
}

.hero-price-wrap {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.new-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: #b45309;
}

.old-price {
  font-size: 1rem;
  color: #8ea2b5;
  text-decoration: line-through;
}

.btn {
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  padding: 15px 24px;
  cursor: pointer;
  transition: transform 260ms ease, box-shadow 260ms ease, filter 260ms ease;
}

.btn-primary {
  color: #fff;
  width: 100%;
  background: linear-gradient(105deg, var(--primary), var(--primary-2));
  box-shadow: 0 12px 22px rgba(167, 95, 29, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 26px rgba(167, 95, 29, 0.26);
  filter: saturate(1.09);
}

.panel {
  background: #ffffff;
  border: 1px solid #f6d9af;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: clamp(20px, 4vw, 34px);
  position: relative;
  overflow: hidden;
}

.panel::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.16), rgba(249, 115, 22, 0));
  right: -45px;
  top: -45px;
}

.panel-accent {
  background: linear-gradient(120deg, #ffffff, #fff7eb);
}

.panel-light {
  background: linear-gradient(120deg, #fff9ef, #ffffff);
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.feature-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 11px;
  color: #1f2d3c;
  line-height: 1.55;
  font-size: 1.07rem;
}

.feature-list-check {
  list-style: none;
  padding: 0;
}

.feature-list-check li {
  background: linear-gradient(110deg, #fff6e6, #fffdf8);
  border: 1px solid #ffe0b2;
  border-radius: 12px;
  padding: 12px 14px 12px 44px;
  position: relative;
}

.feature-list-check li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 9px;
  color: var(--ok);
  font-weight: 800;
  font-size: 1.1rem;
}

.lead {
  margin: 16px 0 0;
  font-weight: 600;
  color: #9a3412;
}

.mentor-grid {
  display: grid;
  gap: 20px;
  align-items: center;
}

.mentor-media-wrap {
  border-radius: 24px;
  border: 8px solid #f59e0b;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.mentor-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

blockquote {
  margin: 18px 0 0;
  background: #fff8ec;
  border: 1px solid #ffe1b5;
  border-left: 4px solid #f59e0b;
  border-radius: 12px;
  padding: 12px 14px;
  color: #7c2d12;
}

.benefit-grid {
  display: grid;
  gap: 14px;
}

.benefit-card {
  background: linear-gradient(130deg, #ffffff, #fff8ee);
  border: 1px solid #f7ddbd;
  border-radius: 14px;
  padding: 16px;
  font-size: 1.03rem;
  font-weight: 600;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(17, 34, 62, 0.12);
}

.subtitle-sm {
  margin: 0 0 14px;
  color: #415a6d;
}

.testimonial-grid {
  display: grid;
  gap: 14px;
}

.testimonial-card {
  background: linear-gradient(125deg, #ffffff, #fff6ea);
  border: 2px solid #f6b84f;
  border-radius: 16px;
  padding: 18px;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(154, 68, 16, 0.16);
}

.testimonial-card p {
  margin: 0 0 12px;
  line-height: 1.65;
}

.testimonial-card h4 {
  margin: 0;
  color: #d97706;
  font-size: 1.04rem;
}

.testimonial-card span {
  color: #5a6978;
  font-size: 0.92rem;
}

.urgency-panel {
  text-align: center;
  background: linear-gradient(130deg, #fff6eb, #ffffff);
  border: 1px solid #ffd8a8;
}

.urgency-panel h2 {
  color: var(--danger);
}

.offer-panel {
  background: linear-gradient(130deg, #ffffff, #fff7ea);
}

.offer-box {
  margin-top: 18px;
  border-radius: 20px;
  display: grid;
  gap: 14px;
  align-items: center;
  padding: 14px;
}

.offer-box img {
  border-radius: 14px;
  border: 1px solid #f8ddb4;
}

.offer-price {
  margin: 0 0 10px;
  font-size: 1.34rem;
  font-weight: 800;
  color: #b45309;
}

.offer-price span {
  color: #8f9eab;
  text-decoration: line-through;
  font-size: 1rem;
}

.details-grid {
  display: grid;
  gap: 12px;
}

.detail-card {
  background: linear-gradient(135deg, #ffffff, #fff8ed);
  border: 1px solid #f8ddb7;
  border-radius: 14px;
  padding: 16px;
}

.detail-card h4 {
  margin: 0 0 7px;
  color: #d97706;
}

.detail-card p {
  margin: 0;
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid #f6dcba;
  border-radius: 14px;
  background: #ffffff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: none;
  padding: 18px;
  background: #fff;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.faq-item.open .faq-question {
  background: linear-gradient(105deg, #f59e0b, #f97316);
  color: #fff;
}

.faq-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background: #fffef9;
  border: 1px solid #f1cf9a;
  color: #d97706;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 260ms ease, background-color 260ms ease, border-color 260ms ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 260ms ease, opacity 260ms ease;
}

.faq-icon::after {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  color: #37495a;
  opacity: 0;
  transition: max-height 320ms ease, opacity 250ms ease, padding 320ms ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 18px 18px;
  opacity: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  background: #fff;
  border-color: #f3dcb8;
}

.faq-item.open .faq-icon::after {
  transform: rotate(90deg) scaleX(0);
  opacity: 0;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: linear-gradient(145deg, rgba(255, 252, 246, 0.96), rgba(255, 243, 223, 0.96));
  border-top: 1px solid #f2d4aa;
  box-shadow: 0 -12px 30px rgba(121, 53, 11, 0.15);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
}

.sticky-cta h4 {
  margin: 0;
  color: #d97706;
  text-align: center;
  font-size: clamp(1.35rem, 4.6vw, 1.65rem);
  line-height: 1.1;
}

.sticky-cta p {
  margin: 4px 0 10px;
  text-align: center;
  font-weight: 600;
}

.footer {
  text-align: center;
  padding: 20px;
  color: #5f7183;
}

.sticky-logo {
  width: 70px;
  height: auto;
  margin: 0 auto 8px;
  filter: drop-shadow(0 4px 10px rgba(123, 52, 8, 0.2));
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal="zoom"] {
  transform: scale(0.92);
}

.revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (min-width: 760px) {
  body {
    padding-bottom: 132px;
  }

  .mentor-grid,
  .offer-box {
    grid-template-columns: 1fr 1fr;
  }

  .benefit-grid,
  .details-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sticky-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 10px 24px calc(10px + env(safe-area-inset-bottom));
  }

  .sticky-cta h4,
  .sticky-cta p {
    text-align: left;
  }

  .sticky-logo {
    margin: 0 0 8px;
  }

  .sticky-cta .btn {
    width: auto;
    min-width: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
