:root {
  --color-hero-bg: #0b1b11;
  --color-hero-glow: #0f2817;
  --color-accent: #eaff00;
  --color-cta: #6fb921;
  --color-cta-dark: #4b8a13;
  --color-text: #162316;
  --color-muted: #5a6b5c;
  --color-card: #4f6254;
  --color-surface: #f6f3ee;
  --color-surface-alt: #f1ede6;
  --color-white: #ffffff;
  --color-border: rgba(10, 20, 12, 0.14);
  --shadow-soft: 0 18px 40px rgba(6, 14, 9, 0.2);
  --shadow-card: 0 12px 30px rgba(6, 14, 9, 0.12);
  --container-width: 1120px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --space-xl: 96px;
  --space-lg: 72px;
  --space-md: 48px;
  --space-sm: 24px;
  --space-xs: 12px;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}


* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--color-text);
  background: var(--color-surface);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", "Inter", sans-serif;
  line-height: 1.2;
  margin: 0 0 var(--space-sm);
}

p {
  margin: 0 0 var(--space-sm);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 32px, var(--container-width));
  margin: 0 auto;
}

section {
  padding: var(--space-lg) 0;
}

.hero {
  background: radial-gradient(circle at top, var(--color-hero-glow) 0%, var(--color-hero-bg) 68%);
  color: var(--color-white);
  text-align: center;
  padding: var(--space-xl) 0 var(--space-lg);
}

.hero__grid {
  display: grid;
  gap: var(--space-md);
  row-gap: clamp(14px, 2.2vw, 24px);
  justify-items: center;
}

.hero__copy {
  max-width: 900px;
  display: grid;
  gap: 10px;
}

.hero__copy h1,
.hero__copy h2 {
  font-family: "Poppins", "Inter", sans-serif;
  font-size: clamp(2.2rem, 3vw + 1.4rem, 3.6rem);
  line-height: 1.1;
  margin: 0;
}

.hero__highlight {
  color: var(--color-accent);
  font-weight: 700;
}

.hero__copy p,
.hero__copy h4 {
  font-size: clamp(1.05rem, 0.6vw + 0.95rem, 1.35rem);
  margin: 0;
}

.hero__media {
  display: grid;
  gap: clamp(12px, 2vw, 20px);
  margin: 0;
  justify-items: center;
}

.hero__media img:first-child {
  width: min(560px, 100%);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
}

.hero__media > .cta {
  width: min(460px, 100%);
  margin-top: 0;
  margin-bottom: 6px;
}

.hero__banner {
  width: min(768px, 100%);
  border-radius: 28px;
  border: 8px solid rgba(8, 23, 14, 0.72);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.38);
}

.cta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cta);
  color: var(--color-white);
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  box-shadow: 0 0 12px rgba(111, 185, 33, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: pulse 2s infinite ease-in-out;
}

.cta:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 0 18px rgba(111, 185, 33, 0.5);
}

.cta:focus-visible {
  outline: 3px solid rgba(234, 255, 0, 0.6);
  outline-offset: 3px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 6px rgba(111, 185, 33, 0.55);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 16px rgba(111, 185, 33, 0.75);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 6px rgba(111, 185, 33, 0.55);
  }
}

.gallery {
  background: var(--color-hero-bg);
  color: var(--color-white);
}

.gallery__intro {
  max-width: 900px;
  margin: 0 auto var(--space-md);
}

.gallery h2,
.gallery h3 {
  text-align: center;
  font-family: "Poppins", "Inter", sans-serif;
  font-size: clamp(1.6rem, 1.4vw + 1.2rem, 2.2rem);
  margin-bottom: var(--space-xs);
}

.gallery__intro p {
  text-align: center;
  font-size: clamp(1.02rem, 0.5vw + 0.94rem, 1.2rem);
  margin: 0;
}

.carousel {
  position: relative;
  --carousel-slide-width: clamp(280px, 50vw, 700px);
  --carousel-gap: 24px;
}

.carousel__track {
  display: flex;
  gap: var(--carousel-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 12px 16px 24px;
  scrollbar-width: none;
  scroll-padding-inline: 16px;
}

.carousel__track::-webkit-scrollbar {
  display: none;
}

.carousel__slide {
  flex: 0 0 var(--carousel-slide-width);
  scroll-snap-align: start;
}

.carousel__slide img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.carousel__control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
}

.carousel__control:first-of-type {
  left: 8px;
}

.carousel__control:last-of-type {
  right: 8px;
}

.story {
  background: var(--color-surface-alt);
  text-align: center;
}

.story .container {
  max-width: 860px;
}

.story__lead {
  font-size: clamp(1.6rem, 1.4vw + 1.1rem, 2.35rem);
  font-weight: 700;
  font-family: "Poppins", "Inter", sans-serif;
  line-height: 1.3;
  margin-bottom: var(--space-sm);
}

.story__body {
  max-width: 820px;
  margin: 0 auto var(--space-sm);
  font-size: clamp(1.03rem, 0.55vw + 0.94rem, 1.22rem);
}

.story__emphasis {
  max-width: 860px;
  margin: 0 auto var(--space-md);
  font-size: clamp(1.06rem, 0.65vw + 0.96rem, 1.3rem);
  line-height: 1.45;
}

.ideal {
  background: var(--color-surface);
}

.ideal h2 {
  text-align: center;
  font-family: "Poppins", "Inter", sans-serif;
  font-size: clamp(1.8rem, 1.5vw + 1.2rem, 2.4rem);
  margin-bottom: var(--space-md);
}

.ideal__grid {
  display: grid;
  gap: var(--space-sm);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.ideal-card {
  background: #526556;
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-sm);
  box-shadow: var(--shadow-card);
}

.ideal-card h3 {
  margin-top: 0;
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 1.1rem;
}

.ideal__ready {
  margin-top: var(--space-md);
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-sm);
  display: grid;
  gap: var(--space-xs);
}

.checklist li {
  font-weight: 600;
}

.deliverables {
  background: var(--color-surface-alt);
}

.deliverables h2 {
  text-align: center;
  font-family: "Poppins", "Inter", sans-serif;
  font-size: clamp(1.8rem, 1.6vw + 1.2rem, 2.4rem);
  margin-bottom: var(--space-md);
}

.deliverables__grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.deliverables__image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.deliverables__label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-cta-dark);
}

.deliverables__list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.deliverables__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 8px;
}

.deliverables__list li::before {
  content: "\2705";
  position: absolute;
  left: 0;
  top: 0.1em;
  line-height: 1;
}

.bonuses {
  background: var(--color-hero-bg);
  color: var(--color-white);
  text-align: center;
}

.bonuses h2,
.bonuses h3 {
  font-family: "Poppins", "Inter", sans-serif;
}

.bonuses__grid {
  margin-top: var(--space-md);
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.bonus {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-sm);
  text-align: left;
  box-shadow: var(--shadow-soft);
}

.bonus__label {
  font-weight: 700;
  color: var(--color-accent);
}

.testimonials {
  background: var(--color-surface);
}

.testimonials h2 {
  text-align: center;
  font-family: "Poppins", "Inter", sans-serif;
  font-size: clamp(1.8rem, 1.6vw + 1.2rem, 2.4rem);
  margin-bottom: var(--space-md);
}

.offer-complete {
  background: var(--color-hero-bg);
  color: var(--color-white);
  text-align: center;
}

.offer-complete h2 {
  font-family: "Poppins", "Inter", sans-serif;
  font-size: clamp(1.8rem, 1.8vw + 1.2rem, 2.6rem);
  margin-bottom: var(--space-md);
  color: var(--color-accent);
}

.offer-complete__image {
  margin: var(--space-md) auto;
  max-width: 900px;
}

.offer-complete__image img {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.pricing {
  background: var(--color-surface-alt);
}

.pricing h2 {
  text-align: center;
  font-family: "Poppins", "Inter", sans-serif;
  font-size: clamp(1.8rem, 1.6vw + 1.2rem, 2.4rem);
  margin-bottom: var(--space-md);
}

.pricing__hero,
.pricing__trust {
  display: flex;
  justify-content: center;
  margin: var(--space-sm) 0;
}

.pricing__hero img,
.pricing__trust img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.pricing__arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  gap: 8px;
}

.arrow-down {
  color: #e63946;
  font-size: 3rem;
  line-height: 1;
  transform: rotate(90deg);
  display: block;
  font-weight: bold;
}

.pricing__grid {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}

.plan {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-card);
  max-width: 650px;
  width: 100%;
}

.plan__header {
  background: #f7c948;
  color: #1a1a1a;
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  padding: var(--space-sm) var(--space-md);
  margin: calc(var(--space-md) * -1) calc(var(--space-md) * -1) var(--space-md);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.plan__image {
  margin: 0 0 var(--space-sm);
}

.plan__image img {
  width: 100%;
  border-radius: var(--radius-md);
}

.plan h3 {
  font-family: "Poppins", "Inter", sans-serif;
  margin-top: 0;
}

.plan--complete {
  border: 2px solid var(--color-cta);
  position: relative;
}

.plan__strike {
  text-decoration: line-through;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.plan__price {
  font-size: 3rem;
  font-weight: 700;
  margin: 12px 0 4px;
  color: var(--color-cta-dark);
}

.plan__billing {
  margin-top: 0;
  font-weight: 600;
}

.plan__highlight {
  background: rgba(234, 255, 0, 0.15);
  padding: 12px;
  border-radius: var(--radius-md);
  font-weight: 600;
}

.plan__note,
.plan__urgent,
.plan__callout {
  font-size: 0.95rem;
}

.guarantee {
  background: var(--color-surface);
}

.guarantee__grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.guarantee__badge img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.guarantee__list {
  list-style: none;
  padding: 0;
  margin: var(--space-sm) 0 0;
  display: grid;
  gap: 8px;
}

.faq {
  background: var(--color-surface-alt);
}

.faq h2 {
  text-align: center;
  font-family: "Poppins", "Inter", sans-serif;
  font-size: clamp(1.6rem, 1.4vw + 1.2rem, 2.2rem);
  margin-bottom: var(--space-md);
}

.accordion {
  display: grid;
  gap: var(--space-sm);
}

.accordion__item {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  padding: var(--space-sm);
}

.accordion__trigger {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
  font-family: "Poppins", "Inter", sans-serif;
  cursor: pointer;
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 8px 0;
}

.accordion__panel {
  margin-top: 12px;
}

.accordion__panel[hidden] {
  display: none;
}

.footer {
  background: var(--color-hero-bg);
  color: var(--color-white);
  padding: var(--space-md) 0;
  text-align: center;
}

.footer p {
  margin: 8px 0;
}

@media (max-width: 900px) {
  .carousel {
    --carousel-slide-width: min(85vw, 500px);
  }

  .carousel__control {
    display: none;
  }

  .carousel__track {
    padding: 12px 0 24px;
  }
}

@media (max-width: 640px) {
  :root {
    --space-xl: 72px;
    --space-lg: 56px;
    --space-md: 40px;
  }

  .carousel {
    --carousel-slide-width: 100%;
  }

  .carousel__track {
    scroll-padding-inline: 8px;
    padding: 12px 8px 24px;
  }

  .hero {
    padding: 28px 0 30px;
  }

  .hero__grid {
    row-gap: 10px;
  }

  .hero__copy {
    gap: 8px;
  }

  .hero__copy h2 {
    font-size: clamp(2rem, 6vw, 2.55rem);
    line-height: 1.12;
  }

  .hero__copy h4 {
    font-size: clamp(1.05rem, 3.6vw, 1.25rem);
    line-height: 1.25;
  }

  .hero__media {
    gap: 12px;
  }

  .hero__media img:first-child {
    width: min(560px, 96vw);
  }

  .hero__media > .cta {
    width: min(430px, 92vw);
    margin-top: 0;
    margin-bottom: 10px;
  }

  .cta {
    width: 100%;
  }

  .hero__banner {
    width: auto;
    max-width: 100%;
    max-height: 24vh;
    border-width: 6px;
    border-radius: 22px;
  }
}

@media (max-width: 400px) {
  :root {
    --space-xl: 56px;
    --space-lg: 40px;
    --space-md: 32px;
    --space-sm: 16px;
  }

  .hero__copy h1,
  .hero__copy h2 {
    font-size: 1.8rem;
  }

  .accordion__trigger {
    font-size: 0.9rem;
  }

  .cta {
    padding: 16px 20px;
    font-size: 0.9rem;
  }

  .plan {
    padding: var(--space-sm);
  }

  .ideal__grid,
  .bonuses__grid {
    grid-template-columns: 1fr;
  }
}
