:root {
  --purple: #6a1b9a;
  --magenta: #d81b60;
  --orange: #ff7900;
  --charcoal: #1f1f1f;
  --graphite: #2a2a2a;
  --fog: #f6f6f8;
  --white: #ffffff;
}

/* Smooth scroll globally */
html { scroll-behavior: smooth; }

/* GENTLE scroll-snapping between sections */
main, body {
  scroll-snap-type: y proximity;
}
section {
  scroll-snap-align: start;
  scroll-snap-stop: normal; /* gentle, not mandatory */
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--fog);
  color: var(--charcoal);
  line-height: 1.6;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  max-width: 1280px;
  margin: 0 auto;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  height: 36px;
  width: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--purple), var(--orange));
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.5px;
}

nav {
  display: none;
  gap: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}

nav a {
  color: #5b6371;
  text-decoration: none;
  transition: color 0.2s;
}

nav a:hover {
  color: #090f1a;
}

/* Hamburger Menu */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 40;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-content {
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu-link {
  color: #374151;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem;
  border-radius: 8px;
  transition: background 0.2s;
}

.mobile-menu-link:hover {
  background: var(--fog);
}

.btn-primary {
  background: var(--orange);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.875rem;
  transition: opacity 0.2s;
}

.btn-primary:hover {
  opacity: 0.9;
}

/* Hero */
/* .hero {
  padding: 4rem 1rem;
  background: var(--fog);
}

.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: #111827;
}

.hero-highlight {
  color: var(--magenta);
}

.hero p {
  margin-top: 1rem;
  color: #374151;
  font-size: 1.125rem;
}

.hero-buttons {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-buttons a {
  text-decoration: none;
}

.hero-buttons a.btn-primary:hover {
  background-color: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  transition: all 0.2s;
}

.btn-large {
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s;
  border: 2px solid transparent;
}

.btn-outline {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
}

.btn-outline:hover {
  background: var(--purple);
  color: white;
  transition: all 0.2s;
} */

.hero { position: relative; overflow: hidden; }
.hero-slider {
  position: relative;
  width: 100%;
  height: clamp(420px, 60vh, 760px);
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transform: scale(1.01);
  transition: opacity 400ms ease, transform 500ms ease;
  will-change: opacity, transform;
}
.hero-slide.is-active {
  opacity: 1; transform: scale(1);
}
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
  transform: translateY(var(--parallax-y, 0px));
  transition: transform 0ms; /* updated via JS */
}
.hero-overlay {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  padding: 2rem; text-align: center;
  background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.35));
  color: #fff;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* Slider UI */
.hero-arrow {
  position: absolute; top: 50%; translate: 0 -50%;
  background: rgba(0,0,0,.45); border: 0; color: #fff;
  padding: .6rem .8rem; border-radius: 999px; cursor: pointer;
}
.hero-prev { left: 1rem; } .hero-next { right: 1rem; }
.hero-bullets {
  position: absolute; bottom: 1rem; left: 50%; translate: -50% 0;
  display: flex; gap: .5rem;
}
.hero-bullets button {
  width: .65rem; height: .65rem; border-radius: 999px;
  border: 0; background: rgba(255,255,255,.45);
}
.hero-bullets button[aria-current="true"] { background: #fff; }

/* Reveal-on-scroll (fade + up) */
.reveal { opacity: 0; transform: translateY(20px); }
.reveal.reveal-in {
  opacity: 1; transform: translateY(0);
  transition: opacity 450ms ease, transform 450ms ease;
  will-change: opacity, transform;
}

/* Reduced motion: disable long transitions/parallax/autoplay feel */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-slide, .reveal.reveal-in { transition: none !important; }
}

/* How It Works Section */
.how-it-works {
  background: white;
  padding: 4rem 1rem;
}

.how-it-works-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--fog);
  border-radius: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 32px;
  height: 32px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.step-icon-wrapper {
  position: relative;
  display: inline-block;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}

.step-description {
  color: #4b5563;
  line-height: 1.6;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 768px;
  margin: 0 auto;
  margin-bottom: 2rem;
}

.kicker {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--magenta);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  margin-top: 0.5rem;
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
}

.section-subtitle {
  margin-top: 0.75rem;
  color: #4b5563;
}

/* Tabs */
.tabs-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  background: #f3f4f6;
  padding: 0.25rem;
  border-radius: 12px;
}

.tab-button {
  padding: 0.375rem 0.75rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  background: transparent;
  color: #4b5563;
  cursor: pointer;
  transition: all 0.2s;
}

.tab-button.active {
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  color: #111827;
}

.tab-button:not(.active):hover {
  color: #111827;
}

/* Mobile Section */
.mobile-section {
  background: var(--fog);
  padding: 4rem 1rem;
}

/* Internet Section */
.internet-section {
  background: white;
  padding: 4rem 1rem;
}

.subsection {
  margin-bottom: 4rem;
}

.subsection:last-child {
  margin-bottom: 0;
}

/* Plans Grid */
.plans-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.plan-card {
  position: relative;
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
}

.plan-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.plan-card.highlight {
  border: 2px solid var(--orange);
}

.badge {
  position: absolute;
  top: -12px;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.plan-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
}

.plan-price-container {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.plan-price {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--charcoal);
}

.plan-period {
  font-size: 0.875rem;
  color: #6b7280;
}

.plan-features {
  list-style: none;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.plan-features li {
  font-size: 0.875rem;
  color: #374151;
}

.plan-button {
  width: 100%;
  margin-top: 1.5rem;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: opacity 0.2s;
}

.plan-button:hover {
  opacity: 0.9;
}

.plan-note {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: #6b7280;
}

/* FAQ */
.faq-container {
  max-width: 896px;
  margin: 0 auto;
  padding: 4rem 1rem;
  background: var(--fog);
}

.faq-list {
  margin-top: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 1.5rem;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: #111827;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--magenta);
  user-select: none;
  transition: transform 0.3s;
}

.faq-answer {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #374151;
  display: none;
}

details[open] .faq-answer {
  display: block;
}

details[open] .faq-toggle {
  transform: rotate(45deg);
}

/* Callout */
.callout {
  margin: 0 auto;
  max-width: 1280px;
  padding: 4rem 1rem;
  /* background: white; */
}

.callout-content {
  background: linear-gradient(135deg, var(--purple), var(--orange));
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  color: white;
}

.callout h3 {
  font-size: 1.875rem;
  font-weight: 800;
}

.callout p {
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.callout-button {
  margin-top: 1.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.callout-button:hover {
  background: black;
}

/* Footer */
footer {
  background: var(--charcoal);
  color: white;
  padding: 3rem 0 1.5rem;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  gap: 2rem;
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.footer-brand {
  grid-column: 1 / -1;
}

.footer-brand .logo-container {
  margin-bottom: 1rem;
}

.footer-brand .logo-text {
  color: white;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 400px;
}

.footer-section h4 {
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-section ul li a:hover {
  color: white;
}

.footer-section ul li {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: white;
}

/* Responsive */
@media (min-width: 768px) {
  nav {
    display: flex;
  }

  .hamburger {
    display: none;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .how-it-works-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1;
  }

  .callout-content {
    padding: 3rem;
  }

  .callout h3 {
    font-size: 2rem;
  }
}

.hidden {
  display: none;
}