:root {
  --bg: #07111f;
  --bg-soft: #0d1a2c;
  --surface: rgba(15, 28, 47, 0.82);
  --surface-2: #0f1f35;
  --text: #edf4ff;
  --muted: #b4c2d8;
  --line: rgba(255, 255, 255, 0.12);
  --brand: #3ecf8e;
  --brand-2: #5ab4ff;
  --brand-3: #ffd46d;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --radius-small: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(90, 180, 255, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(62, 207, 142, 0.12), transparent 30%),
    linear-gradient(180deg, #09111d 0%, #0a1525 42%, #08101b 100%);
  line-height: 1.6;
}

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

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

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.eyebrow,
.plan-tag,
.offer-topline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow,
.offer-topline {
  color: #05111f;
  background: linear-gradient(135deg, var(--brand), #a5ffd6);
  border-radius: 999px;
  padding: 0.35rem 0.72rem;
  width: fit-content;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(7, 16, 29, 0.78);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--brand), var(--brand-2));
  color: #04111e;
  font-weight: 800;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.85rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
}

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

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
}

.hero {
  padding-top: 5.8rem;
}

.hero-grid,
.why-grid,
.apply-grid,
.testimonial-grid,
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-copy h1,
.section-intro h2,
.why h2,
.compare h2,
.apply h2,
.testimonial-band h2,
.thank-you-card h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.05;
  margin: 1rem 0 1rem;
  letter-spacing: -0.04em;
}

.hero-copy h1 span,
.price-line strong,
.offer-card h2 span,
.thank-you-card h1 span {
  color: var(--brand);
}

.lead,
.section-intro p,
.why p,
.apply p,
.testimonial-band blockquote,
.site-footer p,
.thank-you-card p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-points {
  display: grid;
  gap: 1rem;
  margin: 1.8rem 0;
}

.hero-points div {
  padding: 1rem 1rem 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.03);
}

.hero-points strong,
.signal-grid strong,
.info-card h3,
.why-panel h3,
.price-head h3,
.process-grid h3,
.testimonial-card h3,
.contact-card strong,
.thank-you-card strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}

.hero-points span,
.signal-grid p,
.info-card p,
.panel-content p,
.price-card li,
.process-grid p,
.contact-card a,
.small-note,
.savings-card p,
.thank-you-points li {
  color: var(--muted);
}

.hero-actions,
.trust-row,
.contact-card,
.thank-you-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.trust-row {
  margin-top: 1.4rem;
}

.trust-row span {
  color: var(--muted);
  font-weight: 600;
}

.trust-row ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.trust-row li {
  padding: 0.45rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual img {
  width: min(560px, 100%);
}

.offer-card {
  position: absolute;
  top: 2rem;
  left: 0;
  max-width: 330px;
}

.offer-card h2 {
  font-size: 2rem;
  margin: 1rem 0 0.65rem;
  line-height: 1.1;
}

.offer-card p {
  color: var(--muted);
  margin: 0;
}

.offer-card ul,
.price-card ul,
.check-list,
.check-list.compact,
.thank-you-points {
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.offer-card li,
.check-list li,
.thank-you-points li {
  position: relative;
  padding-left: 1.35rem;
}

.offer-card li::before,
.check-list li::before,
.thank-you-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
}

.offer-badge {
  margin-top: 1.1rem;
  padding: 0.7rem 0.9rem;
  background: rgba(62, 207, 142, 0.12);
  color: #d8ffe9;
  border: 1px solid rgba(62, 207, 142, 0.24);
  border-radius: 14px;
  font-weight: 600;
}

.glass-card,
.info-card,
.price-card,
.comparison-table,
.process-grid article,
.contact-card,
.form-card,
.savings-card,
.thank-you-card {
  background: linear-gradient(180deg, rgba(18, 31, 51, 0.92), rgba(9, 20, 36, 0.92));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.glass-card,
.info-card,
.price-card,
.process-grid article,
.contact-card,
.form-card,
.savings-card,
.thank-you-card {
  padding: 1.4rem;
}

.signal-strip {
  padding: 0 0 1rem;
}

.signal-grid,
.cards.three-up,
.process-grid {
  display: grid;
  gap: 1.2rem;
}

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

.signal-grid article {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.15rem;
}

.section-intro {
  text-align: center;
  margin-bottom: 2.3rem;
}

.section-intro.narrow,
.compare .section-intro.narrow,
.left {
  max-width: 760px;
  margin-inline: auto;
}

.left {
  text-align: left;
  margin-inline: 0;
}

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

.info-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}

.why-panel {
  overflow: hidden;
  padding: 0;
}

.why-panel img {
  width: 100%;
  border-bottom: 1px solid var(--line);
}

.panel-content {
  padding: 1.4rem;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: rgba(62, 207, 142, 0.45);
  transform: translateY(-10px);
}

.featured-ribbon {
  position: absolute;
  top: -14px;
  left: 1.3rem;
  background: linear-gradient(135deg, var(--brand), #b3ffd8);
  color: #04111e;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
}

.plan-tag {
  color: var(--brand-3);
  letter-spacing: 0.06em;
  font-size: 0.78rem;
}

.price-head {
  margin-bottom: 1rem;
}

.price-head h3 {
  font-size: 1.6rem;
  margin: 0.55rem 0 0.4rem;
}

.price-line {
  margin: 0;
  display: grid;
  gap: 0.2rem;
}

.price-line strong {
  font-size: 2rem;
  line-height: 1;
}

.small-note {
  font-size: 0.88rem;
  margin-top: 0.55rem;
}

.price-card ul {
  margin-bottom: 1.4rem;
  flex: 1;
}

.price-card li {
  position: relative;
  padding-left: 1.25rem;
}

.price-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--brand);
}

.pricing-footer {
  margin-top: 1.4rem;
}

.savings-card {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.compare-wrap {
  display: grid;
  gap: 1.8rem;
}

.comparison-table {
  overflow: hidden;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.45fr repeat(4, 1fr);
}

.comparison-row > div {
  padding: 1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.comparison-row > div:last-child {
  border-right: 0;
}

.comparison-head > div {
  font-weight: 700;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.comparison-row .accent {
  color: #d5ffea;
  font-weight: 700;
}

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

.process-grid article span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(62, 207, 142, 0.16);
  color: var(--brand);
  font-weight: 800;
  margin-bottom: 1rem;
}

.testimonial-band blockquote {
  margin: 1rem 0 0;
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--text);
}

.faq-list {
  display: grid;
  gap: 0.9rem;
  max-width: 900px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0 1.2rem;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 0;
  font-weight: 700;
}

.faq-list details[open] summary {
  color: var(--brand);
}

.faq-list p {
  margin: 0 0 1.2rem;
  color: var(--muted);
}

.apply-grid {
  align-items: start;
}

.contact-card {
  margin-top: 1.6rem;
  justify-content: flex-start;
}

.contact-card > div {
  min-width: 220px;
}

.form-card {
  display: grid;
  gap: 1rem;
}

.form-card label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font: inherit;
  padding: 0.9rem 1rem;
}

.form-card select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #d8e7ff 50%),
    linear-gradient(135deg, #d8e7ff 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 2px),
    calc(100% - 16px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.6rem;
}

.form-card select option {
  color: #132235;
  background: #ffffff;
}

.form-card input::placeholder,
.form-card textarea::placeholder {
  color: #8fa0b9;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  outline: none;
  border-color: rgba(90, 180, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(90, 180, 255, 0.12);
}

.hidden-field {
  display: none !important;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.9rem 1.25rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #04111e;
  background: linear-gradient(135deg, var(--brand), #b2ffd8);
  box-shadow: 0 18px 40px rgba(62, 207, 142, 0.22);
}

.button-secondary,
.button-outline,
.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.button-small {
  padding: 0.75rem 1rem;
}

.button-full {
  width: 100%;
}

.site-footer {
  padding: 2rem 0 3.2rem;
  border-top: 1px solid var(--line);
}

.footer-grid {
  align-items: start;
}

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

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 0;
}

.thank-you-card {
  max-width: 760px;
}

.thank-you-card p {
  margin-top: 0;
}

@media (max-width: 1080px) {
  .hero-grid,
  .why-grid,
  .apply-grid,
  .testimonial-grid,
  .footer-grid,
  .cards.three-up,
  .pricing-grid,
  .signal-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .offer-card {
    position: relative;
    inset: auto;
    margin-bottom: 1rem;
    max-width: 100%;
  }

  .comparison-row {
    grid-template-columns: 1.3fr repeat(4, minmax(110px, 1fr));
  }
}

@media (max-width: 840px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: rgba(7, 16, 29, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero-copy h1,
  .section-intro h2,
  .why h2,
  .compare h2,
  .apply h2,
  .testimonial-band h2,
  .thank-you-card h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .comparison-table {
    overflow-x: auto;
  }

  .comparison-row {
    min-width: 780px;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 4rem 0;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .site-nav {
    top: 72px;
  }

  .button {
    width: 100%;
  }

  .hero-actions,
  .contact-card,
  .thank-you-actions {
    align-items: stretch;
  }

  .lead,
  .section-intro p,
  .why p,
  .apply p,
  .testimonial-band blockquote,
  .site-footer p,
  .thank-you-card p {
    font-size: 1rem;
  }
}
