/* ─────────────────────────────────────────
   PavelUsov Digital Marketing — styles.css
───────────────────────────────────────── */

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

/* ─── TOKENS ─── */
:root {
  --ink: #0D0D0D;
  --surface: #F5F3EF;
  --white: #FFFFFF;
  --gold: #C8922A;
  --gold-light: #E8B84B;
  --gold-pale: #FDF6E8;
  --muted: #6B6760;
  --border: rgba(13,13,13,0.12);
  --dark: #111010;
  --dark-2: #1A1917;
}

/* ─── BASE ─── */
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Syne', sans-serif; line-height: 1.1; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(245,243,239,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.logo span { color: var(--gold); }

.nav-toggle,
.nav-toggle-label {
  display: none;
}

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

.nav-links a {
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

.btn-nav {
  background: var(--ink);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
  font-weight: 500;
  transition: background 0.2s;
}

.btn-nav:hover { background: var(--gold) !important; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--white);
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 2px;
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--ink);
  padding: 0.9rem 2rem;
  border: 1.5px solid var(--ink);
  border-radius: 2px;
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover { background: var(--ink); color: var(--white); }

.btn-dark-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: rgba(255,255,255,0.85);
  padding: 0.9rem 2rem;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 2px;
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.btn-dark-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* ─── HERO ─── */
.hero {
  background: var(--dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Ambient glow */
.hero::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -5%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(200,146,42,0.10) 0%, transparent 60%);
  pointer-events: none;
}

/* Bottom gold line */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ── Decorative grid lines ── */
.hero-grid-lines { position: absolute; inset: 0; pointer-events: none; }

.hgl {
  position: absolute;
  background: rgba(200,146,42,0.08);
}

.hgl-v1 { left: 33.33%; top: 0; bottom: 0; width: 1px; }
.hgl-v2 { left: 66.66%; top: 0; bottom: 0; width: 1px; }
.hgl-h1 { top: 33.33%; left: 0; right: 0; height: 1px; }
.hgl-h2 { top: 66.66%; left: 0; right: 0; height: 1px; }

.hgl-diag {
  width: 2px;
  height: 140%;
  top: -20%;
  right: 18%;
  transform: rotate(22deg);
  transform-origin: top center;
  background: linear-gradient(to bottom, transparent, rgba(200,146,42,0.15), transparent);
}

/* ── Large background wordmark ── */
.hero-bg-word {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.06em;
  font-family: 'Syne', sans-serif;
  font-size: clamp(6rem, 13vw, 16rem);
  font-weight: 800;
  color: rgba(200,146,42,0.04);
  letter-spacing: -0.04em;
  line-height: 0.82;
  text-align: center;
  transform: scaleX(0.82);
  transform-origin: center bottom;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* ── Hero content ── */
.hero-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 9rem 2rem 7rem;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
  line-height: 1.03;
  max-width: 1180px;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2.75rem;
  font-weight: 300;
  line-height: 1.75;
  max-width: 760px;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ─── SHARED ─── */
section { padding: 6rem 2rem; }

.container { max-width: 1200px; margin: 0 auto; }

.section-tag {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-tag::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--gold);
}

.section-h {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

/* ─── TRUST ─── */
.trust-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  max-width: 760px;
}

.trust-bullets { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }

.trust-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.5;
}

.bullet-dot {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.bullet-dot::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ─── SERVICES ─── */
.services-section { background: var(--surface); }

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.service-card {
  background: var(--white);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}

.service-card:hover { background: var(--gold-pale); }

.service-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.service-icon {
  width: 40px;
  height: 40px;
  background: var(--surface);
  border-radius: 2px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-h {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.service-body { font-size: 0.9rem; color: var(--muted); line-height: 1.7; flex: 1; margin-bottom: 2rem; }

.service-link {
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}

.service-link:hover { gap: 0.7rem; }

/* ─── RESULTS ─── */
.results-section {
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.results-section::before {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,146,42,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.results-points { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.5rem; }

.result-point { display: flex; align-items: flex-start; gap: 1rem; }

.rp-line {
  flex-shrink: 0;
  width: 1px;
  background: var(--gold);
  height: 44px;
  margin-top: 2px;
}

.rp-text { font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.6; }

.case-study {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 2rem;
}

.cs-tag { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }

.cs-quote {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  font-style: italic;
}

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

.cs-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.cs-metric { text-align: center; padding: 1rem; background: rgba(255,255,255,0.04); border-radius: 2px; }

.cs-metric-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-light);
  display: block;
}

.cs-metric-label { font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-top: 0.25rem; }

/* ─── WHY ME ─── */
.whyme-section { background: var(--white); }

.whyme-grid { max-width: 760px; }

.whyme-copy { font-size: 1.1rem; color: var(--muted); line-height: 1.8; margin-top: 1.5rem; }

/* ─── TESTIMONIALS ─── */
.testimonials-section { background: var(--surface); }

.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 1.5rem;
  width: 42px;
  height: 4px;
  border-radius: 0 0 2px 2px;
  background: var(--gold);
  pointer-events: none;
}

.stars { display: flex; gap: 2px; margin-bottom: 1rem; }

.star {
  width: 12px;
  height: 12px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.testimonial-text { font-size: 1.05rem; color: var(--ink); line-height: 1.7; font-style: italic; }

/* ─── PRICING ─── */
.pricing-section { background: var(--dark); color: var(--white); }

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

.pricing-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}

.pricing-card:hover { border-color: rgba(200,146,42,0.4); }

.pricing-card.featured { border-color: var(--gold); position: relative; }

.featured-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 0 0 4px 4px;
}

.pricing-tier {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.pricing-price {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pricing-price span { font-size: 0.95rem; font-weight: 400; color: rgba(255,255,255,0.4); }

.pricing-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 1.5rem 0; }

.pricing-cta-wrap { margin-top: auto; padding-top: 1.5rem; }

/* ─── ABOUT ─── */
.about-section { background: var(--white); }

.about-grid { max-width: 760px; }

.about-copy { font-size: 1.1rem; color: var(--muted); line-height: 1.8; margin-top: 1.5rem; }

.about-copy p + p { margin-top: 1rem; }

/* ─── CONTACT ─── */
.contact-section { background: var(--surface); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

.contact-sub { font-size: 1.05rem; color: var(--muted); margin-top: 1.25rem; line-height: 1.7; }

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

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

.form-label { font-size: 0.78rem; font-weight: 500; color: var(--muted); letter-spacing: 0.04em; }

.form-input,
.form-textarea {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-input:focus,
.form-textarea:focus { border-color: var(--gold); }

.form-textarea { resize: vertical; min-height: 110px; }

/* ─── FINAL CTA ─── */
.cta-section {
  background: var(--surface);
  color: var(--ink);
  text-align: center;
  padding: 7rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-section .section-h { color: var(--ink); max-width: 680px; margin: 0 auto 1rem; padding-inline: 0.75rem; }

.cta-sub { font-size: 1rem; color: var(--muted); margin: 0 auto 2.5rem; max-width: 520px; line-height: 1.7; }

.btn-cta-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ink);
  color: var(--white);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 2px;
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-cta-dark:hover { background: var(--gold); transform: translateY(-2px); }

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.3);
  padding: 2.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--white); }
.footer-logo span { color: var(--gold); }

.footer-text { font-size: 0.8rem; }

/* ─── FORM POPUP ─── */
.form-popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(13,13,13,0.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.form-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.form-popup__panel {
  width: min(100%, 440px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 24px 70px rgba(13,13,13,0.22);
}

.form-popup__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--surface);
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.form-popup__tag {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.form-popup__title {
  color: var(--ink);
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.form-popup__text {
  color: var(--muted);
  line-height: 1.7;
}

.form-popup.is-error .form-popup__tag {
  color: #9F2D20;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-tag    { animation: fadeUp 0.6s ease both; animation-delay: 0.1s; }
.hero h1     { animation: fadeUp 0.6s ease both; animation-delay: 0.2s; }
.hero-sub    { animation: fadeUp 0.6s ease both; animation-delay: 0.3s; }
.hero-ctas   { animation: fadeUp 0.6s ease both; animation-delay: 0.4s; }

@media (max-width: 1100px) {
  .nav-inner {
    padding: 0 1.5rem;
  }

  .nav-links {
    gap: 1.25rem;
  }

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

  .services-grid {
    background: transparent;
    border: none;
    gap: 1.5rem;
    overflow: visible;
  }

  .service-card {
    border: 1px solid var(--border);
  }

  .results-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 900px) {
  section {
    padding: 5rem 1.5rem;
  }

  .hero-content {
    padding: 8rem 1.5rem 5rem;
    width: 100%;
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 9vw, 4.5rem);
    max-width: 100%;
  }

  .hero-sub {
    max-width: 100%;
  }

  .hero-bg-word {
    font-size: clamp(4.5rem, 16vw, 10rem);
    transform: scaleX(0.86);
  }

  .services-header {
    display: block;
    margin-bottom: 2.5rem;
  }

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

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

@media (max-width: 760px) {
  .nav-inner {
    height: auto;
    min-height: 64px;
    padding: 0.85rem 1.25rem;
    position: relative;
  }

  .logo {
    max-width: 190px;
    line-height: 1.25;
  }

  .nav-toggle-label {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 2px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0 10px;
    cursor: pointer;
  }

  .nav-toggle-label span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--ink);
    transition: transform 0.2s, opacity 0.2s;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 1.25rem;
    right: 1.25rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0.5rem;
    box-shadow: 0 18px 40px rgba(13,13,13,0.12);
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.85rem 1rem;
    color: var(--ink);
  }

  .nav-links .btn-nav {
    text-align: center;
    margin-top: 0.35rem;
  }

  .nav-toggle:checked ~ .nav-links {
    display: flex;
  }

  .nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .services-grid,
  .pricing-grid,
  .cs-metrics {
    grid-template-columns: 1fr;
  }

  .service-card,
  .pricing-card,
  .testimonial-card,
  .case-study {
    padding: 1.5rem;
  }

  .section-h {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }

  .trust-bullets li {
    font-size: 1rem;
  }

  .cta-section {
    padding: 5rem 1.5rem;
  }
}

@media (max-width: 560px) {
  .hero {
    align-items: flex-start;
    min-height: 92vh;
  }

  .hero-content {
    padding: 7rem 1.25rem 4rem;
  }

  .hero-tag {
    max-width: 100%;
    line-height: 1.5;
    font-size: 0.64rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.06;
    letter-spacing: -0.02em;
  }

  .hero-sub,
  .whyme-copy,
  .about-copy,
  .contact-sub {
    font-size: 1rem;
  }

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

  .btn-primary,
  .btn-dark-outline,
  .btn-cta-dark {
    width: 100%;
    justify-content: center;
    padding-inline: 1.25rem;
    text-align: center;
  }

  .hero-bg-word {
    font-size: clamp(3.5rem, 18vw, 6rem);
    bottom: 0;
    transform: scaleX(0.9);
  }

  .hgl-v1 { left: 50%; }
  .hgl-v2 { display: none; }

  .service-card,
  .pricing-card,
  .testimonial-card,
  .case-study {
    padding: 1.25rem;
  }

  .footer-inner {
    text-align: left;
  }
}

@media (max-width: 380px) {
  section {
    padding-inline: 1rem;
  }

  .hero-content {
    padding-inline: 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section-h {
    font-size: 1.65rem;
  }
}
