/* =====================================================================
   Global Techno Engineers — styles.css
   Mobile-first, responsive. Design tokens → layout → components.
   ===================================================================== */

:root {
  /* Brand */
  --brand:        #0d7d6e;   /* teal-green (wordmark) */
  --brand-600:    #0a6a5d;
  --brand-700:    #075449;
  --brand-900:    #06302a;
  --accent:       #f5a623;   /* machining-spark amber */
  --indigo:       #3c2a98;   /* GTE monogram */

  /* Ink / steel neutrals */
  --ink:          #0f1820;   /* near-black charcoal */
  --ink-2:        #1b2730;
  --steel:        #5c6b78;
  --steel-300:    #93a1ab;
  --line:         #e3e8ec;
  --surface:      #ffffff;
  --surface-alt:  #f4f7f8;
  --surface-deep: #0f1820;

  /* Typography */
  --font-head: 'Sora', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --container: 1180px;
  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 18px 50px -22px rgba(15, 24, 32, .35);
  --shadow-sm: 0 8px 24px -14px rgba(15, 24, 32, .3);
  --header-h:  72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;           /* stop any stray width from scrolling the whole page sideways */
  max-width: 100%;
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;           /* clip (not hidden) → no scroll container, sticky header still works */
  max-width: 100%;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; font-weight: 700; letter-spacing: -.01em; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.section { padding: 64px 0; }
.section.alt { background: var(--surface-alt); }
.kicker {
  font-family: var(--font-head); font-weight: 600; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .16em; color: var(--brand);
  margin-bottom: 12px;
}
.kicker.light { color: #6fe3cf; }
.section-head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.section-head h2 { font-size: clamp(1.6rem, 4.5vw, 2.4rem); }
.section-head .lead, .lead { color: var(--steel); font-size: 1.05rem; margin-top: 14px; }
.muted { color: var(--steel); font-size: .92rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: 12px 22px; border-radius: 999px; font-family: var(--font-head);
  font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-lg { padding: 15px 30px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 10px 24px -10px rgba(13,125,110,.7); }
.btn-primary:hover { background: var(--brand-600); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.4); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 6px 24px -16px rgba(15,24,32,.5); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { border-radius: 6px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: var(--font-head); font-size: .92rem; letter-spacing: .02em; color: var(--ink); }
.brand-text small { font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--brand); }

.nav { display: flex; align-items: center; gap: 6px; }
.nav > a { padding: 10px 14px; border-radius: 8px; font-weight: 500; font-size: .95rem; color: var(--ink-2); transition: color .15s, background .15s; }
.nav > a:hover, .nav > a.active { color: var(--brand); background: rgba(13,125,110,.08); }
.nav .nav-cta { margin-left: 6px; color: #fff; }
.nav .nav-cta:hover { color: #fff; background: var(--brand-600); }

.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; border-radius: 10px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: min(88vh, 760px); display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-media {
  position: absolute; inset: 0;
  background: url('assets/img/hero-facility.jpg') center/cover no-repeat;
  transform: scale(1.05);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(115deg, rgba(6,48,42,.94) 0%, rgba(11,30,38,.86) 42%, rgba(15,24,32,.55) 100%),
    radial-gradient(120% 90% at 80% 10%, rgba(13,125,110,.35), transparent 60%);
}
.hero-content { position: relative; z-index: 2; padding: 80px 0; max-width: 760px; }
.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase; color: #8ff0dd;
  padding: 7px 14px; border: 1px solid rgba(143,240,221,.4); border-radius: 999px; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(2.2rem, 7vw, 4.1rem); font-weight: 800; letter-spacing: -.02em; }
.hero h1 .grad { background: linear-gradient(90deg, #4fd6bf, #8ff0dd); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: clamp(1rem, 2.4vw, 1.2rem); color: rgba(255,255,255,.86); margin: 22px 0 30px; max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 40px; }
.hero-chips li { font-size: .9rem; color: rgba(255,255,255,.75); }
.hero-chips strong { display: block; font-family: var(--font-head); font-size: 1.6rem; color: #fff; }
.scroll-cue {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 2;
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.5); border-radius: 14px;
}
.scroll-cue::before { content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: #fff; border-radius: 2px; animation: cue 1.6s infinite; }
@keyframes cue { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 12px); } }

/* ---------- Trust bar ---------- */
.trust { background: var(--surface-deep); color: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,.08); }
.trust-item { background: var(--surface-deep); padding: 22px 18px; text-align: center; }
.ti-k { display: block; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: #6fe3cf; }
.ti-v { display: block; font-size: .82rem; color: rgba(255,255,255,.6); margin-top: 4px; }

/* ---------- About ---------- */
.about-grid { display: grid; gap: 40px; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.badge-est {
  position: absolute; bottom: -18px; right: -8px; background: var(--brand); color: #fff;
  border-radius: 14px; padding: 14px 20px; text-align: center; box-shadow: var(--shadow-sm);
}
.badge-est span { display: block; font-size: .7rem; letter-spacing: .2em; }
.badge-est strong { font-family: var(--font-head); font-size: 1.7rem; }
.about-copy h2 { font-size: clamp(1.6rem, 4.5vw, 2.3rem); margin-bottom: 16px; }
.about-copy p { color: var(--steel); margin-bottom: 14px; }
.about-copy p strong { color: var(--ink); }
.ticks { display: grid; gap: 10px; margin-top: 20px; }
.ticks li { position: relative; padding-left: 30px; font-weight: 500; color: var(--ink-2); }
.ticks li::before {
  content: "✓"; position: absolute; left: 0; top: 1px; width: 20px; height: 20px;
  background: rgba(13,125,110,.12); color: var(--brand); border-radius: 50%;
  display: grid; place-items: center; font-size: .75rem; font-weight: 700;
}

/* ---------- Stats ---------- */
.stats { background: linear-gradient(135deg, var(--brand-900), var(--brand-700)); color: #fff; padding: 50px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px 20px; text-align: center; }
.stat .num { display: block; font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem, 7vw, 3rem); color: #fff; }
.stat .lbl { color: rgba(255,255,255,.75); font-size: .9rem; letter-spacing: .02em; }

/* ---------- Vision ---------- */
.vision { background: var(--surface-deep); }
.vision-card { max-width: 880px; margin: 0 auto; text-align: center; }
.vision blockquote {
  font-family: var(--font-head); font-weight: 600; color: #fff;
  font-size: clamp(1.3rem, 3.6vw, 2rem); line-height: 1.35; letter-spacing: -.01em;
}
.vision blockquote em { color: var(--accent); font-style: normal; }
.vision-foot { color: rgba(255,255,255,.7); margin-top: 22px; font-size: 1.02rem; }

/* ---------- Capabilities ---------- */
.cap-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.cap-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.cap-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.cap-ico {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  font-size: 1.5rem; color: var(--brand); background: rgba(13,125,110,.1); margin-bottom: 16px;
}
.cap-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.cap-card p { color: var(--steel); font-size: .96rem; }

.industries { margin-top: 44px; text-align: center; }
.ind-title { font-size: 1.1rem; color: var(--steel); font-weight: 600; margin-bottom: 16px; }
.ind-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.ind-pill {
  padding: 10px 20px; border-radius: 999px; background: var(--ink); color: #fff;
  font-family: var(--font-head); font-weight: 500; font-size: .95rem;
}

/* ---------- Journey / Timeline ---------- */
.journey { background: var(--surface-alt); }
.timeline { position: relative; max-width: 760px; margin: 0 auto; padding-left: 28px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--brand), var(--steel-300)); }
.timeline li { position: relative; padding: 0 0 28px 26px; }
.timeline li::before {
  content: ""; position: absolute; left: -28px; top: 4px; width: 16px; height: 16px;
  background: var(--brand); border: 3px solid #fff; border-radius: 50%; box-shadow: 0 0 0 2px var(--brand);
}
.timeline li.is-future::before { background: var(--accent); box-shadow: 0 0 0 2px var(--accent); }
.t-year { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: var(--brand); }
.timeline li.is-future .t-year { color: var(--accent); }
.t-body h3 { font-size: 1.05rem; margin: 2px 0 4px; }
.t-body p { color: var(--steel); font-size: .95rem; }

/* ---------- Infrastructure ---------- */
.infra-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 44px; }
.infra-gallery figure { position: relative; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); }
.infra-gallery img { width: 100%; height: 200px; object-fit: cover; transition: transform .4s ease; }
.infra-gallery figure:hover img { transform: scale(1.06); }
.infra-gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 24px 14px 10px;
  color: #fff; font-size: .82rem; font-weight: 500;
  background: linear-gradient(transparent, rgba(15,24,32,.85));
}
.spec-tables { display: grid; gap: 28px; }
.spec-block { min-width: 0; } /* allow grid item to shrink so the table can scroll inside it */
.spec-block h3 { font-size: 1.15rem; margin-bottom: 14px; color: var(--ink); }
.table-scroll { min-width: 0; max-width: 100%; overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-sm); -webkit-overflow-scrolling: touch; }
table { width: 100%; border-collapse: collapse; min-width: 380px; }
thead th { background: var(--ink); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; padding: 12px 16px; text-align: left; white-space: nowrap; }
tbody td { padding: 12px 16px; border-top: 1px solid var(--line); font-size: .92rem; color: var(--ink-2); }
tbody tr:nth-child(even) { background: var(--surface-alt); }

/* ---------- Products gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.g-item { position: relative; border-radius: var(--radius-sm); overflow: hidden; background: var(--surface-alt); aspect-ratio: 1 / 1; padding: 0; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.g-item::after {
  content: "⤢"; position: absolute; inset: 0; display: grid; place-items: center;
  color: #fff; font-size: 1.5rem; background: rgba(13,125,110,.0); opacity: 0; transition: .25s;
}
.g-item:hover img { transform: scale(1.08); }
.g-item:hover::after { background: rgba(6,48,42,.45); opacity: 1; }

/* ---------- Quality ---------- */
.quality-grid { display: grid; gap: 40px; align-items: center; }
.quality-cert { text-align: center; }
.quality-cert img { display: inline-block; max-height: 520px; border-radius: var(--radius-sm); box-shadow: var(--shadow); border: 1px solid var(--line); }
.quality-copy h2 { font-size: clamp(1.6rem, 4.5vw, 2.2rem); margin-bottom: 14px; }
.quality-copy > p { color: var(--steel); }
.quality-copy > p strong { color: var(--ink); }
.metro-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 22px 0 16px; }
.metro { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 16px; }
.metro strong { display: block; font-family: var(--font-head); color: var(--brand); font-size: .95rem; }
.metro span { font-size: .82rem; color: var(--steel); }

/* ---------- Clients ---------- */
.client-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.client {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  display: grid; place-items: center; padding: 22px; min-height: 96px;
  transition: box-shadow .2s, transform .2s;
}
.client:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.client img { max-height: 52px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .72; transition: .25s; }
.client:hover img { filter: grayscale(0); opacity: 1; }

/* ---------- Contact ---------- */
.contact { background: var(--surface-alt); }
.contact-grid { display: grid; gap: 36px; }
.contact-copy h2 { font-size: clamp(1.7rem, 5vw, 2.4rem); }
.contact-list { display: grid; gap: 18px; margin-top: 26px; }
.contact-list li { display: flex; gap: 14px; }
.contact-list .ci { font-size: 1.2rem; line-height: 1.4; }
.contact-list strong { display: block; font-family: var(--font-head); font-size: .95rem; margin-bottom: 2px; }
.contact-list a:hover { color: var(--brand); }
.contact-list div { color: var(--steel); font-size: .95rem; }

.contact-form-wrap { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px 24px; border: 1px solid var(--line); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 6px; color: var(--ink-2); }
.field input, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; color: var(--ink); background: var(--surface-alt); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus { outline: 0; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(13,125,110,.15); background: #fff; }
.field textarea { resize: vertical; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { margin-top: 14px; font-size: .9rem; text-align: center; min-height: 1.2em; }
.form-note.ok { color: var(--brand); }
.form-note.err { color: #c0392b; }

.map-wrap { margin-top: 40px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 340px; border: 0; display: block; filter: grayscale(.1); }

/* ---------- Footer ---------- */
.site-footer { background: var(--surface-deep); color: rgba(255,255,255,.7); padding-top: 56px; }
.footer-grid { display: grid; gap: 36px; padding-bottom: 36px; }
.f-logo { height: 30px; width: auto; margin-bottom: 16px; }
.f-brand p { font-size: .92rem; max-width: 360px; }
.f-iso { display: inline-block; margin-top: 16px; font-size: .8rem; color: #6fe3cf; letter-spacing: .04em; }
.f-links h4, .f-contact h4 { color: #fff; font-size: .95rem; margin-bottom: 14px; letter-spacing: .04em; }
.f-links a { display: block; padding: 5px 0; font-size: .92rem; transition: color .15s; }
.f-links a:hover { color: #6fe3cf; }
.f-contact p { font-size: .92rem; margin-bottom: 10px; }
.f-contact a:hover { color: #6fe3cf; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: .85rem; }
.to-top:hover { color: #6fe3cf; }

/* ---------- Mobile sticky CTA ---------- */
.mobile-cta {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 50;
  background: var(--brand); color: #fff; text-align: center; padding: 14px;
  border-radius: 999px; font-family: var(--font-head); font-weight: 600;
  box-shadow: 0 14px 30px -10px rgba(13,125,110,.8); display: none;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(8,18,16,.94);
  display: none; align-items: center; justify-content: center; padding: 40px 16px;
}
.lightbox.open { display: flex; }
.lb-figure { max-width: 92vw; max-height: 86vh; text-align: center; }
.lb-figure img { max-width: 92vw; max-height: 78vh; border-radius: 8px; object-fit: contain; box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.lb-figure figcaption { color: rgba(255,255,255,.85); margin-top: 14px; font-size: .95rem; }
.lb-close { position: absolute; top: 18px; right: 22px; font-size: 2.4rem; color: #fff; line-height: 1; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); font-size: 3rem; color: #fff; padding: 0 18px; opacity: .8; }
.lb-nav:hover { opacity: 1; }
.lb-prev { left: 4px; } .lb-next { right: 4px; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .scroll-cue::before { animation: none; }
}

/* =====================================================================
   RESPONSIVE — tablet & up
   ===================================================================== */
@media (min-width: 600px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .client-grid { grid-template-columns: repeat(3, 1fr); }
  .infra-gallery { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 860px) {
  .section { padding: 88px 0; }
  .about-grid { grid-template-columns: 0.9fr 1.1fr; gap: 60px; }
  .cap-grid { grid-template-columns: repeat(3, 1fr); }
  .spec-tables { grid-template-columns: 1fr 1fr; }
  .quality-grid { grid-template-columns: 0.8fr 1.2fr; gap: 56px; }
  .client-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery { grid-template-columns: repeat(4, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
  .footer-grid { grid-template-columns: 2fr 1fr 1.3fr; }
}

/* =====================================================================
   RESPONSIVE — mobile nav (below 860px)
   ===================================================================== */
@media (max-width: 859px) {
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 12px 20px 22px; box-shadow: var(--shadow);
    transform: translateY(-130%); transition: transform .3s ease; visibility: hidden;
  }
  .nav.open { transform: translateY(0); visibility: visible; }
  .nav > a { padding: 14px 8px; border-radius: 8px; font-size: 1.05rem; border-bottom: 1px solid var(--surface-alt); }
  .nav > a:last-child { border-bottom: 0; }
  .nav .nav-cta { margin: 12px 0 0; text-align: center; }
  .nav-toggle { display: flex; }
  .mobile-cta { display: block; }
  body.nav-open { overflow: hidden; }
  /* leave room for sticky CTA */
  .site-footer { padding-bottom: 84px; }
}

@media (max-width: 380px) {
  .brand-text strong { font-size: .8rem; }
  .hero-chips { gap: 18px; }
}
