/* ============================================================
   HIRAN NIGERIA LIMITED — Main Stylesheet
   Colour System: Extracted from Hiran_2.png (#F66459)
   Fonts: Inter (body) + Playfair Display (headings)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@700;800&display=swap');

/* ------------------------------------------------------------
   1. CSS VARIABLES
   ------------------------------------------------------------ */
:root {
  --primary:        #1A1A1A;   /* Charcoal — premium anchor */
  --primary-light:  #2D2D2D;
  --brand-red:      #F66459;   /* Extracted from Hiran_2.png */
  --brand-red-dark: #C94A40;   /* Hover/dark variant */
  --brand-red-light:rgba(246,100,89,0.10);
  --gold:           #D4A017;   /* Premium accent */
  --gold-dark:      #B8860B;
  --white:          #FFFFFF;
  --off-white:      #FAF9F7;
  --light-grey:     #F2F2F0;
  --mid-grey:       #D1D5DB;
  --dark-grey:      #4B5563;
  --text:           #1F1F1F;
  --success:        #16a34a;
  --error:          #dc2626;

  --secondary:      var(--brand-red);
  --secondary-dark: var(--brand-red-dark);

  --font-main:    'Inter', 'Segoe UI', Arial, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;

  --radius:     6px;
  --radius-lg:  12px;
  --shadow:     0 2px 12px rgba(0,0,0,0.10);
  --shadow-lg:  0 6px 32px rgba(0,0,0,0.14);
  --transition: 0.25s ease;
  --max-width:  1200px;
  --nav-height: 70px;
}

/* ------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--brand-red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brand-red-dark); }

ul { list-style: none; }

/* ------------------------------------------------------------
   3. TYPOGRAPHY
   ------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; color: var(--dark-grey); }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 0.5rem;
}

.section-title  { color: var(--primary); margin-bottom: 1rem; }
.section-subtitle { color: var(--dark-grey); font-size: 1.05rem; max-width: 600px; margin-bottom: 2.5rem; }

/* ------------------------------------------------------------
   4. LAYOUT UTILITIES
   ------------------------------------------------------------ */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; }
.section   { padding: 5rem 0; }
.section--grey { background: var(--light-grey); }

.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
/* Fix: force 3-column grid for service cards — prevents 4+2 layout */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }

/* ------------------------------------------------------------
   5. BUTTONS
   ------------------------------------------------------------ */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
  font-family: var(--font-main);
}

.btn-primary { background: var(--brand-red); color: var(--white); border-color: var(--brand-red); }
.btn-primary:hover {
  background: var(--brand-red-dark);
  border-color: var(--brand-red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(246,100,89,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);          /* Fix: white text on dark hero */
  border-color: var(--white);   /* Fix: white border on dark hero */
}
.btn-outline:hover { background: var(--white); color: var(--brand-red); }

/* Fix: btn-navy uses brand-red not black */
.btn-navy {
  background: var(--brand-red);
  color: var(--white);
  border-color: var(--brand-red);
}
.btn-navy:hover {
  background: var(--brand-red-dark);
  border-color: var(--brand-red-dark);
  color: var(--white);
  transform: translateY(-2px);
}

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

/* ------------------------------------------------------------
   6. NAVBAR
   ------------------------------------------------------------ */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--nav-height);
  background: var(--primary);   /* Always solid — prevents bleed over content */
  z-index: 9999;                /* High z-index — stays above all page content */
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled,
.navbar--solid {
  background: var(--primary);
  box-shadow: var(--shadow-lg);
}

/* Ensure all child elements stay within navbar bounds */
.navbar__inner {
  position: relative;
  z-index: 9999;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.navbar__logo img {
  height: 48px;
  width: auto;
}

.navbar__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.navbar__logo-text span:first-child {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
  font-family: var(--font-heading);
}

.navbar__logo-text span:last-child {
  font-size: 0.65rem;
  color: var(--mid-grey);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.navbar__menu { display: flex; align-items: center; gap: 0.25rem; }

.navbar__menu a {
  color: rgba(255,255,255,0.80);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
}

.navbar__menu a:hover,
.navbar__menu a.active {
  color: var(--white);
  background: rgba(246,100,89,0.20);
}

.navbar__cta { margin-left: 0.75rem; }

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
  background: none;
  border: none;
}

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

.page-offset { padding-top: var(--nav-height); }

/* ------------------------------------------------------------
   7. HERO
   ------------------------------------------------------------ */
.hero {
  min-height: 92vh;
  background: linear-gradient(135deg, #111111 0%, #1A1A1A 55%, #2A0A09 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 100%;              /* Fix: ensure hero fills full width */
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 55%; height: 140%;
  background: linear-gradient(135deg, rgba(246,100,89,0.12) 0%, rgba(246,100,89,0.04) 100%);
  transform: skewX(-8deg);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  width: 100%;              /* Fix: content takes full available width */
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(246,100,89,0.15);
  border: 1px solid var(--brand-red);
  color: #FF8A80;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 span { color: #FF8A80; }
.hero p { color: rgba(255,255,255,0.82); font-size: 1.1rem; margin-bottom: 2rem; max-width: 540px; }

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

.hero__stats { display: flex; gap: 2.5rem; margin-top: 3.5rem; flex-wrap: wrap; }

.hero__stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.hero__stat span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ------------------------------------------------------------
   8. TRUST BAR
   ------------------------------------------------------------ */
.trust-bar { background: var(--brand-red); padding: 1rem 0; }

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ------------------------------------------------------------
   9. CARDS
   ------------------------------------------------------------ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.card__icon {
  width: 56px; height: 56px;
  background: var(--brand-red-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

.card h3 { margin-bottom: 0.6rem; font-size: 1.1rem; }
.card p  { font-size: 0.92rem; margin-bottom: 0; }

.service-card { border-left: 4px solid var(--brand-red); }

.port-card { text-align: center; border-top: 4px solid var(--brand-red); }
.port-card .card__icon { margin: 0 auto 1.25rem; }

/* ------------------------------------------------------------
   10. STATS SECTION
   ------------------------------------------------------------ */
.stats-section { background: var(--primary); padding: 4rem 0; }

.stat-item { text-align: center; padding: 1rem; }

.stat-item strong {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-item span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.4rem;
  display: block;
}

/* ------------------------------------------------------------
   11. TESTIMONIALS
   ------------------------------------------------------------ */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--brand-red);
  opacity: 0.2;
  position: absolute;
  top: -0.5rem; left: 1.25rem;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-card p { font-style: italic; margin-bottom: 1.25rem; position: relative; z-index: 1; }

.testimonial-card__author { display: flex; align-items: center; gap: 0.75rem; }

.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand-red);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-card__author strong { display: block; font-size: 0.92rem; color: var(--primary); }
.testimonial-card__author span   { font-size: 0.78rem; color: var(--dark-grey); }

/* ------------------------------------------------------------
   12. PROCESS STEPS
   ------------------------------------------------------------ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.process-step { text-align: center; padding: 1.5rem 1rem; }

.process-step__number {
  width: 52px; height: 52px;
  background: var(--brand-red);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 14px rgba(246,100,89,0.35);
}

.process-step h4 { color: var(--primary); margin-bottom: 0.4rem; }
.process-step p  { font-size: 0.88rem; margin: 0; }

/* ------------------------------------------------------------
   13. BLOG CARDS
   ------------------------------------------------------------ */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.blog-card__image {
  height: 180px;
  background: linear-gradient(135deg, #1A1A1A 0%, #2D0A09 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}

.blog-card__body { padding: 1.5rem; }
.blog-card__meta { font-size: 0.78rem; color: var(--brand-red); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
.blog-card__body h3 { font-size: 1.05rem; margin-bottom: 0.6rem; color: var(--primary); }
.blog-card__body p  { font-size: 0.88rem; margin-bottom: 1rem; }
.blog-card__link    { font-size: 0.88rem; font-weight: 600; color: var(--brand-red); }

/* ------------------------------------------------------------
   14. FORMS
   ------------------------------------------------------------ */
.form-section { background: var(--light-grey); }

.form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
  max-width: 760px;
  margin: 0 auto;
}

.form-title    { color: var(--primary); margin-bottom: 0.4rem; }
.form-subtitle { color: var(--dark-grey); font-size: 0.95rem; margin-bottom: 2rem; }

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

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }

.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--primary); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--mid-grey);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(246,100,89,0.12);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: var(--error); }

.form-group .error-msg { font-size: 0.78rem; color: var(--error); display: none; }
.form-group .error-msg.visible { display: block; }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit { margin-top: 1.5rem; text-align: center; }
.form-submit .btn { min-width: 200px; padding: 0.85rem 2rem; font-size: 1rem; }
.form-notice { font-size: 0.78rem; color: var(--dark-grey); margin-top: 0.75rem; text-align: center; }

.alert { padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1.5rem; font-size: 0.92rem; font-weight: 500; display: none; }
.alert.visible  { display: block; }
.alert-success  { background: #dcfce7; color: #15803d; border: 1px solid #86efac; }
.alert-error    { background: #fee2e2; color: #b91c1c; border: 1px solid #fca5a5; }

/* ------------------------------------------------------------
   15. PAGE HERO (inner pages)
   ------------------------------------------------------------ */
.page-hero {
  background: linear-gradient(135deg, #111111 0%, #1A1A1A 60%, #2A0A09 100%);
  padding: 5rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; position: relative; }
.page-hero p  { color: rgba(255,255,255,0.78); font-size: 1.05rem; max-width: 560px; margin: 0 auto; position: relative; }

.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
  position: relative;
}

.breadcrumb a    { color: #FF8A80; }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ------------------------------------------------------------
   16. CTA BANNER
   ------------------------------------------------------------ */
.cta-banner {
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}

.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; position: relative; }
.cta-banner p  { color: rgba(255,255,255,0.88); margin-bottom: 2rem; font-size: 1.05rem; position: relative; }
.cta-banner .btn-outline:hover { color: var(--brand-red); }

/* ------------------------------------------------------------
   17. FOOTER
   ------------------------------------------------------------ */
.footer { background: var(--primary); color: rgba(255,255,255,0.75); padding: 4rem 0 0; }

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer__brand p { font-size: 0.88rem; line-height: 1.8; margin: 1rem 0 1.5rem; color: rgba(255,255,255,0.65); }

.footer__logo img { height: 52px; width: auto; margin-bottom: 0.5rem; }

.footer__social { display: flex; gap: 0.75rem; }

.footer__social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.9rem;
  transition: background var(--transition);
}

.footer__social a:hover { background: var(--brand-red); color: var(--white); }

.footer__col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--brand-red);
  display: inline-block;
}

.footer__col ul li { margin-bottom: 0.6rem; }
.footer__col ul li a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: color var(--transition); }
.footer__col ul li a:hover { color: #FF8A80; }

.footer__contact-item { display: flex; gap: 0.75rem; margin-bottom: 0.9rem; font-size: 0.88rem; }
.footer__contact-item .icon { color: var(--brand-red); flex-shrink: 0; margin-top: 2px; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.footer__bottom a { color: #FF8A80; }

/* ------------------------------------------------------------
   18. WHATSAPP FLOAT
   ------------------------------------------------------------ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
.whatsapp-float svg   { width: 30px; height: 30px; fill: var(--white); }

/* ------------------------------------------------------------
   19. ABOUT PAGE
   ------------------------------------------------------------ */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.about-image-block {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  background: linear-gradient(135deg, #1A1A1A, #2D0A09);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}

.about-image-block::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--brand-red);
}

.credentials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }

.credential-item {
  background: var(--white);
  border: 1px solid var(--mid-grey);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  border-top: 4px solid var(--brand-red);
  transition: transform var(--transition), box-shadow var(--transition);
}

.credential-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.credential-item .icon { font-size: 2rem; margin-bottom: 0.75rem; }
.credential-item h4    { color: var(--primary); font-size: 0.95rem; margin-bottom: 0.4rem; }
.credential-item p     { font-size: 0.82rem; margin: 0; }

/* ------------------------------------------------------------
   20. RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 900px) {
  .footer__grid          { grid-template-columns: 1fr 1fr; }
  .about-intro           { grid-template-columns: 1fr; }
  .about-image-block     { min-height: 260px; }
  .form-grid             { grid-template-columns: 1fr; }
  .form-group.full       { grid-column: 1; }
}

@media (max-width: 640px) {
  .section { padding: 3.5rem 0; }

  .navbar__menu {
    display: none;
    position: absolute;
    top: var(--nav-height); left: 0;
    width: 100%;
    background: #111111;
    flex-direction: column;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0.25rem;
    box-shadow: var(--shadow-lg);
  }

  .navbar__menu.open { display: flex; }
  .navbar__menu a    { padding: 0.65rem 1rem; width: 100%; }
  .navbar__cta       { margin-left: 0; width: 100%; }
  .navbar__cta .btn  { width: 100%; text-align: center; }
  .navbar__toggle    { display: flex; }

  .hero              { min-height: 100svh; padding: 2rem 0; }
  .hero__stats       { gap: 1.5rem; }
  .footer__grid      { grid-template-columns: 1fr; gap: 2rem; }
  .trust-bar__inner  { gap: 1.25rem; }
  .page-hero         { padding: 4rem 0 2.5rem; }
  .form-wrapper      { padding: 1.5rem; }
  .whatsapp-float    { bottom: 1.25rem; right: 1.25rem; }
}
