:root {
  --bg: #040404;
  --surface: #151515;
  --border: #313131;
  --muted: #9a9a9a;
  --text: #ffffff;
  --text-muted: #c7c7c7;
  --accent: #e81717;
  --accent-mid: #b10909;
  --accent-dark: #4b0404;
}

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

body {
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--text-muted);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

button {
  font-family: inherit;
}

.container {
  width: min(75rem, 100% - 3rem);
  margin: 0 auto;
}

.site-header {
  border-bottom: 0.1rem solid var(--border);
  background: rgba(21, 21, 21, 0.53);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(0.5rem);
}

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

.logo {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.4;
  display: flex;
  gap: 0.2rem;
  color: var(--text);
}

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

.site-nav {
  display: flex;
  gap: 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-nav a {
  background: transparent;
  padding: 0.4rem 0.6rem;
  transition: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 62.4rem;
  background: linear-gradient(90deg, var(--accent-mid) 0%, var(--accent-dark) 100%);
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  border: none;
}

.btn-small {
  font-size: 0.9rem;
  padding: 0.6rem 1.4rem;
}

.hero {
  padding: 5rem 0 3.8rem;
  text-align: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}

.eyebrow {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.hero-title {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  color: var(--text);
}

.hero-line {
  display: block;
}

.hero-line-inline {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  white-space: nowrap;
}

.hero-script-wrap {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  padding-bottom: 0.6rem;
}

.hero-script {
  font-family: "Shadows Into Light", cursive;
  font-size: 4.5rem;
  color: var(--accent);
  text-shadow: 0 0.2rem 1.9rem rgba(232, 23, 23, 1);
}

.hero-underline {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 21rem;
}

section {
  padding: 4.4rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  color: var(--text);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.8rem;
  margin-bottom: 2.8rem;
  text-align: center;
}

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

.feature-card {
  background: var(--surface);
  border-radius: 0.8rem;
  padding: 1.2rem 1rem 1.4rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.feature-icon {
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 0.2rem;
  background: #2c2c2a;
  display: grid;
  place-items: center;
  color: #c9c9c9;
  font-size: 1.1rem;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text);
}

.feature-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.steps {
  display: grid;
  gap: 3.5rem;
  max-width: 40rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.step {
  display: flex;
  gap: 1.1rem;
  align-items: center;
}

.step-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.step-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.step-content span {
  color: #cacaca;
  font-size: 2rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}

.faq-list {
  margin-top: 1.8rem;
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1.5rem 2rem;
  background: var(--surface);
  border-radius: 1.2rem;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1rem;
  line-height: 1.5;
}

.faq-item summary span {
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 0.8rem;
}

.pricing-card {
  margin-top: 1.8rem;
  background: var(--surface);
  border-radius: 1.2rem;
  padding: 1.6rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 1.2rem;
  text-align: left;
  box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.35);
}

.pricing-card .btn {
  margin-top: 1rem;
}

.pricing-main {
  display: grid;
  gap: 0.4rem;
  justify-items: start;
}

.plan-eyebrow {
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(232, 23, 23, 0.12);
  border: 0.1rem solid rgba(232, 23, 23, 0.3);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  text-transform: none;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  justify-content: flex-start;
}

.plan-currency, .plan-cents {
  font-size: 1rem;
  color: var(--text-muted);
}

.plan-amount {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--text);
}

.plan-note {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.plan-list {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: left;
}

.plan-list li {
  padding-left: 1.6rem;
  position: relative;
}

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

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

.testimonial-card {
  margin-top: 1.8rem;
  background: var(--surface);
  border-radius: 0.8rem;
  padding: 1.6rem;
  max-width: 35rem;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 1.5rem;
  text-align: left;
}

.testimonial-media {
  display: block;
  border-radius: 0.6rem;
  overflow: hidden;
}

.testimonial-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}


.testimonial-name {
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
}

.testimonial-role {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.2s ease;
  text-decoration: none;
}

.testimonial-role:hover {
  color: var(--text);
}

.testimonial-quote {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

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

.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.final-cta {
  padding: 4.4rem 0 5.6rem;
}

.cta-content {
  text-align: center;
  display: grid;
  gap: 1.2rem;
  justify-items: center;
}

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

.cta-title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
}

.cta-title strong {
  font-weight: 700;
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 11;
  color: var(--muted);
  font-size: 1.5rem;
  transition: color 0.2s ease;
  align-items: center;
  justify-content: center;
}

.burger-menu:hover {
  color: var(--accent);
}

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

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

  .burger-menu {
    display: flex;
  }

  #btn-nav {
    display: none;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(21, 21, 21, 0.53);
    backdrop-filter: blur(0.5rem);
    border-bottom: 0.1rem solid var(--border);
    flex-direction: column;
    gap: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    z-index: 10;
  }

  .site-nav.active {
    display: flex;
  }

  .site-nav a {
    padding: 0.8rem 1rem;
    display: block;
    border-top: 0.05rem solid rgba(67, 67, 63, 0.5);
  }

  .site-nav a:hover {
    background: rgba(232, 23, 23, 0.1);
    color: var(--text);
  }

  .hero {
    padding-top: 4rem;
  }

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

@media (max-width: 720px) {
  .container {
    width: min(100%, 100% - 2.5rem);
  }

  .btn {
    width: auto;
    padding: 0.8rem 1.4rem;
  }

  .hero-line-inline {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-script-wrap {
    padding-bottom: 0.5rem;
  }

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

@media (max-width: 375px) {
  .hero-title {
    font-size: 2.6rem;
  }

  .hero-script {
    font-size: 3.4rem;
  }
}

.site-footer {
  padding: 2.4rem 0;
  margin-top: 2.4rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-logo {
  height: 3.5rem;
  width: auto;
  opacity: 1;
}

.footer-copyright {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0;
}