:root {
  --bg: #04040a;
  --surface: #0a0a12;
  --card: #10101a;
  --accent: #c8f55a;
  --text: #ffffff;
  --muted: #c0bdd8;
  --border: rgba(255, 255, 255, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  color-scheme: dark;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 9999;
}

a {
  color: inherit;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(6, 6, 8, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.logo,
.footer-logo {
  font-family: "DM Serif Display", serif;
  font-size: 1.3rem;
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta,
.btn-primary,
.btn-outline,
.submit-btn {
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s, border-color 0.2s, color 0.2s;
}

.nav-cta {
  background: var(--accent);
  color: #060608;
  border: none;
  padding: 10px 22px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-block;
}

.nav-cta:hover,
.btn-primary:hover,
.btn-outline:hover,
.submit-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 245, 90, 0.04) 0%, transparent 70%);
  top: -100px;
  right: -200px;
  pointer-events: none;
}

.hero-glow2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126, 255, 160, 0.03) 0%, transparent 70%);
  bottom: 0;
  left: 100px;
  pointer-events: none;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 245, 90, 0.1);
  border: 1px solid rgba(200, 245, 90, 0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.5px;
  width: fit-content;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}

.hero-tag::before {
  content: "●";
  font-size: 0.5rem;
}

.hero-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 1.05;
  letter-spacing: -1px;
  max-width: 820px;
  color: #ffffff;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.8);
  opacity: 0;
  animation: fadeUp 0.7s 0.1s ease forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-desc {
  margin-top: 28px;
  max-width: 500px;
  font-size: 1.05rem;
  color: #c0bdd0;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s ease forwards;
}

.hero-actions {
  margin-top: 48px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s 0.3s ease forwards;
}

.btn-primary {
  background: var(--accent);
  color: #060608;
  border: none;
  padding: 15px 32px;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-block;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 15px 32px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-block;
}

.btn-primary--small {
  margin-top: 8px;
  font-size: 0.85rem;
  padding: 12px 24px;
}

.btn-full {
  display: block;
  text-align: center;
  padding: 13px;
}

.hero-metrics {
  margin-top: 72px;
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: fadeUp 0.7s 0.4s ease forwards;
}

.metric-val {
  font-family: "DM Serif Display", serif;
  font-size: 2.6rem;
  line-height: 1;
}

.metric-val span {
  color: var(--accent);
}

.metric-label {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
}

.strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  background: var(--surface);
}

.strip-label {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.strip-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tag {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.2px;
}

section {
  padding: 100px 48px;
}

.s-label {
  display: block;
  width: min(100%, 1200px);
  margin: 0 auto 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
}

.s-title {
  width: min(100%, 1200px);
  margin: 0 auto 48px;
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.s-title em {
  font-style: italic;
  color: var(--muted);
}

.services-bg {
  background: var(--surface);
}

.services-grid,
.results-grid,
.pricing-grid,
.contact-wrap {
  width: min(100%, 1180px);
  margin-inline: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 16px;
}

.svc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  transition: border-color 0.25s, transform 0.2s;
}

.svc-card:hover {
  border-color: rgba(200, 245, 90, 0.3);
  transform: translateY(-4px);
}

.svc-icon {
  width: 48px;
  height: 48px;
  background: rgba(200, 245, 90, 0.08);
  border: 1px solid rgba(200, 245, 90, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 24px;
}

.icon-svg {
  width: 22px;
  height: 22px;
  display: block;
  color: currentColor;
}

.svc-name {
  font-family: "DM Serif Display", serif;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.svc-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

.svc-includes {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.svc-includes span {
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  gap: 8px;
}

.svc-includes span::before {
  content: "—";
  color: var(--accent);
  flex-shrink: 0;
}

.process-steps {
  width: min(100%, 960px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.p-step {
  background: var(--surface);
  padding: 36px 28px;
  transition: background 0.2s;
}

.p-step:hover {
  background: #16161f;
}

.p-step-num {
  font-family: "DM Serif Display", serif;
  font-size: 2.2rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 20px;
}

.p-step-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.p-step-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

.results-bg {
  background: var(--surface);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.result-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  transition: border-color 0.25s;
}

.result-card:hover {
  border-color: rgba(200, 245, 90, 0.2);
}

.result-niche {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.result-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 20px;
}

.rs-val {
  font-family: "DM Serif Display", serif;
  font-size: 2rem;
}

.rs-val span {
  color: var(--accent);
}

.rs-label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 4px;
}

.result-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.result-placeholder {
  background: var(--card);
  border: 1px dashed rgba(200, 245, 90, 0.2);
  border-radius: 12px;
  padding: 48px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
}

.result-placeholder .rp-icon {
  width: 28px;
  height: 28px;
  opacity: 0.4;
  color: var(--accent);
}

.result-placeholder p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.result-placeholder strong {
  color: var(--accent);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  align-items: start;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 32px;
  position: relative;
  transition: border-color 0.25s;
}

.price-card.popular {
  background: linear-gradient(160deg, #131a0f 0%, var(--surface) 100%);
  border-color: rgba(200, 245, 90, 0.35);
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 28px;
  background: var(--accent);
  color: #060608;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
}

.price-plan {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.price-amount {
  font-family: "DM Serif Display", serif;
  font-size: 3rem;
  line-height: 1;
}

.price-amount sub {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
  vertical-align: middle;
}

.price-period {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 6px;
}

hr.pdiv {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 32px;
}

.price-features li {
  font-size: 0.88rem;
  color: var(--muted);
  display: flex;
  gap: 10px;
}

.price-features li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.price-features li.na {
  opacity: 0.4;
}

.price-features li.na::before {
  content: "✕";
  color: var(--muted);
}

.faq-bg {
  background: var(--surface);
}

.faq-list {
  width: min(100%, 720px);
  margin-inline: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-q {
  padding: 22px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  user-select: none;
}

.faq-q:hover {
  background: #17171f;
}

.faq-icon {
  color: var(--accent);
  font-size: 1.2rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  transition: max-height 0.35s ease, padding 0.3s ease;
}

.faq-a.open {
  max-height: 300px;
  padding: 20px 28px;
}

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

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.contact-info p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.c-link {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 14px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s;
}

.c-link:hover {
  border-color: var(--accent);
}

.c-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 36px;
}

.form-title {
  font-family: "DM Serif Display", serif;
  font-size: 1.6rem;
  margin-bottom: 28px;
}

.fg {
  margin-bottom: 16px;
}

.fg label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.fg input,
.fg textarea,
.fg select {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.fg input:focus,
.fg textarea:focus,
.fg select:focus {
  border-color: var(--accent);
}

.fg select option {
  background: var(--bg);
}

.fg textarea {
  min-height: 110px;
}

.fg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.submit-btn {
  width: 100%;
  background: var(--accent);
  color: #060608;
  border: none;
  padding: 15px;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  margin-top: 8px;
}

.form-note {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
}

.form-status {
  min-height: 1.2em;
  margin-top: 12px;
  font-size: 0.9rem;
  text-align: center;
  color: var(--muted);
}

.form-status.is-success {
  color: var(--accent);
}

.form-status.is-error {
  color: #ff8d8d;
}

footer {
  border-top: 1px solid var(--border);
  padding: 28px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 1100px) {
  section {
    padding: 112px 48px;
  }

  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 48px 72px;
    align-items: center;
  }

  .hero-tag,
  .hero-title,
  .hero-desc,
  .hero-actions {
    grid-column: 1;
  }

  .hero-metrics {
    grid-column: 2;
    margin-top: 0;
    padding: 28px;
    flex-direction: column;
    gap: 28px;
    align-self: start;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(10, 10, 18, 0.65);
    backdrop-filter: blur(12px);
  }

  .hero-metrics > div {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
  }

  .hero-metrics > div:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  .hero-title {
    max-width: 700px;
  }

  .hero-desc {
    max-width: 540px;
  }

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

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

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

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

  .contact-wrap {
    grid-template-columns: 0.95fr 1.05fr;
  }
}

@media (min-width: 1440px) {
  nav {
    padding-inline: 64px;
  }

  section {
    padding-left: 64px;
    padding-right: 64px;
  }

  .hero {
    padding-top: 152px;
  }

  footer {
    padding-inline: 64px;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 16px 20px;
  }

  .nav-links {
    display: none;
  }

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

  section {
    padding: 72px 20px;
  }

  .strip {
    padding: 20px;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-metrics {
    gap: 32px;
  }

  footer {
    padding: 24px 20px;
  }

  .fg-row {
    grid-template-columns: 1fr;
  }

  .form-wrap {
    padding: 28px 20px;
  }
}
