:root {
  --bg-main: #111312;
  --bg-alt: #191b1a;
  --card-bg: #1f2120;
  --card-border: #2b2e2c;
  --accent: #f2c94c;
  --accent-soft: rgba(242, 201, 76, 0.15);
  --accent-green: #18a05c;
  --accent-green-soft: rgba(24, 160, 92, 0.1);
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --border-radius-lg: 18px;
  --border-radius-md: 12px;
  --border-radius-pill: 999px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.35);
  --shadow-card: 0 12px 30px rgba(0, 0, 0, 0.35);
  --max-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at top, #171918 0, #050505 60%);
  color: var(--text-main);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
}

.page-root {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Layout helpers */
main {
  flex: 1;
}

.section {
  padding: 3.5rem 1.5rem;
}

.section-alt {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.02), transparent);
}

.section-header {
  max-width: var(--max-width);
  margin: 0 auto 2rem;
}

.section-header h2 {
  font-size: 1.5rem;
  margin: 0 0 0.6rem;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 2rem;
  align-items: center;
  padding: 1.5rem 1.5rem 2.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-media img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-soft);
  display: block;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.9rem;
  border-radius: var(--border-radius-pill);
  background: rgba(0, 0, 0, 0.4);
  color: var(--accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid rgba(242, 201, 76, 0.35);
  width: fit-content;
}

.hero h1 {
  font-size: 1.9rem;
  line-height: 1.2;
  margin: 0;
}

.highlight {
  color: var(--accent);
}

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

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge {
  padding: 0.35rem 0.8rem;
  border-radius: var(--border-radius-pill);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
  font-size: 0.75rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.2rem;
}

.hero-note {
  margin: 0.3rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Buttons */
.btn {
  border: none;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.8rem 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, color 0.12s ease, border-color 0.12s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #18a05c, #14c46a);
  color: #07130b;
  box-shadow: 0 12px 25px rgba(20, 196, 106, 0.4);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(20, 196, 106, 0.55);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  border: 1px solid rgba(156, 163, 175, 0.4);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
}

.btn-full {
  width: 100%;
  margin-top: 0.75rem;
}

/* Cards & grids */
.grid-3,
.grid-2 {
  display: grid;
  gap: 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

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

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

.card {
  background: var(--card-bg);
  border-radius: var(--border-radius-md);
  padding: 1.1rem 1.1rem 1rem;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-card);
}

.card-outline {
  background: radial-gradient(circle at top right, rgba(242, 201, 76, 0.08), var(--card-bg));
}

.card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0.1rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.25rem;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Plans */
.plans-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.plan-card {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.5));
  border-radius: 22px;
  padding: 1.4rem 1.2rem 1.1rem;
  border: 1px solid rgba(107, 114, 128, 0.5);
  position: relative;
  box-shadow: var(--shadow-card);
}

.plan-card-featured {
  border-color: var(--accent-green);
  box-shadow: 0 18px 40px rgba(20, 196, 106, 0.35);
  background: radial-gradient(circle at top, var(--accent-green-soft), rgba(12, 12, 12, 0.9));
}

.plan-badge {
  position: absolute;
  top: -0.7rem;
  right: 1.2rem;
  background: var(--accent-green);
  color: #07130b;
  padding: 0.25rem 0.7rem;
  border-radius: var(--border-radius-pill);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.plan-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.plan-price {
  margin: 0 0 0.2rem;
  font-size: 1.4rem;
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}

.plan-price-main {
  font-weight: 700;
}

.plan-price-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.plan-or {
  margin: 0 0 0.25rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.plan-save {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: var(--accent);
  background: rgba(242, 201, 76, 0.06);
  border-radius: var(--border-radius-md);
  padding: 0.4rem 0.5rem;
}

.plan-list {
  margin-top: 0.3rem;
}

.plan-note {
  margin: 0.6rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.plans-footer {
  max-width: var(--max-width);
  margin: 1.8rem auto 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.plans-footer p {
  margin: 0 0 0.5rem;
}

/* FAQ */
.faq {
  max-width: var(--max-width);
  margin: 0 auto;
}

.faq-item {
  width: 100%;
  background: rgba(15, 15, 15, 0.9);
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  margin-bottom: 0.4rem;
  border: 1px solid rgba(55, 65, 81, 0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-main);
  cursor: pointer;
  font-size: 0.9rem;
  text-align: left;
}

.faq-item span:first-child {
  padding-right: 0.6rem;
}

.faq-icon {
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.22s ease;
  padding: 0 0.3rem;
  margin-bottom: 0.2rem;
}

.faq-content p {
  margin: 0.2rem 0 0.45rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Footer */
.footer {
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  padding: 1rem 1.5rem 1.3rem;
  background: rgba(0, 0, 0, 0.95);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.footer-inner p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 1.25rem;
  }

  .hero-media {
    order: 2;
  }

  .hero-content {
    order: 1;
  }

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

@media (max-width: 720px) {
  .section {
    padding: 2.2rem 1.2rem;
  }

  .hero {
    padding: 1.2rem 1.2rem 1.8rem;
    gap: 1.3rem;
  }

  .hero-media img {
    border-radius: 14px;
  }

  .hero-ctas {
    flex-direction: row;
  }

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

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

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

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

  .btn {
    padding-inline: 1.3rem;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 1.45rem;
  }

  .hero-subtitle {
    font-size: 0.88rem;
  }

  .badge {
    font-size: 0.7rem;
  }

  .section-header h2 {
    font-size: 1.25rem;
  }
}