:root {
  /* Brand */
  --navy: #07101c;
  --navy-mid: #0c1626;
  --navy-soft: #121e32;
  --gold: #d4af5f;
  --gold-soft: #ebc978;
  --gold-ink: #8f6e28;
  --ink: #141b26;
  --muted: #667385;
  --line: rgba(20, 27, 38, 0.08);
  --line-strong: rgba(20, 27, 38, 0.12);
  --paper: #f4f6f8;
  --paper-2: #eef1f5;
  --white: #fff;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.1);

  /* Layout */
  --wrap: min(1120px, calc(100% - 2.5rem));
  --section: clamp(3.5rem, 7.5vw, 5.5rem);
  --gap: 1rem;
  --gap-lg: 2.5rem;

  /* Shape scale */
  --r-sm: 0.85rem;
  --r-md: 1.15rem;
  --r-lg: 1.35rem;
  --r-xl: 1.6rem;
  --r-pill: 999px;

  /* Elevation */
  --shadow-sm: 0 8px 24px rgba(20, 27, 38, 0.04);
  --shadow-md: 0 14px 36px rgba(20, 27, 38, 0.06);
  --shadow-lg: 0 24px 56px rgba(7, 16, 28, 0.18);
  --shadow-gold: 0 12px 28px rgba(212, 175, 95, 0.28);

  --font: "Vazirmatn", Tahoma, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --lift: translateY(-3px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.8;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  background: rgba(212, 175, 95, 0.28);
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.narrow {
  max-width: 720px;
  margin-inline: auto;
}

/* Type system */
.kicker {
  margin: 0 0 0.65rem;
  color: var(--gold-ink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.prose {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 40ch;
}

.prose--light {
  color: rgba(255, 255, 255, 0.7);
}

h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.45;
}

.head.center {
  text-align: center;
  margin-bottom: 2rem;
}

.section-head {
  margin-bottom: 2rem;
  max-width: 36rem;
}

.section-head h2 {
  margin-bottom: 0.55rem;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.section-head--light p {
  color: rgba(255, 255, 255, 0.58);
}

.section-head--light .kicker {
  color: var(--gold-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ========== Header ========== */
.header {
  position: fixed;
  top: 0.75rem;
  inset-inline: 0;
  z-index: 50;
  width: var(--wrap);
  max-width: calc(100% - 1.5rem);
  margin-inline: auto;
  background: rgba(7, 16, 28, 0.88);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.15rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  overflow: visible;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.header.is-scrolled {
  background: rgba(7, 16, 28, 0.96);
  border-color: rgba(212, 175, 95, 0.22);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
}

.header__row {
  min-height: 4.1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-inline: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  flex-shrink: 0;
}

.logo img {
  width: 40px;
  height: auto;
}

.logo b {
  display: block;
  font-size: 0.9rem;
  line-height: 1.25;
  font-weight: 700;
}

.logo small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
}

.nav {
  display: none;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 500;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu__item {
  position: relative;
}

.nav-menu__link {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.55rem 0.55rem;
  color: rgba(255, 255, 255, 0.72);
  background: none;
  border: 0;
  font: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-menu__link:hover,
.nav-menu__item:hover > .nav-menu__link,
.nav-menu__item.is-open > .nav-menu__link {
  color: var(--gold-soft);
}

.nav-menu__caret {
  width: 0.35rem;
  height: 0.35rem;
  border-inline-end: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -0.15rem;
  opacity: 0.7;
}

.nav-menu__drop {
  position: absolute;
  top: calc(100% + 0.35rem);
  inset-inline-start: 0;
  min-width: 15.5rem;
  margin: 0;
  padding: 0.45rem;
  list-style: none;
  background: rgba(10, 18, 32, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.85rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 60;
}

.nav-menu__item:hover > .nav-menu__drop,
.nav-menu__item:focus-within > .nav-menu__drop,
.nav-menu__item.is-open > .nav-menu__drop {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.nav-menu__drop .nav-menu__link {
  display: flex;
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 0.55rem;
  white-space: normal;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
  text-align: right;
}

.nav-menu__drop .nav-menu__link:hover {
  background: rgba(212, 175, 95, 0.12);
  color: var(--gold-soft);
}

.nav-menu__drop .nav-menu__item {
  position: relative;
}

.nav-menu__drop .nav-menu__drop {
  top: -0.35rem;
  inset-inline-start: auto;
  inset-inline-end: calc(100% + 0.35rem);
}

.nav-menu__drop .has-children > .nav-menu__link .nav-menu__caret {
  margin-inline-start: auto;
  transform: rotate(-45deg);
  margin-top: 0;
}

.header-cta {
  display: none;
  padding: 0.52rem 1.1rem;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #1a1408;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
}

.header-cta:hover {
  transform: var(--lift);
}

.burger {
  margin-inline-start: auto;
  width: 2.35rem;
  height: 2.35rem;
  border: 0;
  border-radius: var(--r-pill);
  background: var(--glass);
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
}

.burger i {
  width: 1rem;
  height: 1.5px;
  background: #fff;
  display: block;
  border-radius: var(--r-pill);
}

.drawer__head {
  display: none;
}

.drawer {
  display: grid;
  padding: 0.15rem 1rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  max-height: min(70vh, 32rem);
  overflow: auto;
}

.drawer[hidden] {
  display: none;
}

.drawer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.drawer-menu__item > a,
.drawer-menu__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.92rem;
}

.drawer-menu__row a,
.drawer-menu__row span {
  color: inherit;
  flex: 1;
}

.drawer-menu__toggle {
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}

.drawer-menu__sub {
  list-style: none;
  margin: 0;
  padding: 0 0 0.35rem 0.75rem;
}

.drawer-menu__sub .drawer-menu__item > a,
.drawer-menu__sub .drawer-menu__row {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.72);
  padding-block: 0.65rem;
}

.drawer__cta {
  margin-top: 0.85rem;
  display: flex;
  justify-content: center;
  padding: 0.85rem 1rem;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #1a1408;
  font-weight: 700;
  font-size: 0.88rem;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.65rem 1.35rem;
  border: 0;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #1a1408;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: var(--shadow-gold);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn:hover {
  transform: var(--lift);
  box-shadow: 0 16px 34px rgba(212, 175, 95, 0.34);
}

.btn--line,
.btn--ghost {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.btn--line:hover,
.btn--ghost:hover {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.btn--block {
  width: 100%;
}

.text-cta {
  display: inline-flex;
  margin-top: 1.4rem;
  color: var(--gold-ink);
  font-weight: 700;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(143, 110, 40, 0.35);
  padding-bottom: 0.1rem;
  transition: color 0.2s;
}

.text-cta:hover {
  color: #6f5418;
}

/* ========== Cards shared ========== */
.surface-card {
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 45% at 82% 18%, rgba(50, 78, 130, 0.28), transparent 55%),
    linear-gradient(168deg, #050c16 0%, #0c1728 50%, var(--navy) 100%);
  color: #fff;
  padding-top: 4.25rem;
}

.hero > .wrap {
  width: 100%;
  max-width: none;
  margin: 0;
}

.hero__glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(212, 175, 95, 0.14);
  filter: blur(90px);
  inset-inline-end: -6%;
  top: 4%;
  pointer-events: none;
}

.hero__glow--2 {
  width: 280px;
  height: 280px;
  background: rgba(70, 105, 170, 0.14);
  inset-inline-start: -10%;
  top: 48%;
  inset-inline-end: auto;
}

.hero__scale {
  position: absolute;
  width: min(38vw, 380px);
  opacity: 0.05;
  inset-inline-end: 6%;
  top: 10%;
  pointer-events: none;
  filter: grayscale(1);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  align-items: stretch;
  padding-bottom: 0;
  /* physical left = image, right = text */
  direction: ltr;
  grid-template-columns: 1fr;
  grid-template-areas: "hero";
  min-height: min(78vh, 720px);
}

.hero__visual,
.hero__copy {
  grid-area: hero;
}

.hero__visual {
  position: relative;
  justify-self: stretch;
  width: 100%;
  z-index: 0;
}

.hero__copy {
  position: relative;
  z-index: 2;
  direction: rtl;
  max-width: none;
  align-self: end;
  padding: 5.5rem 1.25rem 2.25rem;
  background: linear-gradient(
    180deg,
    rgba(5, 12, 22, 0) 0%,
    rgba(5, 12, 22, 0.55) 28%,
    rgba(5, 12, 22, 0.92) 62%,
    rgba(5, 12, 22, 0.97) 100%
  );
}

.hero__frame {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: min(78vh, 720px);
  display: grid;
  place-items: end center;
  aspect-ratio: auto;
  max-height: none;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(212, 175, 95, 0.22), transparent 52%),
    linear-gradient(180deg, #152338 0%, #0a1220 72%);
  overflow: hidden;
  box-shadow: none;
}

.hero__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 12, 22, 0.15) 0%, transparent 35%, rgba(7, 16, 28, 0.35) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero__person {
  position: relative;
  width: min(92%, 420px);
  z-index: 0;
  object-fit: contain;
  object-position: bottom center;
}

.hero__float {
  position: absolute;
  z-index: 3;
  display: none;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--r-md);
  background: rgba(12, 22, 38, 0.72);
  backdrop-filter: blur(14px);
  box-shadow:
    inset 0 0 0 1px var(--glass-border),
    0 12px 32px rgba(0, 0, 0, 0.28);
  direction: rtl;
  animation: floaty 5.5s ease-in-out infinite;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.35rem;
  padding: 0.42rem 0.95rem;
  border-radius: var(--r-pill);
  background: rgba(212, 175, 95, 0.1);
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.5;
  box-shadow: inset 0 0 0 1px rgba(212, 175, 95, 0.22);
}

.badge__dot {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 0 3px rgba(212, 175, 95, 0.2);
  animation: pulse 2.4s ease infinite;
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 7px rgba(212, 175, 95, 0);
  }
}

.hero h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.7rem, 3.2vw, 2.65rem);
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: -0.025em;
  max-width: none;
  text-wrap: balance;
}

.hero h1 .hero__line {
  display: block;
}

.hero h1 .hero__line--sub {
  margin-top: 0.15em;
  font-size: 0.92em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-soft);
}

.hero__lead {
  margin: 0;
  max-width: 36em;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.95;
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.hero__micro {
  margin: 1.15rem 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.84rem;
  line-height: 1.7;
}

.hero__micro a {
  color: var(--gold-soft);
  font-weight: 700;
  white-space: nowrap;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 2rem;
  max-width: 26rem;
}

.hero__proof div {
  padding: 0.8rem 0.75rem;
  border-radius: var(--r-md);
  background: var(--glass);
  box-shadow: inset 0 0 0 1px var(--glass-border);
  min-height: 4.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__proof strong {
  display: block;
  font-size: 1.25rem;
  color: var(--gold-soft);
  line-height: 1.15;
  font-weight: 800;
}

.hero__proof span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.52);
  margin-top: 0.2rem;
}

.hero__float--main {
  inset-inline-start: 0.75rem;
  bottom: 1.25rem;
}

.hero__float--side {
  inset-inline-end: 0.75rem;
  top: 1.1rem;
  animation-delay: 1.1s;
}

.hero__float img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.hero__float b {
  display: block;
  font-size: 0.78rem;
  line-height: 1.3;
  font-weight: 700;
}

.hero__float span {
  font-size: 0.66rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.3;
}

@keyframes floaty {
  50% {
    transform: translateY(-6px);
  }
}

.hero__marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.16);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.hero__marquee-track {
  display: flex;
  gap: 2.25rem;
  width: max-content;
  padding: 0.9rem 0;
  animation: marquee 34s linear infinite;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero__marquee-track span::after {
  content: "·";
  margin-inline-start: 2.25rem;
  color: rgba(212, 175, 95, 0.55);
}

@keyframes marquee {
  to {
    transform: translateX(50%);
  }
}

/* ========== Trust bar ========== */
.trustbar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trustbar__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding: 1rem 0;
}

.trustbar__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.7rem 0.5rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.35;
}

.trustbar__item img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  opacity: 0.75;
  flex-shrink: 0;
}

/* ========== Intent ========== */
.intent {
  padding: var(--section) 0;
  background: var(--white);
}

.intent__head {
  margin-bottom: 2rem;
  max-width: 36rem;
}

.intent__head h2 {
  margin-bottom: 0.55rem;
}

.intent__head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.intent__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap);
}

.intent__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-height: 100%;
  padding: 1.2rem;
  border-radius: var(--r-lg);
  background: var(--paper);
  box-shadow: inset 0 0 0 1px transparent;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), background 0.28s;
}

.intent__item:hover {
  transform: var(--lift);
  background: var(--white);
  box-shadow: var(--shadow-md), inset 0 0 0 1px rgba(212, 175, 95, 0.22);
}

.intent__item img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: var(--r-sm);
  margin-bottom: 0.55rem;
  background: var(--paper-2);
}

.intent__item strong {
  font-size: 0.98rem;
  font-weight: 700;
}

.intent__item span {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
  flex: 1;
}

.intent__item em {
  margin-top: 0.65rem;
  font-style: normal;
  color: var(--gold-ink);
  font-size: 0.78rem;
  font-weight: 700;
}

/* ========== Process ========== */
.process {
  padding: var(--section) 0;
  background:
    radial-gradient(ellipse at 10% 12%, rgba(212, 175, 95, 0.1), transparent 40%),
    linear-gradient(180deg, var(--navy-mid), var(--navy));
  color: #fff;
}

.process__head {
  margin-bottom: 2rem;
  max-width: 36rem;
}

.process .kicker {
  color: var(--gold-soft);
}

.process h2 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.process__head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
}

.process__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--gap);
}

.process__steps li {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.3rem 1.2rem;
  border-radius: var(--r-lg);
  background: var(--glass);
  box-shadow: inset 0 0 0 1px var(--glass-border);
  transition: background 0.25s, transform 0.25s var(--ease);
}

.process__steps li:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: var(--lift);
}

.process__num {
  display: inline-flex;
  margin-bottom: 0.7rem;
  color: var(--gold-soft);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.process__steps h3 {
  margin: 0 0 0.45rem;
  color: #fff;
}

.process__steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ========== Value ========== */
.value {
  padding: var(--section) 0;
  background: var(--white);
}

.value__grid {
  display: grid;
  gap: var(--gap-lg);
}

.value__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.value__stats div {
  padding: 1rem 1.05rem;
  border-radius: var(--r-md);
  background: var(--paper);
}

.value__stats strong {
  display: block;
  color: var(--gold-ink);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
}

.value__stats span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.value__list {
  display: grid;
  gap: 0.85rem;
}

.value__list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.2rem;
  border-radius: var(--r-lg);
  background: var(--paper);
}

.value__icon {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: var(--r-sm);
  background: rgba(212, 175, 95, 0.14);
  color: var(--gold-ink);
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
}

.value__list h3 {
  margin: 0 0 0.3rem;
}

.value__list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ========== Services ========== */
.services-section {
  padding: var(--section) 0;
  background: var(--paper);
}

.services-section__head {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 2rem;
}

.services-section__head p:last-child {
  margin: 0;
  color: var(--muted);
  max-width: 36rem;
  font-size: 0.95rem;
}

.bento {
  display: grid;
  gap: var(--gap);
}

.bento__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.25rem;
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.bento__card:hover {
  transform: var(--lift);
  box-shadow: var(--shadow-md);
}

.bento__card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.bento__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.bento img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: var(--r-sm);
  margin-bottom: 0.85rem;
  background: var(--paper-2);
  flex-shrink: 0;
}

.bento__top img {
  margin-bottom: 0;
}

.bento h3 {
  margin: 0 0 0.45rem;
}

.bento__text {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
  flex: 1;
}

.bento__cta {
  color: var(--gold-ink);
  font-weight: 700;
  font-size: 0.84rem;
  margin-top: auto;
}

.bento__feature {
  justify-content: flex-start;
  background:
    radial-gradient(circle at 90% 8%, rgba(212, 175, 95, 0.18), transparent 40%),
    linear-gradient(160deg, var(--navy-soft), var(--navy));
  color: #fff;
  box-shadow: none;
}

.bento__feature:hover {
  box-shadow: var(--shadow-lg);
}

.bento__feature .bento__text {
  color: rgba(255, 255, 255, 0.65);
}

.bento__feature .bento__cta {
  color: var(--gold-soft);
}

.bento__feature h3 {
  color: #fff;
  font-size: 1.2rem;
}

.bento__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: auto;
  max-width: max-content;
  height: auto;
  margin: 0;
  padding: 0.35rem 0.75rem;
  border-radius: var(--r-pill);
  background: rgba(212, 175, 95, 0.2);
  color: var(--gold-soft);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

/* ========== Mid CTA ========== */
.midcta {
  padding: 0 0 var(--section);
  background: var(--paper);
}

.midcta__inner {
  display: grid;
  gap: 1.5rem;
  padding: 1.85rem 1.5rem;
  border-radius: var(--r-xl);
  background:
    radial-gradient(circle at 88% 18%, rgba(212, 175, 95, 0.16), transparent 42%),
    linear-gradient(140deg, var(--navy-mid), var(--navy));
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.midcta .kicker {
  color: var(--gold-soft);
}

.midcta h2 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
}

.midcta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  max-width: 40ch;
  font-size: 0.92rem;
}

.midcta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

/* ========== Channels ========== */
.channels {
  padding: var(--section) 0;
  background: var(--white);
}

.channels__grid {
  display: grid;
  gap: var(--gap-lg);
}

.channel-pills {
  list-style: none;
  margin: 1.25rem 0 1.5rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.channel-pills li {
  padding: 0.4rem 0.8rem;
  border-radius: var(--r-pill);
  background: var(--paper);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
}

.channels__cards {
  display: grid;
  gap: 0.85rem;
}

.channels__cards article {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 0.9rem;
  row-gap: 0.2rem;
  align-items: start;
  padding: 1.15rem;
  border-radius: var(--r-lg);
  background: var(--paper);
  transition: transform 0.25s var(--ease);
}

.channels__cards article:hover {
  transform: var(--lift);
}

.channels__cards img {
  width: 44px;
  height: 44px;
  padding: 0.55rem;
  border-radius: var(--r-sm);
  background: rgba(212, 175, 95, 0.12);
  grid-row: 1 / span 2;
  align-self: start;
}

.channels__cards h3 {
  grid-column: 2;
  margin: 0;
  padding-top: 0.15rem;
}

.channels__cards p {
  margin: 0;
  grid-column: 2;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

/* ========== Lawyer ========== */
.lawyer {
  padding: var(--section) 0;
  background:
    radial-gradient(ellipse at 16% 22%, rgba(212, 175, 95, 0.1), transparent 42%),
    var(--navy);
  color: #fff;
}

.lawyer__grid {
  display: grid;
  gap: var(--gap-lg);
  align-items: center;
}

.lawyer figure {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  max-height: 480px;
  display: grid;
  place-items: end center;
  border-radius: var(--r-xl);
  background: radial-gradient(circle at 50% 20%, #1c2b45, #060a12 72%);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.lawyer figure img {
  width: min(76%, 280px);
}

.lawyer figcaption {
  position: absolute;
  inset-inline: 1rem;
  bottom: 1rem;
  padding: 0.7rem 0.85rem;
  border-radius: var(--r-md);
  background: rgba(12, 22, 38, 0.75);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 0 0 1px var(--glass-border);
}

.lawyer figcaption b {
  display: block;
  font-size: 0.86rem;
}

.lawyer figcaption span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.58);
}

.lawyer .kicker {
  color: var(--gold-soft);
}

.lawyer h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.lawyer__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 1.15rem 0;
}

.lawyer__chips span {
  padding: 0.32rem 0.72rem;
  border-radius: var(--r-pill);
  background: var(--glass);
  box-shadow: inset 0 0 0 1px var(--glass-border);
  font-size: 0.74rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

.lawyer blockquote {
  margin: 0 0 1.15rem;
  padding: 1rem 1.1rem;
  border-radius: var(--r-md);
  background: var(--glass);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  line-height: 1.8;
  border-inline-start: 2px solid var(--gold);
}

.lawyer__meta {
  display: grid;
  gap: 0.3rem;
  margin-bottom: 1.35rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86rem;
}

.lawyer__meta a {
  color: var(--gold-soft);
  font-weight: 700;
}

/* ========== FAQ ========== */
.faq-section {
  padding: var(--section) 0;
  background: var(--white);
}

.faq details {
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
}

.faq details:first-child {
  border-top: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  line-height: 1.5;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--gold-ink);
  font-size: 1.15rem;
  font-weight: 500;
  flex-shrink: 0;
}

.faq details[open] summary::after {
  content: "–";
}

.faq p {
  margin: 0.7rem 0 0.15rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 52ch;
}

/* ========== Consultation schedule ========== */
.schedule {
  padding: var(--section) 0;
  background:
    radial-gradient(ellipse 50% 40% at 0% 0%, rgba(212, 175, 95, 0.08), transparent 55%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
}

.schedule__avg {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin: 0 0 1.75rem;
}

.schedule__avg > div {
  padding: 1.15rem 1.25rem;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  gap: 0.2rem;
}

.schedule__avg span {
  font-size: 0.82rem;
  color: var(--muted);
}

.schedule__avg strong {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color: var(--navy);
  line-height: 1.1;
  font-weight: 800;
}

.schedule__avg em {
  font-style: normal;
  font-size: 0.88rem;
  color: var(--gold-ink);
  font-weight: 600;
}

.schedule__plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.schedule__plan {
  display: grid;
  gap: 0.85rem;
  padding: 1.15rem 1.2rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  min-width: 0;
}

.schedule__plan.is-featured {
  border-color: rgba(212, 175, 95, 0.5);
  background:
    linear-gradient(180deg, rgba(212, 175, 95, 0.12), rgba(255, 255, 255, 0) 42%),
    var(--white);
  box-shadow: var(--shadow-gold);
  position: relative;
}

.schedule__plan.is-featured header h3::after {
  content: "پیشنهادی";
  margin-right: 0.45rem;
  padding: 0.12rem 0.5rem;
  border-radius: var(--r-pill);
  background: rgba(212, 175, 95, 0.22);
  color: var(--gold-ink);
  font-size: 0.7rem;
  font-weight: 700;
  vertical-align: middle;
}

.schedule__plan header h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.45;
}

.schedule__plan header p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.schedule__plan-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1rem;
}

.schedule__time {
  display: inline-flex;
  padding: 0.35rem 0.7rem;
  border-radius: var(--r-pill);
  background: rgba(212, 175, 95, 0.16);
  color: var(--gold-ink);
  font-weight: 800;
  font-size: 0.9rem;
  white-space: nowrap;
}

.schedule__price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  color: var(--navy);
  font-weight: 800;
  font-size: 1.1rem;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.schedule__price i {
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
}

.schedule__plan-for {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
}

.schedule__plan .btn,
.schedule__plan .btn--line {
  min-height: 2.55rem;
  padding: 0.5rem 1rem;
  font-size: 0.88rem;
  width: 100%;
  justify-content: center;
}

@media (min-width: 640px) {
  .schedule__plans {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 1100px) {
  .schedule__plans {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem;
  }

  .schedule__plan {
    padding: 1.25rem 1.15rem 1.3rem;
    align-content: start;
  }

  .schedule__plan-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
  }

  .schedule__price {
    font-size: 1.2rem;
  }
}

.schedule__week {
  margin-top: 2rem;
}

.schedule__week h3 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-size: 1.15rem;
}

.schedule__week-grid {
  display: grid;
  gap: 0.85rem;
}

.schedule__week-grid article {
  padding: 1.1rem 1.2rem;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  gap: 0.35rem;
}

.schedule__week-grid b {
  color: var(--navy);
}

.schedule__week-grid span {
  color: var(--muted);
  font-size: 0.92rem;
}

.schedule__week-grid .is-muted {
  opacity: 0.75;
  font-size: 0.84rem;
}

.schedule__note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ========== Contact ========== */
.contact {
  padding: var(--section) 0;
  scroll-margin-top: 5.5rem;
  background:
    radial-gradient(ellipse at 88% 10%, rgba(212, 175, 95, 0.1), transparent 40%),
    #090f1a;
  color: #fff;
}

.contact .kicker {
  color: var(--gold-soft);
}

.contact h2 {
  color: #fff;
  margin-bottom: 0.7rem;
}

.contact__grid {
  display: grid;
  gap: var(--gap-lg);
  align-items: start;
}

.contact__bullets {
  margin: 1.25rem 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.contact__bullets li {
  position: relative;
  padding-inline-start: 1.1rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.contact__bullets li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.58rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.contact__links {
  display: grid;
  gap: 0.4rem;
  margin: 1rem 0;
}

.contact__links a {
  color: var(--gold-soft);
  font-weight: 700;
  font-size: 1rem;
  transition: opacity 0.2s;
}

.contact__links a:hover {
  opacity: 0.85;
}

.contact__addr {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.86rem;
  line-height: 1.7;
  max-width: 34ch;
}

.form {
  display: grid;
  gap: 0.85rem;
  padding: 1.5rem;
  border-radius: var(--r-xl);
  background: var(--glass);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 0 0 1px var(--glass-border);
}

.form__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.15rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.form__head b {
  font-size: 1rem;
}

.form__head span {
  color: var(--gold-soft);
  font-size: 0.74rem;
  font-weight: 700;
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

.form input,
.form select,
.form textarea {
  border: 0;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 0.85rem 0.95rem;
  outline: none;
  box-shadow: inset 0 0 0 1px transparent;
  transition: box-shadow 0.2s, background 0.2s;
}

.form input::placeholder,
.form textarea::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

.form option {
  color: #111;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 95, 0.5);
}

.form__note {
  margin: 0;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.6;
}

.form__ok {
  margin: 0;
  color: var(--gold-soft);
  font-size: 0.88rem;
}

/* ========== Footer ========== */
.footer {
  position: relative;
  background: #04070d;
  color: rgba(255, 255, 255, 0.58);
  padding: 2.75rem 0 1.4rem;
  overflow: hidden;
}

.footer__bg {
  position: absolute;
  inset: 0;
  background: url("assets/footer-1.webp") center / cover;
  opacity: 0.08;
}

.footer__grid,
.footer__copy {
  position: relative;
  z-index: 1;
}

.footer__grid {
  display: grid;
  gap: 1.75rem;
}

.footer img {
  width: 72px;
  margin-bottom: 0.7rem;
}

.footer h4 {
  margin: 0 0 0.65rem;
  color: var(--gold-soft);
  font-size: 0.88rem;
}

.footer a,
.footer p {
  display: block;
  margin: 0 0 0.4rem;
  font-size: 0.84rem;
  line-height: 1.65;
}

.footer a:hover {
  color: var(--gold-soft);
}

.footer__copy {
  margin-top: 2rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__copy p {
  margin: 0 0 0.35rem;
  font-size: inherit;
}

.wa {
  position: fixed;
  inset-inline-start: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 1.1rem;
  border-radius: var(--r-pill);
  background: #1f9d53;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  box-shadow: 0 10px 28px rgba(31, 157, 83, 0.32);
  transition: transform 0.25s var(--ease);
}

.wa:hover {
  transform: var(--lift);
}

.wa__pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 2.4s ease infinite;
}

/* ========== Desktop ========== */
@media (min-width: 860px) {
  .nav,
  .header-cta {
    display: flex;
  }

  .burger,
  .drawer {
    display: none !important;
  }

  .hero {
    padding-top: 6.5rem;
  }

  .hero > .wrap {
    width: var(--wrap);
    margin-inline: auto;
  }

  .hero__grid {
    grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
    grid-template-areas: "visual copy";
    align-items: center;
    min-height: 620px;
    gap: 2.75rem;
    padding-bottom: 2rem;
  }

  .hero__visual {
    grid-area: visual;
    width: 100%;
    max-width: 440px;
    justify-self: start;
  }

  .hero__copy {
    grid-area: copy;
    align-self: center;
    max-width: 36rem;
    padding: 0.5rem 0 0.5rem 0.5rem;
    background: none;
  }

  .hero__frame {
    min-height: 0;
    aspect-ratio: 4 / 5;
    max-height: 560px;
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-lg);
  }

  .hero__frame::before {
    background: linear-gradient(180deg, transparent 58%, rgba(7, 16, 28, 0.45));
  }

  .hero__person {
    width: min(90%, 340px);
  }

  .hero__float {
    display: flex;
  }

  .hero h1 {
    font-size: clamp(2rem, 2.6vw, 2.75rem);
    line-height: 1.42;
  }

  .hero__lead {
    font-size: 1.05rem;
    line-height: 2;
    max-width: 32em;
  }

  .hero__proof {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: none;
  }

  .hero__proof div {
    min-height: 4.6rem;
  }

  .trustbar__row {
    grid-template-columns: repeat(4, 1fr);
    padding: 1.15rem 0;
  }

  .trustbar__item {
    position: relative;
    justify-content: center;
    font-size: 0.8rem;
  }

  .trustbar__item:not(:last-child)::after {
    content: "";
    position: absolute;
    inset-inline-end: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: var(--line-strong);
  }

  .intent__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .schedule__avg {
    grid-template-columns: repeat(3, 1fr);
  }

  .schedule__week-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process__steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    position: relative;
  }

  .process__steps::before {
    content: "";
    position: absolute;
    top: 1.85rem;
    inset-inline: 6%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 95, 0.35), transparent);
    pointer-events: none;
  }

  .value__grid,
  .channels__grid,
  .lawyer__grid,
  .contact__grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 3rem;
    align-items: start;
  }

  .lawyer__grid {
    align-items: center;
  }

  .midcta__inner {
    grid-template-columns: 1.3fr auto;
    gap: 2rem;
    align-items: center;
    padding: 2rem 2.15rem;
  }

  .bento {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
  }

  .bento__feature {
    grid-column: span 2;
    grid-row: span 2;
  }

  .footer__grid {
    grid-template-columns: 1.45fr 1fr 1fr;
    gap: 2rem;
  }

  .footer__copy {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
  }

  .footer__copy p {
    margin: 0;
  }
}

/* ========== Mobile polish ========== */
@media (max-width: 859px) {
  :root {
    --wrap: min(1120px, calc(100% - 1.5rem));
    --section: clamp(2.75rem, 8vw, 4rem);
  }

  body.nav-open {
    overflow: hidden;
    touch-action: none;
  }

  .header {
    overflow: visible;
  }

  .header__row {
    position: relative;
    z-index: 70;
    min-height: 3.6rem;
    gap: 0.65rem;
    padding-inline: 0.75rem;
  }

  .logo span {
    max-width: 9.5rem;
  }

  .logo b {
    font-size: 0.82rem;
  }

  .logo small {
    font-size: 0.62rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
  }

  .drawer {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: flex;
    flex-direction: column;
    max-height: none;
    margin: 0;
    padding: 1rem 1rem 1.35rem;
    border: 0;
    border-radius: 0;
    background: rgba(5, 12, 22, 0.98);
    backdrop-filter: blur(16px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .drawer[hidden] {
    display: none;
  }

  .drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.85rem;
    margin-bottom: 0.35rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
  }

  .drawer__close {
    width: 2.4rem;
    height: 2.4rem;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
  }

  .drawer-menu {
    flex: 1;
  }

  .drawer-menu__item > a,
  .drawer-menu__row {
    padding: 0.95rem 0.15rem;
    font-size: 1rem;
  }

  .drawer-menu__sub {
    padding-inline-start: 0.85rem;
    margin-bottom: 0.35rem;
    border-inline-start: 2px solid rgba(212, 175, 95, 0.28);
  }

  .drawer__cta {
    position: sticky;
    bottom: 0;
    margin-top: 1rem;
    margin-bottom: 0.25rem;
  }

  .hero {
    padding-top: 4.6rem;
  }

  .hero__glow,
  .hero__glow--2 {
    width: 220px;
    height: 220px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn,
  .hero__actions .btn--line {
    width: 100%;
  }

  .hero__micro {
    font-size: 0.8rem;
  }

  .hero__micro a {
    white-space: normal;
  }

  .hero__proof {
    max-width: none;
    gap: 0.55rem;
  }

  .hero__proof strong {
    font-size: 1.15rem;
  }

  .hero__marquee {
    overflow: hidden;
  }

  .intent__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .intent__item {
    padding: 0.95rem 0.85rem;
  }

  .intent__item img {
    width: 40px;
    height: 40px;
  }

  .bento {
    gap: 0.75rem;
  }

  .schedule__avg {
    grid-template-columns: 1fr;
  }

  .schedule__plans {
    grid-template-columns: 1fr;
  }

  .schedule__week-grid {
    grid-template-columns: 1fr;
  }

  .midcta__inner,
  .midcta__actions {
    display: grid;
    gap: 0.85rem;
  }

  .midcta__actions .btn,
  .midcta__actions .btn--line {
    width: 100%;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .contact form input,
  .contact form select,
  .contact form textarea,
  .contact .btn {
    width: 100%;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .wa {
    inset-inline-start: 0.75rem;
    bottom: 0.75rem;
    padding: 0.65rem 0.9rem;
    font-size: 0.75rem;
    z-index: 55;
  }

  .service-page__actions {
    flex-direction: column;
  }

  .service-page__actions .btn,
  .service-page__actions .btn--line {
    width: 100%;
  }

  .service-page__chips a {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.48rem;
    line-height: 1.5;
  }

  .hero__lead {
    font-size: 0.92rem;
    line-height: 1.85;
  }

  .hero__copy {
    padding: 4.35rem 0.85rem 1.5rem;
  }

  .hero__proof {
    gap: 0.5rem;
  }

  .hero__proof div {
    padding: 0.7rem 0.6rem;
    min-height: 4rem;
  }

  .intent__grid {
    grid-template-columns: 1fr;
  }

  .intent__item em {
    font-size: 0.72rem;
  }

  .logo small {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__marquee-track,
  .hero__float,
  .badge__dot,
  .wa__pulse {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
