:root {
  --bg: #050816;
  --bg-alt: #06091b;
  --bg-elevated: #070b1f;
  --bg-elevated-soft: rgba(7, 11, 31, 0.9);
  --accent: #60f1ff;
  --accent-soft: rgba(96, 241, 255, 0.15);
  --accent-secondary: #ff6bcb;
  --accent-gradient: linear-gradient(120deg, #60f1ff, #a679ff);
  --text-main: #f5f7ff;
  --text-muted: #a6afd9;
  --text-soft: #7b84ad;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.14);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.8);
  --radius-lg: 20px;
  --radius-sm: 10px;
  --nav-height: 76px;
  --transition-fast: 180ms ease-out;
  --transition-med: 240ms ease-out;
  --pricing-green: #22c55e;
  --pricing-green-soft: rgba(34, 197, 94, 0.16);
}

/* Reset & base */

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

html {
  scroll-behavior: smooth;
  background: radial-gradient(circle at top left, #121633 0, #050816 50%, #02030a 100%);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(96, 241, 255, 0.12) 0, transparent 40%),
    radial-gradient(circle at 110% 10%, rgba(166, 121, 255, 0.14) 0, transparent 40%),
    radial-gradient(circle at 0 100%, rgba(255, 107, 203, 0.05) 0, transparent 45%),
    #050816;
}

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

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

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.3rem, 3.3vw, 3.2rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  line-height: 1.15;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.3;
}

/* Navigation */

.site-header {
  position: relative;
  overflow: hidden;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(20px);
  background:
    linear-gradient(to bottom, rgba(5, 8, 22, 0.9), rgba(5, 8, 22, 0.85), transparent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav--scrolled {
  background:
    linear-gradient(to bottom, rgba(5, 8, 22, 0.97), rgba(5, 8, 22, 0.96));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.65);
}

.nav__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.75rem min(6vw, 1.5rem);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.15rem 0.35rem;
  border-radius: 999px;
  background: radial-gradient(circle at top left, rgba(96, 241, 255, 0.12), transparent 55%);
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.nav__brand:hover {
  transform: translateY(-1px);
  background: radial-gradient(circle at top left, rgba(96, 241, 255, 0.18), transparent 55%);
}

.nav__mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #60f1ff, #222951);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 0 0 1px rgba(4, 8, 22, 0.9), 0 8px 20px rgba(0, 0, 0, 0.7);
}

.nav__brand-text {
  display: flex;
  flex-direction: column;
}

.nav__name {
  font-size: 0.98rem;
  font-weight: 600;
}

.nav__tagline {
  font-size: 0.75rem;
  color: var(--text-soft);
}

.nav__links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.55rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.nav__link {
  position: relative;
  padding: 0.35rem 0;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  border-radius: 999px;
  background: var(--accent-gradient);
  transition: width var(--transition-med);
}

.nav__link:hover {
  color: var(--text-main);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__cta {
  margin-left: 1.25rem;
}

.nav__toggle {
  display: none;
  margin-left: auto;
  width: 38px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(5, 8, 22, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav__toggle-line {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #e3e7ff;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

/* Hero */

.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.8rem min(6vw, 1.5rem) 4.5rem;
  min-height: calc(100vh - var(--nav-height));
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  position: relative;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 15%;
  border-radius: 40px;
  background:
    radial-gradient(circle at 0 0, rgba(96, 241, 255, 0.22), transparent 55%),
    radial-gradient(circle at 110% 30%, rgba(166, 121, 255, 0.22), transparent 50%);
  opacity: 0.25;
  filter: blur(5px);
  z-index: -2;
}

.hero::after {
  inset: 10%;
  background: radial-gradient(circle at 10% 90%, rgba(255, 107, 203, 0.25), transparent 60%);
  opacity: 0.18;
}

.hero__content {
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  background: radial-gradient(circle at top left, rgba(96, 241, 255, 0.18), transparent 55%);
  border: 1px solid rgba(96, 241, 255, 0.35);
}

.hero__title {
  margin-top: 1.1rem;
  margin-bottom: 0.9rem;
}

.hero__subtitle {
  margin: 0;
  font-size: 0.98rem;
  max-width: 33rem;
  color: var(--text-muted);
}

.hero__actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.hero__grid {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.hero-pill {
  padding: 0.9rem;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(11, 15, 39, 0.98), rgba(10, 13, 33, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.85);
}

.hero-pill h3 {
  margin: 0 0 0.25rem;
  font-size: 0.9rem;
}

.hero-pill p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.hero__aside {
  position: relative;
}

.hero-card {
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(9, 12, 35, 0.94), rgba(5, 8, 22, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  padding: 1.3rem 1.4rem;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0 0, rgba(96, 241, 255, 0.11), transparent 50%),
    radial-gradient(circle at 110% 0, rgba(166, 121, 255, 0.12), transparent 55%);
  opacity: 0.9;
  mix-blend-mode: screen;
  z-index: -1;
}

.hero-card__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

.hero-card__list {
  margin: 0 0 0.9rem;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-card__list li + li {
  margin-top: 0.3rem;
}

.hero-card__note {
  margin: 0 0 0.9rem;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.hero-card .btn--full {
  margin-top: 0.2rem;
}

/* Sections & layout */

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 4.2rem min(6vw, 1.5rem);
}

.section--alt {
  background:
    radial-gradient(circle at 100% 0, rgba(166, 121, 255, 0.09), transparent 55%),
    rgba(5, 7, 23, 0.98);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.85);
  margin-top: 3rem;
}

.section--mastermind {
  position: relative;
}

.section--mastermind::before {
  content: "";
  position: absolute;
  inset: 6% 12%;
  border-radius: 40px;
  background:
    radial-gradient(circle at 0 0, rgba(96, 241, 255, 0.16), transparent 55%),
    radial-gradient(circle at 100% 0, rgba(166, 121, 255, 0.16), transparent 55%);
  opacity: 0.18;
  pointer-events: none;
}

.section--contact {
  margin-bottom: 4rem;
}

.section__header {
  margin-bottom: 2rem;
}

.section__header--split {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
}

.section__lead {
  margin-top: 0.6rem;
  max-width: 36rem;
  font-size: 0.98rem;
  color: var(--text-muted);
}

.section__body {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.section__body--split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
}

.section__body--align-center {
  align-items: center;
}

.section__text {
  font-size: 0.96rem;
  color: var(--text-muted);
}

.section__text p + p {
  margin-top: 0.85rem;
}

/* Grid utilities */

.grid {
  display: grid;
  gap: 1.6rem;
}

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

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

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

/* Cards & lists */

.card {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(11, 15, 39, 0.97), rgba(6, 9, 27, 0.98));
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  padding: 1.3rem 1.4rem;
}

.card--service {
  position: relative;
  overflow: hidden;
}

.card--service::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0 0, rgba(96, 241, 255, 0.12), transparent 55%),
    radial-gradient(circle at 100% 0, rgba(166, 121, 255, 0.14), transparent 55%);
  opacity: 0.35;
  mix-blend-mode: screen;
  pointer-events: none;
}

.card--highlight {
  background:
    linear-gradient(140deg, rgba(9, 12, 35, 0.97), rgba(5, 8, 22, 0.98));
  border: 1px solid var(--border-strong);
}

.card__header {
  margin-bottom: 0.75rem;
}

.card__eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin: 0 0 0.25rem;
}

.card__footer-text {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

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

.list {
  padding-left: 1.15rem;
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.list li + li {
  margin-top: 0.35rem;
}

.list--check {
  list-style: none;
  padding-left: 0;
}

.list--check li {
  position: relative;
  padding-left: 1.45rem;
}

.list--check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-gradient);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.list--dot {
  list-style: none;
  padding-left: 0;
}

.list--dot li {
  position: relative;
  padding-left: 1rem;
}

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

.list--plain {
  list-style: none;
  padding-left: 0;
}

/* About */

.about__image-wrapper {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.about__avatar {
  width: 140px;
  height: 140px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, #111633, #050816);
  border: 1px solid rgba(96, 241, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.9);
}

.about__avatar span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about__note {
  font-size: 0.8rem;
  color: var(--text-soft);
  text-align: center;
  max-width: 14rem;
}

.about__highlights {
  margin-top: 0.9rem;
  font-size: 0.9rem;
}

.about__highlights li + li {
  margin-top: 0.4rem;
}

/* Journey */

.journey {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.journey__step {
  position: relative;
  padding-top: 1.8rem;
}

.journey__badge {
  position: absolute;
  top: 0.8rem;
  left: 1.5rem;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--accent-gradient);
  color: #050816;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 3px var(--accent-soft);
}

/* FAQ */

.faq {
  display: grid;
  gap: 0.8rem;
}

.faq__item {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: linear-gradient(135deg, rgba(11, 15, 39, 0.96), rgba(6, 9, 27, 0.98));
  padding: 0.8rem 1.1rem;
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
}

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

.faq__item summary::after {
  content: "+";
  float: right;
  font-size: 1rem;
  color: var(--text-soft);
  transition: transform var(--transition-fast);
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
}

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

.faq__cta {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Contact */

.contact__list {
  margin-top: 0.7rem;
}

.contact__list a {
  color: var(--accent);
}

.contact__prompt {
  align-self: stretch;
}

/* Buttons */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(9, 12, 35, 0.9);
  color: var(--text-main);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast);
}

.btn--primary {
  background-image: var(--accent-gradient);
  color: #050816;
  border-color: rgba(96, 241, 255, 0.6);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.9);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.95);
}

.btn--ghost {
  background: rgba(5, 8, 22, 0.6);
  border-color: rgba(255, 255, 255, 0.14);
}

.btn--ghost:hover {
  background: rgba(10, 13, 35, 0.9);
}

.btn--outline {
  background: transparent;
  border-color: rgba(96, 241, 255, 0.6);
}

.btn--outline:hover {
  background: rgba(5, 8, 22, 0.9);
}

.btn--sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.78rem;
}

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

/* Footer */

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.6rem min(6vw, 1.5rem) 2rem;
  background: radial-gradient(circle at 0 0, rgba(96, 241, 255, 0.08), transparent 50%);
}

.footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.footer__brand {
  font-weight: 500;
  margin-bottom: 0.2rem;
}

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

.footer__links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--accent);
}

/* Modal */

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-med);
}

.modal.is-open {
  pointer-events: auto;
  opacity: 1;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(96, 241, 255, 0.18), transparent 50%),
    rgba(1, 2, 10, 0.92);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  max-width: 600px;
  width: calc(100% - 2.5rem);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(11, 15, 39, 0.99), rgba(5, 8, 22, 0.99));
  border: 1px solid rgba(96, 241, 255, 0.4);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.95);
  padding: 1.8rem 1.8rem 1.6rem;
  max-height: 90vh;
  overflow: auto;
}

.modal__close {
  position: absolute;
  right: 1rem;
  top: 0.8rem;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(5, 8, 22, 0.9);
  color: #e3e7ff;
  font-size: 1.2rem;
  cursor: pointer;
}

.modal__content h2 {
  margin-top: 0.2rem;
  margin-bottom: 0.4rem;
}

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

.modal__confirmation {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.modal__confirmation h3 {
  margin-top: 0;
}

/* Form */

.form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form__field label {
  font-size: 0.85rem;
  color: var(--text-soft);
}

.form__field input,
.form__field select,
.form__field textarea {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(3, 5, 18, 0.95);
  color: var(--text-main);
  font-size: 0.9rem;
  padding: 0.68rem 0.85rem;
  font-family: inherit;
}

.form__field textarea {
  border-radius: 16px;
  min-height: 96px;
  resize: vertical;
}

.form__field input::placeholder,
.form__field textarea::placeholder {
  color: var(--text-soft);
}

.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.form__checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 0.1rem;
}

.form__small {
  margin: 0.25rem 0 0;
  font-size: 0.78rem;
  color: var(--text-soft);
}

/* Reveal animation */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease-out, transform 420ms ease-out;
}

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

/* Pricing section */

.section--pricing {
  margin-top: 3.5rem;
  background:
    radial-gradient(circle at 0 0, rgba(96, 241, 255, 0.18), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(166, 121, 255, 0.16), transparent 60%),
    rgba(3, 5, 18, 0.98);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.9);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  border-radius: 24px;
  background: #f9fafb;
  color: #020617;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.35);
  border: 1px solid #e5e7eb;
  padding: 1.6rem 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
}

.pricing-card--featured {
  transform: translateY(-10px);
  border-width: 2px;
  border-color: #a855f7;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.55);
}

.pricing-card__badge {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: #0f172a;
  color: #e0f2fe;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.pricing-card__title {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
}

.pricing-card__tagline {
  margin: 0 0 0.9rem;
  font-size: 0.86rem;
  color: #4b5563;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin: 0 0 0.2rem;
}

.pricing-card__price-prefix {
  font-size: 0.86rem;
  color: #6b7280;
  margin-right: 0.1rem;
}

.pricing-card__currency {
  font-size: 1.1rem;
  font-weight: 500;
}

.pricing-card__amount {
  font-size: 2.1rem;
  font-weight: 700;
}

.pricing-card__period {
  font-size: 0.9rem;
  color: #6b7280;
}

.pricing-card__guarantee {
  margin: 0 0 0.8rem;
  font-size: 0.8rem;
  color: #15803d;
}

.pricing-card__section {
  margin-top: 0.9rem;
}

.pricing-card__subtitle {
  margin: 0 0 0.15rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9ca3af;
}

.pricing-list {
  font-size: 0.85rem;
  color: #4b5563;
}

.pricing-card .list--check li::before {
  background: var(--pricing-green);
  box-shadow: 0 0 0 3px var(--pricing-green-soft);
}

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

.pricing-card__fine-print {
  margin: 0.75rem 0 0;
  font-size: 0.78rem;
  color: #6b7280;
  text-align: center;
}

/* Comparison table */

.pricing-compare {
  margin-top: 3rem;
}

.pricing-compare__title {
  margin: 0 0 0.3rem;
}

.pricing-compare__subtitle {
  margin: 0 0 1.4rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 40rem;
}

.pricing-table-shell {
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 0 0, rgba(96, 241, 255, 0.18), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(166, 121, 255, 0.14), transparent 55%),
    #020617;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.pricing-table-scroll {
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.83rem;
}

.pricing-table thead {
  background: linear-gradient(135deg, #020617, #020617);
}

.pricing-table th,
.pricing-table td {
  padding: 0.75rem 1rem;
  text-align: left;
}

.pricing-table th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-soft);
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.pricing-table tbody tr:nth-child(odd) {
  background: rgba(15, 23, 42, 0.95);
}

.pricing-table tbody tr:nth-child(even) {
  background: rgba(15, 23, 42, 0.88);
}

.pricing-table tbody tr + tr td {
  border-top: 1px solid rgba(15, 23, 42, 0.95);
}

.pricing-table__feature {
  font-weight: 500;
  color: var(--text-main);
  white-space: nowrap;
}

.pricing-table td:not(.pricing-table__feature) {
  color: var(--text-muted);
  vertical-align: top;
}

.pricing-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.pricing-icon--check {
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.8);
  color: #bbf7d0;
}

.pricing-icon--cross {
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.8);
  color: #fecaca;
}

.pricing-compare__cta {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Responsive */

@media (max-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 2.3rem;
  }

  .hero__aside {
    order: -1;
  }

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

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

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

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

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

  .nav__cta {
    display: none;
  }

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

  .pricing-card--featured {
    transform: none;
  }

}

@media (max-width: 768px) {
  .nav__inner {
    padding-inline: 1rem;
  }

  .nav__links {
    position: fixed;
    inset: calc(var(--nav-height) - 0.2rem) 1rem auto 1rem;
    border-radius: 20px;
    background: linear-gradient(150deg, rgba(11, 15, 39, 0.98), rgba(5, 8, 22, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.9);
    padding: 0.65rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity var(--transition-med), transform var(--transition-med);
    margin-left: 0;
  }

  .nav__links--open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav__link {
    width: 100%;
    padding: 0.45rem 0.35rem;
    border-radius: 12px;
  }

  .nav__link::after {
    display: none;
  }

  .nav__link:hover {
    background: rgba(20, 25, 60, 0.9);
  }

  .nav__toggle {
    display: inline-flex;
  }

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

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

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

  .section--alt {
    border-radius: 24px;
  }

  .section {
    padding-inline: 1.1rem;
  }

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

  .modal__dialog {
    width: calc(100% - 1.8rem);
    padding-inline: 1.2rem;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
