/* =========================================================
   VARIABLES
========================================================= */

:root {
  --bg: #0b0d12;
  --surface: #12161f;
  --surface2: #181d28;
  --text: #f7f8fb;
  --muted: #aeb5c2;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #c86bea;
  --gold: #ffcc66;
  --max: 1120px;
  --r: 22px;
}


/* =========================================================
   RESET / BASE
========================================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Montserrat, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
}

.eyebrow {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
}

h1,
h2,
h3 {
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.5rem, 5.4vw, 4.6rem);
  letter-spacing: -0.055em;
  max-width: 820px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
}

p {
  color: var(--muted);
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.9rem;
  transition: 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.primary {
  background: var(--accent);
  color: #130d18;
}

.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}


/* =========================================================
   HEADER / NAVIGATION
========================================================= */

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11, 13, 18, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

nav {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 800;
}

.brand span {
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}


/* =========================================================
   HERO
========================================================= */

.hero {
  padding: 42px 0 58px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 56px;
  align-items: start;
}

.hero h1 span {
  color: var(--accent);
}

.hero-copy {
  font-size: 1.06rem;
  max-width: 690px;
  margin: 25px 0 30px;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.note {
  margin-top: 16px;
  font-size: 0.72rem;
}


/* =========================================================
   HERO PHOTO
========================================================= */

.portrait-wrap {
  position: relative;
  max-width: 350px;
  margin-left: auto;
  margin-top: 18px;
}

.portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 38%;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.portrait-card {
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 12px 18px;
  border: 1px solid var(--line);
  background: rgba(18, 22, 31, 0.92);
  border-radius: 16px;
  text-align: center;
}

.portrait-card strong {
  display: block;
  font-size: 0.88rem;
}

.portrait-card small {
  color: var(--muted);
  font-size: 0.7rem;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

section {
  padding: 92px 0;
}

.head {
  max-width: 740px;
  margin-bottom: 42px;
}

.head p {
  margin-top: 16px;
}

.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}


/* =========================================================
   CARDS
========================================================= */

.card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
}

.num {
  color: var(--gold);
  font-weight: 800;
  font-size: 0.78rem;
}

.card h3 {
  margin: 14px 0 10px;
  font-size: 1.12rem;
}

.card p {
  font-size: 0.86rem;
}


/* =========================================================
   PLANS
========================================================= */

.plans {
  background: #0e1118;
}

.plan {
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  position: relative;
}

.plan.recommended {
  border-color: rgba(200, 107, 234, 0.75);
  transform: translateY(-8px);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(200, 107, 234, 0.15);
  color: #e7a8fa;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.plan h3 {
  font-size: 1.5rem;
  margin-top: 8px;
}

.price {
  font-size: 2.65rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  margin-top: 16px;
}

.price-note {
  font-size: 0.7rem;
  color: var(--muted);
}

.intro {
  font-size: 0.84rem;
  margin: 18px 0;
}

.features {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 5px 0 26px;
}

.features li {
  font-size: 0.79rem;
  color: #dce0e7;
  padding-left: 20px;
  position: relative;
}

.features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.plan .btn {
  margin-top: auto;
  width: 100%;
}

.small {
  text-align: center;
  font-size: 0.72rem;
  margin-top: 20px;
}


/* =========================================================
   PROCESS
========================================================= */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.step b {
  color: var(--accent);
  font-size: 0.8rem;
}

.step h3 {
  margin: 10px 0 7px;
  font-size: 1rem;
}

.step p {
  font-size: 0.8rem;
}


/* =========================================================
   ABOUT
========================================================= */

.about {
  background: linear-gradient(
    135deg,
    rgba(200, 107, 234, 0.1),
    rgba(255, 204, 102, 0.05)
  );
  border-block: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.about-photo {
  width: 100%;
  max-width: 390px;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 28px;
  border: 1px solid var(--line);
}

.about-copy p {
  margin-top: 18px;
  max-width: 700px;
}

.points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.point {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.77rem;
  font-weight: 700;
}


/* =========================================================
   FAQ
========================================================= */

.faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.84rem;
}

details p {
  margin-top: 10px;
  font-size: 0.79rem;
}


/* =========================================================
   CTA
========================================================= */

.cta {
  text-align: center;
  padding: 100px 0;
  background: radial-gradient(
    circle at center,
    rgba(200, 107, 234, 0.15),
    transparent 55%
  );
}

.cta h2 {
  max-width: 780px;
  margin: auto;
}

.cta p {
  max-width: 620px;
  margin: 18px auto 28px;
}

.cta .tiny {
  font-size: 0.68rem;
  margin-top: 14px;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
  border-top: 1px solid var(--line);
  padding: 26px 0;
}

.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.68rem;
}

.social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  transition: 0.2s;
}

.social a:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 107, 234, 0.6);
  color: var(--accent);
}

.social a i {
  display: inline-block;
  font-size: 1.05rem;
  line-height: 1;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {
  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .portrait-wrap {
    margin: auto;
  }

  .three,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .plan.recommended {
    transform: none;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .about-photo {
    margin: auto;
  }
}


@media (max-width: 650px) {
  .container {
    width: calc(100% - 28px);
  }

  .nav {
    display: none;
  }

  .hero {
    padding: 65px 0 55px;
  }

  section {
    padding: 70px 0;
  }

  .portrait-card {
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
  }

  .steps,
  .faq,
  .points {
    grid-template-columns: 1fr;
  }

  .foot {
    flex-direction: column;
  }
}