:root {
  --bg: #080808;
  --surface: #151519;
  --text: #f5f4f2;
  --muted: rgba(245, 244, 242, .72);
  --line: rgba(245, 244, 242, .12);
  --primary: #7b35f5;
  --primary-2: #9b5cff;
  --font: 'TWK Everett', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.container {
  width: min(1440px, 96%);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: linear-gradient(180deg, rgba(8, 8, 8, .96) 0%, rgba(8, 8, 8, .82) 72%, rgba(8, 8, 8, 0) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(245, 244, 242, .08);
}

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

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  width: auto;
  height: 34px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: rgba(245, 244, 242, .46);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

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

.nav-cta {
  border-radius: 2px;
  padding-inline: 1.7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .72rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: .72rem 1rem;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-2);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--text);
  background: transparent;
}

.menu-toggle {
  display: none;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .45rem .6rem;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: auto;
  padding-top: 84px;
  background:
    radial-gradient(circle at top left, rgba(155, 92, 255, .05), transparent 34%),
    #090909;
  overflow: hidden;
}

.hero-panel {
  position: relative;
  min-height: 0;
}

.hero-copy {
  display: flex;
  align-items: center;
  padding: 4rem 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(4rem, 7vw, 6.2rem) clamp(1.4rem, 3vw, 2.6rem) clamp(4rem, 6vw, 5.8rem) clamp(3rem, 5vw, 5.6rem);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 690px);
  padding-left: clamp(1.4rem, 2vw, 2.1rem);
  display: grid;
  align-content: center;
}

.hero-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: min(50vh, 410px);
  background: linear-gradient(180deg, rgba(155, 92, 255, .04), rgba(155, 92, 255, .98), rgba(155, 92, 255, .06));
  box-shadow: 0 0 28px rgba(123, 53, 245, .46);
}

.eyebrow {
  color: var(--primary-2);
  text-transform: uppercase;
  letter-spacing: .38em;
  font-size: .76rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: rgba(185, 125, 255, .8);
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.8rem, 3.8vw, 4rem);
  margin: .5rem 0 1rem;
}

h1 span {
  color: var(--primary-2);
}

h2 {
  font-size: clamp(2rem, 3vw, 2.9rem);
  margin: .5rem 0 1rem;
}

h3 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
}

.hero-content h1 {
  text-transform: uppercase;
  text-shadow: 0 8px 28px rgba(0, 0, 0, .45);
  line-height: .88;
  letter-spacing: -.05em;
  font-size: clamp(4.2rem, 8vw, 7.1rem);
  max-width: 8.2ch;
  margin-bottom: 1.7rem;
}

.hero-content h1 span {
  display: block;
  color: var(--primary-2);
}

.hero-lead {
  font-size: clamp(1.05rem, 1.3vw, 1.26rem);
  line-height: 1.72;
  max-width: 27ch;
  color: rgba(245, 244, 242, .58);
  font-weight: 400;
  margin-bottom: 2.7rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
}

.hero-actions .btn {
  min-width: 206px;
  min-height: 48px;
  border-radius: 2px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .72rem;
}

.hero-actions .btn-ghost {
  border-color: rgba(123, 53, 245, .42);
  color: var(--primary-2);
}

.hero-visual {
  position: relative;
  overflow: hidden;
  border-left: 1px solid rgba(123, 53, 245, .55);
  min-height: clamp(560px, 56vw, 860px);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 7, 21, .66), rgba(23, 9, 37, .54)),
    linear-gradient(90deg, rgba(19, 10, 30, .32) 0%, rgba(19, 10, 30, .08) 52%, rgba(10, 7, 15, .34) 100%);
  z-index: 1;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 58% 36%, rgba(155, 92, 255, .2), transparent 34%);
  z-index: 2;
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.03) brightness(.66) contrast(1.02);
}

.hero-mark {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-mark img {
  position: absolute;
  width: min(74%, 620px);
  right: -3%;
  top: 50%;
  transform: translateY(-50%);
  opacity: .08;
  filter: grayscale(1) brightness(1.8);
}

@media (min-width: 1500px) {
  .hero {
    grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
  }

  .hero-copy {
    padding-left: clamp(2.4rem, 4vw, 4.8rem);
    padding-right: clamp(1.8rem, 3vw, 3rem);
  }

  .hero-content h1 {
    font-size: clamp(4rem, 6.2vw, 6.2rem);
  }

  .hero-lead {
    font-size: clamp(1rem, 1vw, 1.12rem);
  }
}

@media (max-width: 1200px) {
  .container {
    width: min(1180px, 94%);
  }

  .nav {
    min-height: 78px;
  }

  .nav-links {
    gap: 1.1rem;
  }

  .nav-links a {
    font-size: .67rem;
    letter-spacing: .12em;
  }

  .nav-cta {
    padding-inline: 1.15rem;
    font-size: .66rem;
  }

  .hero {
    grid-template-columns: 1fr 1fr;
    padding-top: 78px;
  }

  .hero-copy {
    padding: 3.5rem 1.4rem 3.8rem 2rem;
  }

  .hero-content {
    width: 100%;
    max-width: 560px;
    padding-left: 1rem;
  }

  .hero-content h1 {
    font-size: clamp(3.4rem, 7vw, 5.6rem);
    max-width: 7.8ch;
  }

  .hero-lead {
    max-width: 24ch;
    font-size: 1rem;
  }

  .hero-actions .btn {
    min-width: 180px;
  }

  .hero-visual {
    min-height: clamp(520px, 60vw, 840px);
  }

  .hero-mark img {
    width: min(78%, 520px);
  }

  .about {
    grid-template-columns: .9fr 1.1fr;
    gap: 2rem;
    padding-block: 5rem;
  }

  .about-title {
    font-size: clamp(2.8rem, 5vw, 4.3rem);
  }

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

  .method-layout {
    grid-template-columns: .9fr 1.1fr;
    gap: 2rem;
  }

  .results-grid-showcase,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .result-card {
    min-height: auto;
  }
}

.section h2 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  letter-spacing: -0.01em;
}

.section {
  padding: 4.5rem 0;
}

.section-dark {
  background: var(--surface);
}

.section-kicker {
  margin: 0 0 .9rem;
  color: var(--primary-2);
  text-transform: uppercase;
  letter-spacing: .34em;
  font-size: .72rem;
  font-weight: 700;
}

.section-display {
  margin: 0;
  text-transform: uppercase;
  line-height: .9;
  letter-spacing: -.05em;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.section-display span {
  display: block;
  color: var(--primary-2);
}

.center-display {
  text-align: center;
}

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

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

.card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.2rem;
  background: rgba(255, 255, 255, .02);
}

.card-highlight {
  border-color: var(--primary);
  background: rgba(123, 53, 245, .12);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(2.6rem, 5vw, 5.8rem);
  align-items: center;
  position: relative;
  padding-block: 6.5rem;
}

.about-image {
  position: relative;
  width: 100%;
  min-height: 100%;
}

.about-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center center;
  border: 1px solid rgba(245, 244, 242, .15);
  background: #120f1d;
  filter: saturate(.98) brightness(.92) contrast(1.02);
}

.about-copy {
  position: relative;
  max-width: 700px;
}

.about-kicker {
  margin: 0 0 1rem;
  color: rgba(245, 244, 242, .55);
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: .78rem;
  font-weight: 700;
}

.about-title {
  margin: 0;
  text-transform: uppercase;
  line-height: .92;
  letter-spacing: -.04em;
  font-size: clamp(3.1rem, 6vw, 5.3rem);
}

.about-title span {
  display: block;
  color: var(--primary-2);
}

.about-rule {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-2), rgba(155, 92, 255, .1));
  margin: 2rem 0 1.8rem;
}

.about-copy p {
  margin: 0 0 1.2rem;
  color: rgba(245, 244, 242, .56);
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  line-height: 1.8;
}

.about-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: .7rem;
}

.about-list li {
  position: relative;
  padding-left: 1.4rem;
  color: rgba(245, 244, 242, .78);
  font-size: .97rem;
  line-height: 1.55;
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .66rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-2);
  box-shadow: 0 0 10px rgba(155, 92, 255, .4);
}

.about-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(180deg, #8f46ff 0%, #7b35f5 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: .55rem;
}

.about-badge-title {
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1;
  letter-spacing: -.04em;
}

.about-badge-text {
  margin-top: .28rem;
  color: rgba(255, 255, 255, .82);
  font-size: .43rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.services-showcase,
.method-showcase,
.results-showcase,
.plans-showcase,
.cta-showcase,
.contact-showcase {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(155, 92, 255, .05), transparent 24%),
    radial-gradient(circle at bottom right, rgba(155, 92, 255, .04), transparent 28%),
    #141417;
}

.service-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(245, 244, 242, .09);
  border-left: 1px solid rgba(245, 244, 242, .09);
  margin-top: 3rem;
}

.service-panel {
  min-height: 265px;
  padding: 2.2rem 1.8rem 2rem;
  border-right: 1px solid rgba(245, 244, 242, .09);
  border-bottom: 1px solid rgba(245, 244, 242, .09);
  background: linear-gradient(180deg, rgba(255, 255, 255, .01), rgba(255, 255, 255, 0));
}

.service-number {
  margin-bottom: 1.6rem;
  color: rgba(123, 53, 245, .28);
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: 1;
}

.service-icon {
  width: 42px;
  height: 42px;
  color: var(--primary-2);
  margin-bottom: 1.25rem;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-panel h3 {
  margin-bottom: .75rem;
  font-size: 1.05rem;
}

.service-panel p {
  margin: 0;
  color: rgba(245, 244, 242, .48);
  line-height: 1.7;
}

.method-layout {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.6fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.method-intro {
  position: sticky;
  top: 120px;
}

.method-intro p {
  margin: 0;
  color: rgba(245, 244, 242, .5);
  line-height: 1.8;
  max-width: 26ch;
}

.method-intro .section-display span {
  display: block;
}

.method-steps {
  display: grid;
}

.method-row {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 1.6rem;
  padding: 1.8rem 0;
  border-top: 1px solid rgba(245, 244, 242, .09);
}

.method-row:first-child {
  border-top: 0;
}

.method-number {
  color: rgba(123, 53, 245, .5);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.05em;
}

.method-row h3 {
  margin-bottom: .45rem;
  font-size: 1.12rem;
}

.method-row p {
  margin: 0;
  color: rgba(245, 244, 242, .5);
  line-height: 1.7;
}

.results-grid-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.8rem;
}

.results-intro {
  max-width: 64ch;
  margin-top: 1.15rem;
  color: rgba(245, 244, 242, .62);
  line-height: 1.8;
}

.results-showcase .results-grid-showcase {
  display: none;
}

.results-carousel {
  margin-top: 2.4rem;
}

.results-carousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.carousel-arrow {
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(245, 244, 242, .14);
  background: rgba(255, 255, 255, .03);
  color: transparent;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background-color .18s ease;
}

.carousel-arrow::before {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #f5f4f2;
}

[data-carousel-prev]::before {
  content: "<";
}

[data-carousel-next]::before {
  content: ">";
}

.carousel-arrow:hover {
  transform: translateY(-1px);
  border-color: rgba(123, 53, 245, .5);
  background: rgba(123, 53, 245, .12);
}

.carousel-arrow:disabled {
  opacity: .45;
  cursor: default;
  transform: none;
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  flex: 1;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(245, 244, 242, .22);
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease;
}

.carousel-dot.is-active {
  background: #7b35f5;
  transform: scale(1.15);
}

.before-after-grid {
  display: grid;
  grid-auto-flow: column;
  gap: 1.35rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.before-after-grid::-webkit-scrollbar {
  display: none;
}

.before-after-card {
  padding: 1.2rem;
  border: 1px solid rgba(245, 244, 242, .1);
  background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, 0));
  scroll-snap-align: start;
}

.before-after-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}

.media-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(245, 244, 242, .1);
  background: rgba(255, 255, 255, .03);
}

.media-frame img,
.media-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-label {
  position: absolute;
  top: .8rem;
  left: .8rem;
  z-index: 1;
  padding: .28rem .58rem;
  background: rgba(12, 12, 12, .7);
  border: 1px solid rgba(245, 244, 242, .12);
  color: #f5f4f2;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.result-content {
  margin-top: 1rem;
}

.result-metrics {
  display: none;
}

.result-card {
  position: relative;
  min-height: 210px;
  padding: 2rem 2rem 1.75rem;
  border: 1px solid rgba(245, 244, 242, .1);
  background: linear-gradient(180deg, rgba(255, 255, 255, .015), rgba(255, 255, 255, 0));
}

.result-quote {
  position: absolute;
  top: 1rem;
  left: 1.55rem;
  color: rgba(123, 53, 245, .28);
  font-size: 5rem;
  line-height: 1;
  font-weight: 800;
}

.result-card p {
  position: relative;
  margin: 1.4rem 0 2.2rem;
  color: rgba(245, 244, 242, .68);
  line-height: 1.8;
  font-style: italic;
}

.result-author {
  display: flex;
  align-items: center;
  gap: .9rem;
}

.result-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #8f46ff, #7b35f5);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
}

.result-author strong,
.result-author span {
  display: block;
}

.result-author strong {
  font-size: .92rem;
}

.result-author span {
  color: rgba(245, 244, 242, .42);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.plans-header {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.plans-subtitle {
  margin: 1.4rem auto 0;
  color: rgba(245, 244, 242, .58);
  line-height: 1.75;
  max-width: 34ch;
  font-size: 1.06rem;
}

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

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 2.2rem 2rem 1.9rem;
  border: 1px solid rgba(245, 244, 242, .12);
  background: linear-gradient(180deg, rgba(255, 255, 255, .015), rgba(255, 255, 255, 0));
}

.plan-card-featured {
  border-color: rgba(123, 53, 245, .95);
  box-shadow: 0 0 0 1px rgba(123, 53, 245, .18), 0 24px 60px rgba(34, 12, 63, .18);
}

.plan-tag {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: .66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  padding: .38rem .95rem;
}

.plan-card h3 {
  margin: 1rem 0 .8rem;
  font-size: 1.15rem;
  text-transform: uppercase;
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: .3rem;
  margin-bottom: 1rem;
  color: #fff;
  font-size: 3.6rem;
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: .95;
}

.plan-price small {
  color: var(--primary-2);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: .55rem;
}

.plan-price span {
  color: rgba(245, 244, 242, .46);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: .4rem;
}

.plan-card>p {
  margin: 0 0 1.3rem;
  color: rgba(245, 244, 242, .56);
  line-height: 1.7;
}

.plan-card ul {
  list-style: none;
  margin: 0 0 1.7rem;
  padding: 1.4rem 0 0;
  border-top: 1px solid rgba(245, 244, 242, .09);
  display: grid;
  gap: .8rem;
}

.plan-card li {
  position: relative;
  padding-left: 1rem;
  color: rgba(245, 244, 242, .68);
  line-height: 1.55;
}

.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary-2);
}

.plan-card .btn {
  margin-top: auto;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
}

.plans-footnote {
  margin: 1.7rem 0 0;
  text-align: center;
  color: rgba(245, 244, 242, .32);
  font-size: .8rem;
}

.cta-showcase {
  padding-block: 7rem;
}

.cta-inner {
  text-align: center;
}

.cta-copy {
  max-width: 38ch;
  margin: 1.8rem auto 2.2rem;
  color: rgba(245, 244, 242, .56);
  line-height: 1.75;
  font-size: 1.05rem;
}

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

.cta-actions .btn {
  min-width: 255px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
}

.contact-showcase {
  background:
    radial-gradient(circle at top right, rgba(123, 53, 245, .08), transparent 40%),
    radial-gradient(circle at bottom left, rgba(155, 92, 255, .05), transparent 38%),
    #0c0c10;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.contact-info .section-display {
  margin-bottom: 1.2rem;
}

.contact-lead {
  margin: 0 0 2.4rem;
  color: rgba(245, 244, 242, .52);
  line-height: 1.75;
  font-size: 1.05rem;
  max-width: 36ch;
}

.contact-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .9rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.1rem 1.4rem;
  border: 1px solid rgba(245, 244, 242, .09);
  background: linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  border-radius: 10px;
  transition: border-color .2s;
}

.contact-card:hover {
  border-color: rgba(123, 53, 245, .45);
}

.contact-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(123, 53, 245, .14);
  color: var(--primary-2);
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 20px;
  height: 20px;
}

.contact-card-body {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  min-width: 0;
}

.contact-card-label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(245, 244, 242, .38);
}

.contact-card-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-card-value:is(a):hover {
  color: var(--primary-2);
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-actions {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.contact-photos {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: .8rem;
  align-self: stretch;
}

.contact-photo-main {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(123, 53, 245, .25);
}

.contact-photo-secondary {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(123, 53, 245, .25);
  align-self: start;
}

.contact-photo-main img,
.contact-photo-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.payment-wrap {
  margin-top: 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .6rem;
}

.contact-list a {
  color: var(--primary-2);
  text-decoration: none;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  color: var(--text);
  border-radius: 8px;
  padding: .72rem .8rem;
  font: inherit;
}

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

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

.footer-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.social {
  display: flex;
  gap: .8rem;
}

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

@media (max-width: 900px) {

  .cards-3,
  .about,
  .contact-grid,
  .contact-layout,
  .hero-inner {
    grid-template-columns: 1fr;
  }


  .service-showcase-grid,
  .results-grid-showcase,
  .plans-grid,
  .method-layout {
    grid-template-columns: 1fr;
  }

  .section-display {
    font-size: clamp(2.6rem, 12vw, 4.2rem);
  }

  .about-image {
    width: 100%;
  }

  .about {
    gap: 2rem;
    padding-block: 4.5rem;
  }

  .about-image img {
    aspect-ratio: 4 / 5;
  }

  .about-title {
    font-size: clamp(2.6rem, 11vw, 4rem);
  }

  .about-copy p {
    font-size: 1rem;
  }

  .method-intro {
    position: static;
  }

  .service-panel,
  .before-after-card,
  .result-card,
  .plan-card {
    min-height: auto;
  }

  .plans-header {
    max-width: none;
  }

  .plans-subtitle,
  .cta-copy {
    max-width: none;
    font-size: 1rem;
  }

  .cta-showcase {
    padding-block: 5rem;
  }

  .cta-actions .btn,
  .plan-card .btn {
    min-width: 0;
    width: 100%;
  }

  .site-header {
    background: rgba(8, 8, 8, .94);
    border-bottom: 1px solid var(--line);
  }

  .container {
    width: min(100%, 92%);
  }

  .nav {
    min-height: 72px;
  }

  .logo img {
    height: 30px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 72px;
  }

  .hero-copy {
    order: 2;
    justify-content: stretch;
    padding: 2rem 1.1rem 2.8rem;
  }

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

  .hero-content {
    width: 100%;
    padding-left: 1.35rem;
  }

  .hero-content::before {
    left: 0;
    height: 180px;
  }

  .hero-content h1 {
    max-width: 100%;
    font-size: clamp(3.2rem, 17vw, 5.2rem);
  }

  .hero-lead {
    max-width: 30ch;
    font-size: 1rem;
  }

  .hero-actions .btn {
    min-width: 0;
    flex: 1 1 180px;
  }

  .hero-visual {
    order: 1;
    min-height: clamp(360px, 58vw, 560px);
    border-left: 0;
    border-bottom: 1px solid rgba(123, 53, 245, .45);
  }

  .hero-mark img {
    width: 86%;
    right: -10%;
    top: 54%;
  }

  .about {
    padding-block: 4rem;
  }

  .about-image img {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .about-badge {
    width: 62px;
    height: 62px;
  }

  .service-panel {
    padding: 1.7rem 1.2rem;
  }

  .service-number {
    font-size: 2.8rem;
    margin-bottom: 1rem;
  }

  .method-row {
    grid-template-columns: 56px 1fr;
    gap: 1rem;
    padding: 1.3rem 0;
  }

  .method-number {
    font-size: 2.3rem;
  }

  .result-card {
    padding: 1.4rem 1.2rem 1.25rem;
  }

  .before-after-card {
    padding: 1rem;
  }

  .results-carousel-header {
    gap: .75rem;
  }

  .carousel-arrow {
    width: 42px;
    height: 42px;
  }

  .before-after-media {
    grid-template-columns: 1fr;
  }

  .result-card p {
    margin: 1rem 0 1.5rem;
    font-size: .95rem;
  }

  .plan-card {
    padding: 1.7rem 1.2rem 1.35rem;
  }

  .plan-price {
    font-size: 3rem;
  }

  .cta-actions {
    gap: .75rem;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .nav-links,
  .nav>.btn-primary {
    display: none;
  }

  .nav.open .nav-links {
    display: flex;
    position: absolute;
    left: 4%;
    right: 4%;
    top: 72px;
    background: #0d0d12;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: .8rem;
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .section-kicker,
  .about-kicker,
  .eyebrow {
    font-size: .62rem;
    letter-spacing: .24em;
  }

  .eyebrow {
    gap: .7rem;
  }

  .eyebrow::before {
    width: 24px;
  }

  .hero-content {
    padding-left: .85rem;
  }

  .hero-content::before {
    height: 140px;
  }

  .hero-content h1 {
    font-size: clamp(2.7rem, 15vw, 4.2rem);
    line-height: .92;
  }

  .hero-lead {
    line-height: 1.6;
  }

  .hero-visual {
    min-height: clamp(300px, 70vw, 480px);
  }

  .hero-mark img {
    width: 92%;
    right: -16%;
  }

  .about-title,
  .section-display {
    font-size: clamp(2.3rem, 13vw, 3.6rem);
  }

  .about-copy p,
  .method-row p,
  .service-panel p,
  .plans-subtitle,
  .cta-copy {
    font-size: .95rem;
    line-height: 1.7;
  }

  .method-layout,
  .results-grid-showcase,
  .plans-grid {
    gap: 1rem;
  }

  .contact-list {
    gap: .9rem;
  }

  .contact-photos {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    max-height: 280px;
  }

  .contact-photo-main {
    grid-column: 1;
    grid-row: 1;
    max-height: 280px;
  }

  .contact-photo-secondary {
    display: none;
  }

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--primary-2);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
