/* ============================================================
   Scale With Scribe — styles.css
   Theme: Dark navy #0a0f1e | Gold #c9a84c | White text
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:       #0a0f1e;
  --navy-mid:   #0f1730;
  --navy-card:  #131c35;
  --navy-light: #1a2545;
  --gold:       #c9a84c;
  --gold-light: #e0c06e;
  --gold-dim:   #a07e35;
  --white:      #ffffff;
  --off-white:  #e8ecf4;
  --muted:      #8a9bbf;
  --border:     rgba(201, 168, 76, 0.18);

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(201, 168, 76, 0.12);

  --transition: 0.25s ease;
  --max-width: 1160px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--navy);
  color: var(--white);
  font-family: var(--font-sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--gold-light); }

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

.display {
  font-family: var(--font-display);
  font-style: italic;
}

.gold { color: var(--gold); }
.muted { color: var(--muted); }

/* ---------- Layout Helpers ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 100px 0;
}

.section--alt {
  background: var(--navy-mid);
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 16px;
  margin-bottom: 1.2rem;
  background: rgba(201, 168, 76, 0.06);
}

.section-heading {
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 3.5rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  padding: 14px 30px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--off-white);
  padding: 14px 0;
  gap: 6px;
}
.btn-ghost:hover { color: var(--gold); }
.btn-ghost .arrow { transition: transform var(--transition); }
.btn-ghost:hover .arrow { transform: translateX(4px); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  transition: background var(--transition);
}

.nav.scrolled {
  background: rgba(10, 15, 30, 0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.nav__inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo:hover { color: var(--gold-light); }

.nav__logo-mark {
  width: 32px;
  height: 32px;
  background: var(--gold);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--navy);
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  color: var(--off-white);
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.85;
  transition: all var(--transition);
}

.nav__links a:hover {
  color: var(--gold);
  opacity: 1;
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(201, 168, 76, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* Grid pattern overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 30%, transparent 80%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--gold);
}

.hero__headline {
  max-width: 800px;
  margin-bottom: 1.5rem;
}

.hero__headline em {
  font-style: normal;
  color: var(--gold);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero__trust {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
}

.hero__trust-icon {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--gold);
  padding: 18px 0;
  overflow: hidden;
}

.stats-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stats-bar__item {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}

.stats-bar__dot {
  width: 4px;
  height: 4px;
  background: var(--navy);
  border-radius: 50%;
  opacity: 0.4;
  margin: 0 1.5rem;
}

.stats-bar__item:last-child + .stats-bar__dot {
  display: none;
}

/* ---------- Problem / Solution ---------- */
.ps {
  padding: 100px 0;
}

.ps__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ps__problem {
  position: relative;
}

.ps__problem-card {
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.ps__problem-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.ps__problem-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 80, 80, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #ff7070;
}

.ps__problem-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ff7070;
}

.ps__pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ps__pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.ps__pain-list li::before {
  content: '✕';
  color: #ff7070;
  font-weight: 700;
  font-size: 0.8rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.ps__solution-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: block;
}

.ps__solution-headline {
  margin-bottom: 1.5rem;
}

.ps__solution-body {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.ps__solution-body strong {
  color: var(--white);
  font-weight: 600;
}

.ps__checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.ps__checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--off-white);
}

.ps__checks li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: rgba(201, 168, 76, 0.15);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
}

/* ---------- Services ---------- */
.services {
  padding: 100px 0;
  background: var(--navy-mid);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.service-card__title {
  margin-bottom: 1rem;
  font-size: 1.15rem;
}

.service-card__desc {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.service-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-card__features li {
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-card__features li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
  flex-shrink: 0;
}

/* ---------- The Model ---------- */
.model {
  padding: 100px 0;
}

.model__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.model__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.model__quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.model__body {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.model__body strong {
  color: var(--white);
}

.model__options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.model__option {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: border-color var(--transition);
}

.model__option:hover {
  border-color: rgba(201, 168, 76, 0.4);
}

.model__option-badge {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
  margin-top: 3px;
  flex-shrink: 0;
}

.model__option-badge.alt {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.model__option-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--white);
}

.model__option-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.model__guarantee {
  margin-top: 2.5rem;
  padding: 1.5rem 1.75rem;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.model__guarantee-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.model__guarantee-text {
  font-size: 0.9rem;
  color: var(--off-white);
  line-height: 1.55;
}

.model__guarantee-text strong {
  color: var(--gold);
}

/* ---------- How It Works ---------- */
.how {
  padding: 100px 0;
  background: var(--navy-mid);
}

.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

/* Connector line between steps */
.how__steps::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dim), var(--gold));
  opacity: 0.25;
}

.how__step {
  position: relative;
  padding: 2.5rem;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.how__step:hover {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.how__step-num {
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 76, 0.1);
  border: 1.5px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.how__step-title {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.how__step-desc {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.how__step-detail {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.how__step-detail li {
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.how__step-detail li::before {
  content: '→';
  color: var(--gold);
  font-size: 0.75rem;
}

/* ---------- CTA / Contact ---------- */
.contact {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.contact__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.contact__left {
  padding-top: 0.5rem;
}

.contact__headline {
  margin-bottom: 1.25rem;
}

.contact__sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact__detail-icon {
  width: 38px;
  height: 38px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* ---------- Form ---------- */
.form {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

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

.form__group {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--off-white);
  letter-spacing: 0.02em;
}

.form__input,
.form__select,
.form__textarea {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  padding: 12px 14px;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a9bbf' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: rgba(138, 155, 191, 0.5);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__select option {
  background: var(--navy-card);
  color: var(--white);
}

.form__submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 16px;
  margin-top: 0.5rem;
}

.form__note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 1rem;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-card);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 48px 0;
}

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

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.footer__logo-mark {
  width: 28px;
  height: 28px;
  background: var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--navy);
  flex-shrink: 0;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer__links a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color var(--transition);
}

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

.footer__copy {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: right;
  line-height: 1.6;
}

.footer__copy a {
  color: var(--muted);
}

.footer__copy a:hover {
  color: var(--gold);
}

/* ---------- Scroll animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ---------- Mobile nav drawer ---------- */
.nav__mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 15, 30, 0.98);
  z-index: 999;
  padding: 2rem;
  flex-direction: column;
  gap: 0;
  backdrop-filter: blur(14px);
}

.nav__mobile-menu.open {
  display: flex;
}

.nav__mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}

.nav__mobile-links li a {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--off-white);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.nav__mobile-links li a:hover {
  color: var(--gold);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .ps__grid,
  .model__inner,
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services__grid {
    grid-template-columns: 1fr 1fr;
  }

  .how__steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .how__steps::before { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  .nav__links,
  .nav__cta .btn-outline {
    display: none;
  }

  .nav__toggle { display: flex; }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .form__row {
    grid-template-columns: 1fr;
  }

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

  .footer__copy {
    text-align: left;
  }

  .stats-bar__dot { margin: 0 1rem; }

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

  .hero__trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .form { padding: 1.75rem 1.25rem; }
  .stats-bar__inner { flex-direction: column; gap: 0.75rem; }
  .stats-bar__dot { display: none; }
}
