:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: #5f5f5f;
  --border: #ececec;
  --accent: #F8D009;
  --accent-dark: #d0ac00;
  --red: #d81616;
  --green: #1fb45b;
  --shadow: 0 18px 50px rgba(17, 17, 17, 0.08);
  --radius: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

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

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

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

.section {
  padding: 88px 0;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-weight: 800;
  font-size: 0.95rem;
}

.hero {
  padding-top: 50px;
  padding-bottom: 24px;
}

.hero-grid,
.two-col,
.expert-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.eyebrow,
.section-tag,
.plan-pill,
.most-chosen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 2px 6px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.87rem;
}

.eyebrow,
.section-tag,
.plan-pill {
  background: rgba(248, 208, 9, 0.15);
  color: #7a6500;
  border: 1px solid rgba(248, 208, 9, 0.35);
}

.hero-copy h1,
.section-heading h2,
.content-card h2,
.statement-box h2 {
  font-weight: 900;
  line-height: 1.05;
}

.hero-copy h1 {
  font-size: clamp(1.8rem, 3vw, 3.45rem);
  margin: 18px 0 18px;
  max-width: 760px;
}

.hero-copy h1 span,
.statement-box h2,
.section-heading h2 span,
.content-card h2 span {
  color: var(--accent-dark);
}

.hero-subtitle,
.section-heading p,
.content-card p,
.feature-card p,
.faq-answer p,
.footer p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 24px;
  width: 100%;
}

.hero-actions .btn {
  flex: 1;
  min-width: 260px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 24px;
  border-radius: 6px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #1fb45b 0%, #178d46 50%, #0e5e2e 100%);
  background-size: 200% auto;
  color: #fff;
  box-shadow: 0 10px 25px rgba(31, 180, 91, 0.25);
}

.btn-primary:hover {
  background-position: right center;
  box-shadow: 0 12px 30px rgba(31, 180, 91, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, #ffffff 0%, #f7f7f7 100%);
  color: #111;
  border-color: var(--border);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #f7f7f7 0%, #ececec 100%);
}

.cta-btn {
  animation: floating 2.6s ease-in-out infinite;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.15) 25%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 100%);
  transform: skewX(-22deg);
  animation: sheen 3.2s ease-in-out infinite;
}

.hero-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-badges span {
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  background: transparent;
  padding: 0;
  font-weight: 700;
  font-size: 1rem;
}

.hero-badges span::before {
  content: '✔';
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  line-height: 1;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 5px;
  position: relative;
  overflow: hidden;
}

.card-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(248, 208, 9, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 208, 9, 0.16) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.7;
  pointer-events: none;
}

.card>* {
  position: relative;
  z-index: 1;
}

.media-placeholder {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(17, 17, 17, 0.12);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(248, 208, 9, 0.08), rgba(248, 208, 9, 0.02));
  position: relative;
}

.media-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.placeholder-label {
  position: absolute;
  inset: auto 16px 16px 16px;
  background: rgba(17, 17, 17, 0.8);
  color: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  text-align: center;
  font-weight: 800;
  font-size: 0.82rem;
}

.statement {
  padding: 12px 0 0 0;
}

.statement-box {
  text-align: center;
  padding: 24px 18px;
}

.statement-box h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
}

.content-card,
.feature-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 10px;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 3vw, 3.1rem);
  margin: 14px 0 14px;
}

.feature-grid,
.pricing-grid {
  display: grid;
  gap: 24px;
}

.feature-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 24px;
}

.icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(248, 208, 9, 0.18);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 22px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  justify-content: flex-start;
  text-align: left;
}

.check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  font-size: 0.7rem;
}

.pricing-grid {
  grid-template-columns: 1.2fr 1.2fr 1fr;
}

.plan-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 4px 28px;
}

.plan-card ul,
.bonus-box ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.plan-card li,
.bonus-box li {
  position: relative;
  padding-left: 2px;
  color: var(--muted);
  font-weight: 700;
}

.plan-card li::before,
.bonus-box li::before {
  content: '•';
  position: absolute;
  left: 6px;
  top: 0;
  color: var(--accent-dark);
}

.price-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-box strong {
  font-family: 'Anton', sans-serif;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.price-value {
  display: flex;
  font-size: 0.8rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.price-annual {
  color: var(--green);
  font-size: 5.6rem !important;
  display: inline-block;
  animation: pulsePrice 1.8s ease-in-out infinite;
}

@keyframes pulsePrice {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }

  100% {
    transform: scale(1);
  }
}

.highlight-annual {
  color: var(--green);
  font-size: 1.8rem !important;
}

.price-box span,
.price-suffix {
  color: var(--muted);
  font-weight: 600;
}

.price-box small {
  font-weight: 600;
}

.price-box s {
  color: #e53935;
  text-decoration: line-through;
}

.full {
  width: 100%;
}

.cta-wrapper {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.cancel-text {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
  text-align: center;
  margin: 0;
}

.featured-annual {
  border: 2px solid var(--green);
}

.featured {
  border: 2px solid var(--green);
  transform: translateY(-10px);
  overflow: visible;
}

.most-chosen {
  position: absolute;
  top: -18px;
  right: -18px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 15px rgba(31, 180, 91, 0.3);
  z-index: 10;
}

.carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.carousel-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  flex: 1;
}

.carousel-slide {
  position: relative;
  min-height: 340px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(248, 208, 9, 0.08), #fff);
}

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

.carousel-btn {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 2rem;
  font-family: inherit;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.faq-question {
  width: 100%;
  text-align: left;
  border: 0;
  background: #fff;
  padding: 22px 24px;
  font: inherit;
  font-size: 1.02rem;
  font-weight: 900;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 220px;
  padding: 0 24px 22px;
}

.footer {
  padding: 24px 0 120px;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 998;
}

@keyframes floating {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes sheen {
  0% {
    left: -120%;
  }

  55%,
  100% {
    left: 140%;
  }
}

@media (max-width: 980px) {

  .hero-grid,
  .two-col,
  .expert-grid,
  .pricing-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .featured {
    transform: none;
  }

  .carousel-track {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .section {
    padding: 20px 0;
  }

  .hero {
    padding-top: 80px;
    padding-bottom: 12px;
  }

  .hero-actions,
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .btn,
  .floating-cta {
    width: 100%;
  }

  .floating-cta {
    left: 16px;
    right: 16px;
    bottom: 16px;
    text-align: center;
  }

  .topbar p {
    font-size: 0.82rem;
  }

  .card {
    padding: 22px;
  }

  .carousel-wrapper {
    padding-bottom: 10px;
    flex-direction: column;
  }

  .hero-copy,
  .content-card,
  .plan-card,
  .statement-box,
  .pricing-grid,
  .expert-grid .content-card,
  .feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .hero-badges {
    align-self: flex-start;
    align-items: flex-start;
    text-align: left;
    margin-left: 35px;
  }

  /* Keep checkboxes aligned properly if they are in lists, but center the wrapper if possible */
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    justify-content: start;
    gap: 12px 16px;
  }

  .plan-card ul,
  .bonus-box ul {
    align-items: flex-start;
    display: inline-grid;
    text-align: left;
  }

  .content-card p,
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}