/* =============================================
   MR SCRAP BUYER — BLUE TRUST AUTHORITY SYSTEM
   Premium Service Brand · Hyderabad 2025
   ============================================= */

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  background: #ffffff;
  color: #1e293b;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* CSS VARIABLES */
:root {
  --blue:         #1D4ED8;
  --blue-dark:    #1e40af;
  --blue-light:   #3b82f6;
  --sky:          #0ea5e9;
  --sky-light:    #e0f2fe;
  --white:        #ffffff;
  --off-white:    #F8FAFC;
  --slate-50:     #f8fafc;
  --slate-100:    #f1f5f9;
  --slate-200:    #e2e8f0;
  --slate-300:    #cbd5e1;
  --slate-400:    #94a3b8;
  --slate-500:    #64748b;
  --slate-600:    #475569;
  --slate-700:    #334155;
  --slate-800:    #1e293b;
  --slate-900:    #0f172a;
  --navy:         #0f172a;
  --charcoal:     #1e293b;
  --yellow-star:  #f59e0b;
  --green-wa:     #25D366;
  --font-sans:    'Plus Jakarta Sans', 'Inter', sans-serif;
  --max-w:        1240px;
  --radius:       12px;
  --radius-sm:    8px;
  --radius-lg:    16px;
  --section-pad:  96px 24px;
}

/* BASE */
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--slate-100); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* =============================================
   UTILITIES
   ============================================= */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container--sm { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

/* SECTION LABELS */
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(29, 78, 216, 0.08);
  border: 1px solid rgba(29, 78, 216, 0.15);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-title .accent { color: var(--blue); }
.section-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--slate-500);
  max-width: 560px;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes float-wa {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}
@keyframes pulse-ring {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(1.55); opacity: 0; }
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-d1 { transition-delay: 0.1s !important; }
.reveal-d2 { transition-delay: 0.2s !important; }
.reveal-d3 { transition-delay: 0.3s !important; }
.reveal-d4 { transition-delay: 0.4s !important; }

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  background: var(--blue);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius);
  transition: background 0.22s, transform 0.18s, box-shadow 0.22s;
  box-shadow: 0 4px 20px rgba(29, 78, 216, 0.32);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(29, 78, 216, 0.42);
}
.btn-primary svg { width: 17px; height: 17px; stroke: currentColor; fill: none; flex-shrink: 0; }

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  background: var(--green-wa);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius);
  transition: background 0.22s, transform 0.18s, box-shadow 0.22s;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  white-space: nowrap;
}
.btn-wa:hover {
  background: #1ebe5c;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.44);
}
.btn-wa svg { width: 17px; height: 17px; fill: #fff; flex-shrink: 0; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  background: transparent;
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 700;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  transition: background 0.22s, color 0.22s, transform 0.18s;
  white-space: nowrap;
}
.btn-outline:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline svg { width: 17px; height: 17px; stroke: currentColor; fill: none; flex-shrink: 0; }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 34px;
  background: #fff;
  color: var(--blue);
  font-size: 1rem;
  font-weight: 800;
  border-radius: var(--radius);
  transition: transform 0.18s, box-shadow 0.22s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  white-space: nowrap;
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(0,0,0,0.2); }
.btn-white svg { width: 17px; height: 17px; stroke: var(--blue); fill: none; flex-shrink: 0; }

.btn-wa-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  background: transparent;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: var(--radius);
  transition: background 0.22s, border-color 0.22s, transform 0.18s;
  white-space: nowrap;
}
.btn-wa-outline:hover {
  background: var(--green-wa);
  border-color: var(--green-wa);
  transform: translateY(-2px);
}
.btn-wa-outline svg { width: 17px; height: 17px; fill: #fff; flex-shrink: 0; }

/* =============================================
   FLOATING WHATSAPP
   ============================================= */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green-wa);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.42);
  animation: float-wa 3s ease-in-out infinite;
  transition: transform 0.28s, box-shadow 0.28s;
}
.wa-float::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--green-wa);
  animation: pulse-ring 2s ease-out infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 38px rgba(37, 211, 102, 0.58); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }

/* =============================================
   STICKY HEADER
   ============================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 990;
  padding: 0 24px;
  transition: background 0.35s, box-shadow 0.35s;
}
.header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 var(--slate-200), 0 4px 24px rgba(0,0,0,0.06);
  backdrop-filter: blur(12px);
}
.header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.header__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.header__logo-name {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.header__logo-name span { color: var(--blue); }
.header__logo-sub {
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-top: 2px;
}

/* Nav */
.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate-600);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.header__nav a:hover, .header__nav a.active { color: var(--blue); }

/* Dropdown */
.nav-item { position: relative; }
.nav-item > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.22s, transform 0.22s;
  z-index: 100;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.nav-item:hover .nav-dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.nav-dropdown a {
  display: block;
  padding: 9px 14px;
  font-size: 0.86rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  color: var(--slate-600);
  transition: background 0.18s, color 0.18s;
}
.nav-dropdown a:hover { background: var(--sky-light); color: var(--blue); }
.caret { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform 0.22s; }
.nav-item:hover .caret { transform: rotate(180deg); }

.header__actions { display: flex; align-items: center; gap: 10px; }
.btn-call-header {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: transparent;
  border: 1.5px solid var(--blue);
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--blue);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-call-header:hover { background: var(--blue); color: #fff; }
.btn-call-header svg { width: 14px; height: 14px; stroke: currentColor; fill: none; flex-shrink: 0; }
.btn-wa-header {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: var(--green-wa);
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 700;
  color: #fff;
  transition: background 0.2s, transform 0.18s;
  white-space: nowrap;
}
.btn-wa-header:hover { background: #1ebe5c; transform: translateY(-1px); }
.btn-wa-header svg { width: 14px; height: 14px; fill: #fff; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 23px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.28s, opacity 0.28s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98);
  z-index: 980;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
  overflow-y: auto;
  padding: 24px;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--blue); }
.mobile-nav__cta {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* =============================================
   TRUST BAR (MARQUEE)
   ============================================= */
.trust-bar {
  background: var(--blue);
  overflow: hidden;
}
.trust-bar__track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 44px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
}
.trust-bar__item svg { width: 14px; height: 14px; fill: rgba(255,255,255,0.7); flex-shrink: 0; }
.trust-bar__sep {
  align-self: center;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  flex-shrink: 0;
}

/* =============================================
   INNER PAGE HERO
   ============================================= */
.hero-inner {
  background: var(--off-white);
  padding: 140px 24px 80px;
  border-bottom: 1px solid var(--slate-200);
  position: relative;
  overflow: hidden;
}
.hero-inner::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%; height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(29,78,216,0.04) 100%);
  pointer-events: none;
}
.hero-inner__inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }
.hero-inner__breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--slate-400);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.hero-inner__breadcrumb a { transition: color 0.2s; }
.hero-inner__breadcrumb a:hover { color: var(--blue); }
.hero-inner__breadcrumb svg { width: 12px; height: 12px; stroke: var(--slate-300); fill: none; }
.hero-inner__title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 16px;
}
.hero-inner__title .accent { color: var(--blue); }
.hero-inner__desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--slate-500);
  max-width: 580px;
  margin-bottom: 32px;
}
.hero-inner__cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* =============================================
   FAQ
   ============================================= */
.faq-item { border-bottom: 1px solid var(--slate-200); }
.faq-item:first-child { border-top: 1px solid var(--slate-200); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
  background: none;
}
.faq-q:hover { color: var(--blue); }
.faq-icon {
  width: 22px; height: 22px;
  stroke: var(--blue);
  fill: none;
  flex-shrink: 0;
  transition: transform 0.28s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding 0.28s;
}
.faq-item.open .faq-a { max-height: 240px; padding-bottom: 18px; }
.faq-a p { font-size: 0.93rem; line-height: 1.78; color: var(--slate-500); }

/* =============================================
   REVIEWS
   ============================================= */
.review-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color 0.28s, box-shadow 0.28s, transform 0.28s;
}
.review-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(29,78,216,0.1);
  transform: translateY(-3px);
}
.review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review-stars svg { width: 16px; height: 16px; fill: var(--yellow-star); }
.review-text {
  font-size: 0.93rem;
  line-height: 1.78;
  color: var(--slate-600);
  margin-bottom: 20px;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.review-author-name { font-size: 0.88rem; font-weight: 700; color: var(--navy); }
.review-author-meta { font-size: 0.74rem; color: var(--slate-400); margin-top: 2px; }

/* =============================================
   FINAL CTA
   ============================================= */
.final-cta {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--sky) 100%);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 40%);
  pointer-events: none;
}
.final-cta__inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.final-cta__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}
.final-cta__title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 16px;
}
.final-cta__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 44px;
  line-height: 1.7;
}
.final-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--slate-900);
  padding: 64px 24px 28px;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo-name {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.01em;
}
.footer__logo-name span { color: var(--sky); }
.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.72;
  color: var(--slate-400);
  margin-top: 14px;
  max-width: 300px;
}
.footer__contacts { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.footer__contact-link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--slate-400);
  transition: color 0.2s;
}
.footer__contact-link:hover { color: rgba(255,255,255,0.85); }
.footer__contact-link svg {
  width: 14px; height: 14px;
  stroke: var(--sky);
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer__col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: 18px;
}
.footer__link-list { display: flex; flex-direction: column; gap: 12px; }
.footer__link-list a {
  font-size: 0.88rem;
  color: var(--slate-400);
  transition: color 0.2s;
}
.footer__link-list a:hover { color: rgba(255,255,255,0.85); }
.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__copy { font-size: 0.8rem; color: var(--slate-500); }
.footer__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--slate-400);
}
.footer__rating svg { width: 14px; height: 14px; fill: var(--yellow-star); }

/* =============================================
   LOCATION MAP
   ============================================= */
.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--slate-200);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.location-map iframe { width: 100%; height: 380px; display: block; }

/* =============================================
   PRICE TABLE
   ============================================= */
.price-table { width: 100%; border-collapse: collapse; }
.price-table th {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-400);
  padding: 12px 16px;
  border-bottom: 1px solid var(--slate-200);
  text-align: left;
  background: var(--slate-50);
}
.price-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--slate-100);
  font-size: 0.9rem;
  color: var(--slate-600);
}
.price-table tr:hover td { background: var(--sky-light); }
.price-table .price-val {
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 72px 20px; }
  .header__nav, .header__actions { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .wa-float { bottom: 18px; right: 16px; width: 54px; height: 54px; }
  .hero-inner { padding: 120px 20px 60px; }
  .hero-inner__title { letter-spacing: -0.02em; }
  .final-cta { padding: 72px 20px; }
  .final-cta__actions { flex-direction: column; align-items: stretch; }
  .btn-white, .btn-wa-outline { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-inner__title { font-size: 1.9rem; }
  :root { --section-pad: 60px 18px; }
}
