/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 100;
  align-items: center;
  justify-content: center;
}

.modal-overlay.is-open {
  display: flex;
}

.modal-box {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  max-width: 420px;
  width: calc(100% - 2rem);
  position: relative;
  box-shadow: var(--shadow);
}

.modal-box h3 {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
}

.modal-subtitle {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

.modal-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.modal-checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}

.modal-checkbox-label a {
  color: var(--accent);
  text-decoration: underline;
}

.modal-continue {
  display: block;
  text-align: center;
  opacity: 0.4;
  cursor: not-allowed;
  transition: opacity 0.2s;
}

.modal-continue.is-enabled {
  opacity: 1;
  cursor: pointer;
}

:root {
  color-scheme: dark;
  --bg: #070b15;
  --bg-alt: #0f1421;
  --surface: #101822;
  --surface-strong: #172036;
  --text: #f4f7ff;
  --text-muted: #a3b0d1;
  --accent: #7ad259;
  --accent-soft: rgba(122, 210, 89, 0.16);
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, rgba(122, 210, 89, 0.14), transparent 30%), linear-gradient(180deg, #070b15 0%, #0d1220 100%);
  color: var(--text);
}

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

button,
input,
select,
a {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(7, 11, 21, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.18em;
  color: white;
  text-decoration: none;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
}

.nav-links a,
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: white;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  padding: 1rem 1.8rem;
  background: linear-gradient(135deg, #5ee432, #7ad259);
  color: #071011;
  font-weight: 700;
}

.button--secondary {
  padding: 1rem 1.8rem;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.button--small {
  padding: 0.9rem 1.2rem;
  background: linear-gradient(135deg, rgba(122, 210, 89, 0.2), rgba(255, 255, 255, 0.08));
  color: var(--text);
}

.hero {
  padding: 5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero-copy h1,
.section-header h2,
.guarantee-card h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 1.02;
}

.hero-copy p {
  max-width: 620px;
  margin: 1.5rem 0 0;
  color: var(--text-muted);
  line-height: 1.85;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero-badges span {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem 1rem;
  border-radius: 999px;
}

.hero-image img {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  border-radius: 2rem;
  box-shadow: var(--shadow);
}

.section {
  padding: 4rem 0;
}

.section--light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 70%);
}

.section--dark {
  background: rgba(8, 12, 23, 0.98);
}

.section--accent {
  background: linear-gradient(180deg, rgba(122, 210, 89, 0.08), rgba(7, 11, 21, 0.98));
}

.section-header {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: left;
}

.section-header--center {
  text-align: center;
}

.section-header--light h2,
.section-header--light p {
  color: #eef3ff;
}

.section-header p,
.guarantee-card p,
.package-savings,
.faq-card p {
  color: var(--text-muted);
}

.feature-grid,
.offer-grid,
.testimonial-grid,
.faq-grid {
  display: grid;
  gap: 1.5rem;
}

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

.feature-card,
.package-card,
.testimonial-card,
.faq-card,
.order-summary,
.guarantee-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.75rem;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.feature-card img {
  width: 100%;
  border-radius: 1.5rem;
  margin-bottom: 1.5rem;
}

.feature-card h3,
.package-label,
.testimonial-card strong,
.faq-card h3 {
  color: white;
}

.feature-card h3,
.faq-card h3 {
  margin-bottom: 0.75rem;
}

.feature-card ul,
.testimonial-card p,
.faq-card p,
.order-summary p {
  margin: 0.75rem 0 0;
}

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

.feature-card li {
  margin-top: 0.65rem;
  color: var(--text-muted);
}

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

.package-card {
  position: relative;
  overflow: hidden;
  border: none;
  border-radius: 1.75rem;
  background: #fff;
}

.package-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.package-card--best {
  outline: 2px solid #f3d35e;
  outline-offset: -1px;
}

.package-card__top {
  background: #f27f11;
  color: #fff;
  padding: 2rem 1.75rem 1.65rem;
  text-align: center;
}

.package-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  background: #f6e26b;
  color: #1e1d10;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  margin-bottom: 1rem;
}

.package-label {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.package-description {
  margin: 0;
  opacity: 0.9;
}

.package-card__body {
  padding: 2rem 1.75rem 2rem;
  color: #121212;
  text-align: center;
}

.package-card__body img {
  width: 180px;
  margin: 0 auto 1.5rem;
}

.package-value {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  color: #f27f11;
  margin-bottom: 1rem;
}

.package-price-wrap {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  align-items: baseline;
  margin-bottom: 1rem;
}

.package-old-price {
  text-decoration: line-through;
  color: #888;
  font-size: 0.95rem;
}

.package-current-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: #171717;
}

.package-savings {
  margin: 1rem 0 0.5rem;
  font-weight: 700;
  color: #0f4c00;
}

.package-shipping {
  font-size: 0.95rem;
  color: #6b6b6b;
  margin-bottom: 1.5rem;
}

.button--buy {
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: 1.2rem;
  background: #1c8d3c;
  color: #fff;
  font-weight: 800;
}

.package-guarantee {
  margin-top: 1rem;
  color: #616161;
  font-size: 0.95rem;
}

.order-summary {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.order-summary h3 {
  margin: 0.25rem 0 0;
}

.summary-note {
  color: var(--text-muted);
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-meta img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-meta strong {
  display: block;
}

.stars {
  color: #f8d64e;
  font-size: 1rem;
}

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

.faq-card {
  min-height: 200px;
}

.guarantee-card {
  text-align: center;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.guarantee-grid strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.policy-content {
  max-width: 860px;
  margin: 0 auto;
  color: var(--text-muted);
  line-height: 1.85;
}

.policy-content h3 {
  color: white;
  margin-top: 2rem;
}

.policy-content ul {
  list-style: disc inside;
  margin: 1rem 0 0 1rem;
}

.policy-content p {
  margin: 1rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.about-card,
.contact-card,
.checkout-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.75rem;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.about-card h3,
.contact-card h3,
.checkout-card h3 {
  margin-top: 0;
  color: white;
}

.about-actions,
.contact-grid,
.checkout-actions {
  margin-top: 1.5rem;
}

.about-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-card a,
.policy-content a,
.footer-links a,
.hero-badges span,
.package-card .button,
.support-panel a {
  color: inherit;
}

.support-panel {
  margin-top: 2rem;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.75rem;
  background: rgba(255,255,255,0.04);
  text-align: center;
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #d7f8b1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.checkout-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.checkout-summary,
.checkout-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkout-summary h3 {
  margin-bottom: 0.5rem;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
}

.button--full {
  width: 100%;
}

.button--disabled {
  opacity: 0.55;
  pointer-events: none;
}

@media (max-width: 980px) {
  .about-grid,
  .contact-grid,
  .checkout-card {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  padding: 2rem 0;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

@media (max-width: 980px) {
  .feature-grid,
  .offer-grid,
  .testimonial-grid,
  .faq-grid,
  .guarantee-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
    order: 3;
    padding: 0.5rem 0 1rem;
    border-top: 1px solid var(--border);
    margin-top: 0.25rem;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 0.65rem 0;
    width: 100%;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }
}

@media (min-width: 600px) and (max-width: 980px) {
  .feature-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero-copy h1 {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-width: 80%;
    margin: 0 auto;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section-header {
    margin-bottom: 1.5rem;
  }

  .section-header h2,
  .guarantee-card h2 {
    font-size: clamp(1.6rem, 7vw, 2.5rem);
  }

  .feature-card,
  .package-card,
  .testimonial-card,
  .faq-card,
  .order-summary,
  .guarantee-card,
  .about-card,
  .contact-card {
    padding: 1.25rem;
  }

  .package-card__top {
    padding: 1.5rem 1.25rem 1.25rem;
  }

  .package-card__body {
    padding: 1.25rem;
  }

  .package-card__body img {
    width: 140px;
  }

  .package-current-price {
    font-size: 2rem;
  }

  .button {
    min-height: 48px;
  }

  .hero-badges {
    gap: 0.5rem;
    font-size: 0.85rem;
  }

  .hero-badges span {
    padding: 0.6rem 0.75rem;
  }

  .guarantee-grid {
    grid-template-columns: 1fr;
  }

  .modal-box {
    padding: 1.5rem;
    width: calc(100% - 1.5rem);
    max-height: 90vh;
    overflow-y: auto;
  }
}

@media (max-width: 480px) {
  .header-inner {
    gap: 0.5rem;
    padding: 0.75rem 0;
  }

  .button--small {
    padding: 0.6rem 0.9rem;
    font-size: 0.85rem;
  }

  .eyebrow {
    font-size: 0.75rem;
  }

  .testimonial-meta img {
    width: 48px;
    height: 48px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    gap: 0.75rem;
    font-size: 0.9rem;
  }
}
