/* ============================================================
   NAVSIGHT Marine Services – developed by Badz Khan - Main Stylesheet
   ============================================================ */

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

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --orange:       #E07B20;
  --orange-dark:  #C06510;
  --orange-light: #F59A45;
  --navy:         #0A1628;
  --navy-mid:     #122040;
  --navy-light:   #1E3256;
  --white:        #FFFFFF;
  --off-white:    #F4F6F9;
  --gray:         #8898AA;
  --text:         #2D3748;
  --overlay:      rgba(8, 18, 34, 0.68);
  --overlay-deep: rgba(8, 18, 34, 0.82);
  --header-h:     80px;
  --radius:       6px;
  --shadow:       0 4px 24px rgba(10,22,40,0.18);
  --trans:        0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

/* ── Utilities ─────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1rem; letter-spacing: 0.08em;
  text-transform: uppercase; border: none; cursor: pointer;
  border-radius: var(--radius); transition: var(--trans);
}
.btn-orange {
  background: var(--orange); color: var(--white);
  box-shadow: 0 4px 16px rgba(224,123,32,0.35);
}
.btn-orange:hover {
  background: var(--orange-dark);
  box-shadow: 0 6px 24px rgba(224,123,32,0.45);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.section-label {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.8rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--navy); margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-lead {
  font-size: 1.05rem; color: var(--gray); max-width: 620px;
  line-height: 1.8;
}
.section-lead.light { color: rgba(255,255,255,0.75); }

/* ── Header ────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  height: var(--header-h);
  background: rgba(10, 22, 40, 0.97);
  border-bottom: 1px solid rgba(224,123,32,0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--trans);
  display: flex; align-items: center;
}
.site-header.scrolled {
  background: rgba(10, 22, 40, 0.99);
  box-shadow: 0 4px 30px rgba(0,0,0,0.35);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
}
.site-logo {
  display: flex; align-items: center; gap: 12px;
}
.site-logo img { height: 55px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem; font-weight: 800;
  color: var(--white); letter-spacing: 0.1em; text-transform: uppercase;
}
.logo-tagline {
  font-size: 0.62rem; color: var(--orange);
  letter-spacing: 0.15em; text-transform: uppercase; margin-top: 2px;
}

/* Nav */
.site-nav { display: flex; align-items: center; gap: 6px; }
.nav-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  padding: 8px 16px; border-radius: var(--radius);
  transition: var(--trans); position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 16px;
  width: calc(100% - 32px); height: 2px;
  background: var(--orange); transform: scaleX(0);
  transform-origin: left; transition: var(--trans);
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-cta {
  margin-left: 12px; padding: 10px 22px; font-size: 0.85rem;
}

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--trans);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: clamp(600px, 82vh, 800px);
  display: flex; align-items: center;
  background-size: cover; background-position: center;
  background-attachment: fixed;
  padding-top: calc(var(--header-h) + 20px);
  padding-bottom: 140px; /* space for highlights bar */
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: var(--overlay-deep);
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(8,18,34,0.5));
}
.hero-content {
  position: relative; z-index: 2; max-width: 760px;
  animation: fadeUp 0.9s ease both;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 18px;
}
.hero-eyebrow::before {
  content: ''; width: 32px; height: 2px; background: var(--orange);
}
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white); margin-bottom: 20px; line-height: 1.08;
}
.hero-title span { color: var(--orange); }
.hero-desc {
  font-size: 1.1rem; color: rgba(255,255,255,0.8);
  max-width: 560px; margin-bottom: 36px; line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Highlight bar on home hero */
.hero-highlights {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  background: rgba(10,22,40,0.92);
  border-top: 2px solid var(--orange);
  padding: 22px 0;
}
.hero-highlights .container {
  display: flex; gap: 0; flex-wrap: wrap;
}
.highlight-item {
  flex: 1; min-width: 200px;
  display: flex; align-items: center; gap: 14px;
  padding: 6px 28px 6px 0;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.highlight-item:last-child { border-right: none; }
.highlight-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(224,123,32,0.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.highlight-icon svg { width: 20px; height: 20px; fill: var(--orange); }
.highlight-text strong {
  display: block; font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1rem; color: var(--white); letter-spacing: 0.03em;
}
.highlight-text span { font-size: 0.8rem; color: rgba(255,255,255,0.55); }

/* ── Page Hero (inner pages) ───────────────────────────────── */
.page-hero {
  position: relative; height: 420px;
  display: flex; align-items: flex-end;
  background-size: cover; background-position: center;
  padding-top: var(--header-h);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,18,34,0.5) 0%,
    rgba(8,18,34,0.88) 100%
  );
}
.page-hero-content {
  position: relative; z-index: 2; padding-bottom: 50px;
  animation: fadeUp 0.8s ease both;
}
.page-hero-content .breadcrumb {
  font-size: 0.8rem; color: rgba(255,255,255,0.55);
  margin-bottom: 10px; letter-spacing: 0.05em;
}
.page-hero-content .breadcrumb a { color: var(--orange); }
.page-hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white); line-height: 1.1;
}
.page-hero-title span { color: var(--orange); }

/* Orange bottom accent */
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 4px; background: var(--orange);
}

/* ── Sections ──────────────────────────────────────────────── */
.section { padding: 90px 0; }
.section-dark { background: var(--navy); }
.section-alt { background: var(--off-white); }

/* ── Home: What We Do ──────────────────────────────────────── */
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.what-image {
  border-radius: var(--radius);
  overflow: hidden; position: relative;
}
.what-image img { width: 100%; height: 480px; object-fit: cover; }
.what-image::before {
  content: ''; position: absolute;
  top: -16px; left: -16px;
  width: 100%; height: 100%;
  border: 3px solid var(--orange);
  border-radius: var(--radius); z-index: -1;
}
.what-list { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.what-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid #EDF0F4;
  font-size: 0.95rem;
}
.what-list li::before {
  content: '▸'; color: var(--orange);
  font-size: 0.85rem; margin-top: 3px; flex-shrink: 0;
}

/* ── Services Cards ────────────────────────────────────────── */
.services-intro { text-align: center; margin-bottom: 60px; }
.services-intro .section-lead { margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: 0 2px 20px rgba(10,22,40,0.08);
  border-top: 4px solid transparent;
  transition: var(--trans);
  position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 3px; background: var(--orange);
  transition: var(--trans);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(10,22,40,0.14);
  border-top-color: var(--orange);
}
.service-card:hover::after { width: 100%; }
.service-icon {
  width: 52px; height: 52px; border-radius: 10px;
  background: rgba(224,123,32,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 26px; height: 26px; fill: var(--orange); }
.service-card h3 {
  font-size: 1.25rem; color: var(--navy); margin-bottom: 14px;
}
.service-card ul { display: flex; flex-direction: column; gap: 8px; }
.service-card li {
  font-size: 0.88rem; color: #5A6680;
  display: flex; gap: 8px; align-items: flex-start; line-height: 1.5;
}
.service-card li::before {
  content: '–'; color: var(--orange); flex-shrink: 0; margin-top: 1px;
}

/* ── About Section ─────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: start;
}
.about-body p {
  margin-bottom: 18px; font-size: 0.97rem;
  color: #4A5568; line-height: 1.85;
}
.about-pillars {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px;
}
.pillar {
  padding: 22px; background: var(--off-white);
  border-radius: var(--radius); border-left: 3px solid var(--orange);
}
.pillar h4 {
  font-size: 1rem; color: var(--navy); margin-bottom: 8px;
}
.pillar p { font-size: 0.85rem; color: var(--gray); margin: 0; }
.pillar-list { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.pillar-list li {
  font-size: 0.85rem; color: #4A5568;
  display: flex; gap: 8px; align-items: flex-start;
}
.pillar-list li::before { content: '✔'; color: var(--orange); flex-shrink: 0; }
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-bottom: 28px;
}
.stat-box {
  background: var(--navy);
  padding: 28px 22px; border-radius: var(--radius); text-align: center;
}
.stat-box .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem; font-weight: 800; color: var(--orange); display: block;
}
.stat-box .lbl { font-size: 0.82rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.1em; }
.about-image-wrap { position: relative; }
.about-image-wrap img {
  width: 100%; height: 340px; object-fit: cover;
  border-radius: var(--radius);
}
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--orange); color: var(--white);
  width: 100px; height: 100px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; line-height: 1.1;
  box-shadow: var(--shadow);
}
.about-badge .big { font-size: 1.6rem; font-weight: 800; }
.about-badge .sm { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; text-align: center; }

/* ── Coverage Map Promo ────────────────────────────────────── */
.coverage-section {
  background: var(--navy-mid);
  padding: 70px 0;
}
.coverage-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.coverage-text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--white); margin-bottom: 12px; }
.coverage-text p { color: rgba(255,255,255,0.65); max-width: 520px; }
.coverage-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.tag {
  padding: 6px 16px; border: 1px solid rgba(224,123,32,0.5);
  border-radius: 20px; font-size: 0.82rem; color: rgba(255,255,255,0.75);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600; letter-spacing: 0.05em;
}

/* ── Contact ───────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px; align-items: start;
}
.contact-info-block { display: flex; flex-direction: column; gap: 28px; }
.info-card {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 24px; background: var(--off-white);
  border-radius: var(--radius); border-left: 3px solid var(--orange);
}
.info-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(224,123,32,0.12);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.info-icon svg { width: 22px; height: 22px; fill: var(--orange); }
.info-body h4 { font-size: 1rem; color: var(--navy); margin-bottom: 6px; }
.info-body p, .info-body a {
  font-size: 0.9rem; color: var(--gray); line-height: 1.7;
}
.info-body a:hover { color: var(--orange); }
.info-body .highlight { font-weight: 600; color: var(--text); }

/* Contact Form */
.contact-form-wrap {
  background: var(--white); padding: 40px;
  border-radius: var(--radius);
  box-shadow: 0 4px 32px rgba(10,22,40,0.1);
  border-top: 4px solid var(--orange);
}
.contact-form-wrap h3 {
  font-size: 1.5rem; color: var(--navy); margin-bottom: 6px;
}
.contact-form-wrap p { font-size: 0.88rem; color: var(--gray); margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.82rem; font-weight: 600; color: var(--navy);
  letter-spacing: 0.05em; text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid #DDE3EE; border-radius: var(--radius);
  font-family: 'Barlow', sans-serif; font-size: 0.95rem;
  color: var(--text); background: var(--white);
  transition: var(--trans); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(224,123,32,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note {
  font-size: 0.78rem; color: var(--gray); margin: 14px 0 20px;
}
.form-submit { width: 100%; justify-content: center; font-size: 0.95rem; }
.form-success {
  display: none; background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.4); border-radius: var(--radius);
  padding: 16px; color: #166534; font-size: 0.9rem; margin-top: 14px;
}

/* ── CTA Strip ─────────────────────────────────────────────── */
.cta-strip {
  background: var(--orange);
  padding: 60px 0;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.cta-text h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--white); margin-bottom: 6px; }
.cta-text p { color: rgba(255,255,255,0.8); font-size: 1rem; }
.btn-white {
  background: var(--white); color: var(--orange);
}
.btn-white:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy); border-top: 3px solid var(--orange);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px; padding-bottom: 48px;
}
.footer-brand .site-logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.88rem; color: rgba(255,255,255,0.5);
  line-height: 1.75; max-width: 280px;
}
.footer-col h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem; color: rgba(255,255,255,0.55);
  transition: var(--trans); display: flex; align-items: center; gap: 7px;
}
.footer-links a::before { content: '›'; color: var(--orange); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.86rem; color: rgba(255,255,255,0.55); line-height: 1.55;
}
.footer-contact-list li svg { width: 16px; height: 16px; fill: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-contact-list a { color: rgba(255,255,255,0.55); }
.footer-contact-list a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: var(--orange); }


.footer-credit {
     font-size: 0.7rem !important;
}



/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .what-grid,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .what-image::before { display: none; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --header-h: 70px; }
  .site-nav { 
    display: none; flex-direction: column; 
    position: fixed; top: var(--header-h); left: 0; right: 0; 
    background: var(--navy); padding: 24px;
    border-top: 2px solid var(--orange);
    gap: 4px; z-index: 999;
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  }
  .site-nav.open { display: flex; }
  .nav-link { padding: 12px 16px; font-size: 1.1rem; }
  .nav-cta { margin-left: 0; margin-top: 8px; text-align: center; width: 100%; justify-content: center; }
  .nav-toggle { display: flex; }
  /* Hero: switch to block layout so highlights flow below content */
  .hero {
    display: block;
    padding-top: calc(var(--header-h) + 32px);
    padding-bottom: 0;
    min-height: auto;
    background-attachment: scroll;
  }
  .hero-content { padding-bottom: 40px; }
  /* Pull highlights bar out of absolute — now flows naturally */
  .hero-highlights {
    position: relative;
    bottom: auto;
  }
  .hero-highlights .container { flex-direction: column; gap: 0; }
  .highlight-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 14px 0;
  }
  .highlight-item:last-child { border-bottom: none; }
  .hero-title { font-size: 2.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .coverage-inner { flex-direction: column; }
  .about-badge { right: 0; bottom: -16px; }
  .contact-form-wrap { padding: 28px 20px; }
  .page-hero { height: 320px; }
}
@media (max-width: 480px) {
  .hero {
    padding-top: calc(var(--header-h) + 20px);
    padding-bottom: 0;
  }
  .hero-content { padding-bottom: 28px; }
  .hero-title { font-size: 2rem !important; margin-bottom: 12px; }
  .hero-desc  { font-size: 0.92rem; margin-bottom: 22px; }
  .hero-eyebrow { margin-bottom: 12px; }
  /* Buttons: full-width stacked column */
  .hero-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
  }
  .hero-actions .btn {
    width: 100% !important;
    justify-content: center !important;
  }
  .about-stats { grid-template-columns: 1fr; }
  .hero-highlights { display: none; }
}
