/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: #F5A623;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #e6951e;
}

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

/* ── Layout ──────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Navigation ──────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid #2a2a2a;
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__logo-icon {
  width: 32px;
  height: 32px;
  background: #F5A623;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav__links a {
  color: #a0a0a0;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav__links a:hover {
  color: #ffffff;
}

/* ── Hero ────────────────────────────────────────────── */
.hero {
  padding: 140px 24px 80px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero__title span {
  color: #F5A623;
}

.hero__subtitle {
  font-size: 20px;
  color: #a0a0a0;
  margin-bottom: 40px;
  line-height: 1.5;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #000000;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero__cta:hover {
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.25);
}

.hero__cta svg {
  width: 20px;
  height: 20px;
}

/* ── Trust Row ───────────────────────────────────────── */
.trust {
  padding: 40px 24px 60px;
  max-width: 700px;
  margin: 0 auto;
}

.trust__row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.trust__icon {
  width: 28px;
  height: 28px;
  background: rgba(245, 166, 35, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust__icon svg {
  width: 14px;
  height: 14px;
  stroke: #F5A623;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Section ─────────────────────────────────────────── */
.section {
  padding: 80px 24px;
}

.section__label {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #F5A623;
  margin-bottom: 12px;
}

.section__title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section__desc {
  text-align: center;
  font-size: 17px;
  color: #a0a0a0;
  max-width: 560px;
  margin: 0 auto 56px;
}

/* ── Features Grid ───────────────────────────────────── */
.features {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: #3a3a3a;
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(245, 166, 35, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: #F5A623;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card__desc {
  font-size: 15px;
  color: #a0a0a0;
  line-height: 1.55;
}

/* ── Pricing ─────────────────────────────────────────── */
.pricing {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.pricing-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
}

.pricing-card--premium {
  border-color: #F5A623;
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #F5A623;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-card__name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}

.pricing-card__price {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 4px;
}

.pricing-card__price span {
  font-size: 16px;
  font-weight: 500;
  color: #a0a0a0;
}

.pricing-card__annual {
  font-size: 14px;
  color: #a0a0a0;
  margin-bottom: 24px;
}

.pricing-card__annual strong {
  color: #F5A623;
  font-weight: 600;
}

.pricing-card__features {
  list-style: none;
  margin-bottom: 28px;
}

.pricing-card__features li {
  font-size: 15px;
  color: #d0d0d0;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card__features li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(245, 166, 35, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23F5A623' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.pricing-card__features li.disabled {
  color: #555;
}

.pricing-card__features li.disabled::before {
  background: #222;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.btn {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn--primary {
  background: #F5A623;
  color: #000;
}

.btn--primary:hover {
  color: #000;
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.3);
}

.btn--secondary {
  background: #2a2a2a;
  color: #ffffff;
}

.btn--secondary:hover {
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* ── Footer ──────────────────────────────────────────── */
.footer {
  border-top: 1px solid #2a2a2a;
  padding: 40px 24px;
  text-align: center;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 20px;
}

.footer__links a {
  color: #a0a0a0;
  font-size: 14px;
  font-weight: 500;
}

.footer__links a:hover {
  color: #ffffff;
}

.footer__copy {
  font-size: 13px;
  color: #555;
}

/* ── Privacy / Text Page ─────────────────────────────── */
.text-page {
  padding: 120px 24px 80px;
  max-width: 800px;
  margin: 0 auto;
}

.text-page h1 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 8px;
}

.text-page .effective-date {
  font-size: 14px;
  color: #a0a0a0;
  margin-bottom: 48px;
}

.text-page h2 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 12px;
}

.text-page p {
  font-size: 16px;
  color: #d0d0d0;
  line-height: 1.7;
  margin-bottom: 16px;
}

.text-page ul {
  color: #d0d0d0;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  padding-left: 24px;
}

.text-page ul li {
  margin-bottom: 6px;
}

.text-page a {
  color: #F5A623;
}

/* ── Scroll Animations ───────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__title {
    font-size: 40px;
  }

  .section__title {
    font-size: 30px;
  }
}

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

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

  .hero {
    padding: 120px 20px 60px;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__subtitle {
    font-size: 17px;
  }

  .section {
    padding: 60px 20px;
  }

  .section__title {
    font-size: 26px;
  }

  .trust__row {
    gap: 12px;
  }

  .trust__badge {
    padding: 10px 16px;
    font-size: 13px;
  }

  .nav__inner {
    padding: 0 16px;
  }

  .text-page {
    padding: 100px 20px 60px;
  }

  .text-page h1 {
    font-size: 28px;
  }

  .text-page h2 {
    font-size: 20px;
  }
}
