/* ===========================================================
   KraussMaffei Extrusion — Tubos e Perfis — Landing Page
   =========================================================== */

:root {
  --km-blue-dark: #00325A;
  --km-blue-mid: #005B96;
  --km-blue-light: #1E6FA8;
  --km-orange: #F58220;
  --km-white: #FFFFFF;
  --km-gray-light: #F4F7FA;
  --km-gray-text: #4A5A68;

  --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --container-w: 1180px;
  --radius: 6px;
  --transition: 0.35s ease;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--km-blue-dark);
  background: var(--km-white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }

.btn-orange {
  background: var(--km-orange);
  color: var(--km-white);
}
.btn-orange:hover { box-shadow: 0 10px 24px rgba(245,130,32,0.35); }

.btn-outline-light {
  border-color: var(--km-white);
  color: var(--km-white);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); }

.btn-block { width: 100%; border: none; font-family: inherit; }

.text-orange { color: var(--km-orange); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(0, 50, 90, 0);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(0, 50, 90, 0.94);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo-img { height: 38px; width: auto; display: block; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: var(--km-white);
  font-weight: 600;
  font-size: 0.92rem;
  opacity: 0.9;
  transition: opacity var(--transition);
}
.main-nav a:hover { opacity: 1; }
.main-nav .nav-cta {
  background: var(--km-orange);
  padding: 10px 20px;
  border-radius: var(--radius);
  opacity: 1;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--km-white);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--km-blue-dark) 0%, var(--km-blue-mid) 55%, var(--km-blue-light) 100%);
}

.hero-photo {
  position: absolute;
  inset: 0;
  /* Para trocar a foto: salve o arquivo como images/hero-planta-industrial.jpg (ver LEIA-ME-IMAGENS.md) */
  background:
    url('images/hero-planta-industrial.jpg'),
    repeating-linear-gradient(115deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 40px),
    linear-gradient(200deg, #1a3d5c 0%, #0d2e4a 60%, #061f36 100%);
  background-size: cover;
  background-position: center;
  opacity: 0.9;
}
/* Degradê escuro sobre a foto para garantir legibilidade do texto do hero */
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0,20,38,0.92) 0%, rgba(0,30,54,0.78) 35%, rgba(0,40,70,0.4) 60%, rgba(0,50,90,0.15) 80%);
}

.hero-facet {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 65%;
  height: 90%;
  /* Textura de marca oficial (recorte geométrico azul) */
  background-image: url('images/fundo-azul.jpg'), linear-gradient(135deg, var(--km-blue-light), var(--km-blue-mid));
  background-size: cover;
  background-position: center;
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 55% 100%, 15% 55%);
  opacity: 0.9;
}
.hero-facet-2 {
  position: absolute;
  top: 0;
  right: -5%;
  width: 40%;
  height: 60%;
  background: linear-gradient(135deg, rgba(245,130,32,0.15), rgba(30,111,168,0.05));
  clip-path: polygon(40% 0%, 100% 0%, 100% 70%, 60% 100%, 20% 40%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: 80px;
  max-width: 760px;
}

.hero-hashtag {
  display: inline-block;
  margin-bottom: 20px;
}
.hero-hashtag span {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--km-orange);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(245,130,32,0.4);
  padding: 8px 18px;
  border-radius: 30px;
  transform: rotate(-2deg);
  letter-spacing: 0.02em;
}

.hero h1 {
  color: var(--km-white);
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

.hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 0 32px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Section base ---------- */
.section { padding: 100px 0; position: relative; overflow: hidden; }
.section-dark { background: var(--km-blue-dark); color: var(--km-white); }
.section-light { background: var(--km-white); color: var(--km-blue-dark); }

/* Textura de marca oficial (fundo facetado) só nesta seção — as demais seções claras seguem em branco */
#turnkey {
  background-image: url('images/fundo-cinza.jpg');
  background-size: cover;
  background-position: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--km-orange);
  margin-bottom: 12px;
}
.eyebrow-dark { color: var(--km-orange); }

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--km-white);
  margin: 0 0 24px;
  padding-bottom: 14px;
  border-bottom: 4px solid var(--km-blue-light);
  display: inline-block;
}
.section-title-dark {
  color: var(--km-blue-dark);
  border-bottom-color: var(--km-orange);
}

.section-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 70px;
}
.section-grid-reverse .section-stats { order: 1; }
.section-grid-reverse .section-text { order: 2; }

.lead { font-size: 1.08rem; color: rgba(255,255,255,0.88); margin: 0 0 24px; }
.lead-dark { color: var(--km-gray-text); }

.bullet-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 0.98rem;
  color: rgba(255,255,255,0.85);
}
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 12px; height: 12px;
  background: var(--km-orange);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}
.bullet-list-dark li { color: var(--km-gray-text); }

/* ---------- Stat cards ---------- */
.section-stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-left: 4px solid var(--km-orange);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.stat-card-light {
  background: var(--km-gray-light);
  border-color: #E0E8EF;
  border-left: 4px solid var(--km-orange);
}
.stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--km-white);
  line-height: 1;
}
.stat-card-light .stat-number { color: var(--km-blue-dark); }
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.stat-card-light .stat-label { color: var(--km-gray-text); }

/* ---------- Highlight block ---------- */
.highlight-block {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 40px;
  margin-bottom: 70px;
}
.highlight-block-light { background: var(--km-gray-light); }
.highlight-block h3 {
  margin: 0 0 28px;
  font-size: 1.4rem;
  font-weight: 700;
}
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.highlight-item { display: flex; flex-direction: column; gap: 12px; }
.highlight-icon {
  width: 44px; height: 44px;
  color: var(--km-orange);
}
.highlight-item p { margin: 0; font-size: 0.92rem; color: rgba(255,255,255,0.85); }
.highlight-item-light p { color: var(--km-gray-text); }

/* ---------- Applications ---------- */
.applications-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--km-white);
  margin-bottom: 30px;
}
.applications-title-dark { color: var(--km-blue-dark); }

.applications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.app-card {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.app-card:hover { transform: translateY(-6px); box-shadow: 0 16px 30px rgba(0,0,0,0.25); }
.app-card-light { background: var(--km-gray-light); }

.app-image {
  height: 170px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 82%, 0% 100%);
  background: linear-gradient(135deg, var(--km-blue-light), var(--km-blue-mid));
  background-size: cover;
  background-position: center;
}
/* Camada de tonalidade azul sobre as fotos (mantém a identidade visual mesmo com fotos reais) */
.app-image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,50,90,0.4), rgba(0,50,90,0.05) 65%);
}

/* Para trocar cada foto, salve o arquivo com o nome indicado dentro da pasta images/ (ver LEIA-ME-IMAGENS.md) */
.app-image-1 { background-image: url('images/tubos-pressao-pe.jpg'), linear-gradient(135deg, var(--km-blue-light), var(--km-blue-mid)); }
.app-image-2 { background-image: url('images/tubos-multicamada-pvc.jpg'), linear-gradient(135deg, var(--km-orange), var(--km-blue-mid)); }
.app-image-3 { background-image: url('images/tubos-agua-quente.jpg'), linear-gradient(135deg, var(--km-blue-dark), var(--km-blue-light)); }
.app-image-4 { background-image: url('images/tubos-esgoto-drenagem.jpg'), linear-gradient(135deg, var(--km-blue-mid), var(--km-orange)); }
.app-image-5 { background-image: url('images/perfis-janelas-portas.jpg'), linear-gradient(135deg, var(--km-blue-light), var(--km-blue-mid)); }
.app-image-6 { background-image: url('images/perfis-calhas-revestimentos.jpg'), linear-gradient(135deg, var(--km-orange), var(--km-blue-mid)); }
.app-image-7 { background-image: url('images/perfis-dutos-cabos.jpg'), linear-gradient(135deg, var(--km-blue-dark), var(--km-blue-light)); }
.app-image-8 { background-image: url('images/perfis-especiais-alta-carga.jpg'), linear-gradient(135deg, var(--km-blue-mid), var(--km-orange)); }

.app-content { padding: 20px; }
.app-content h4 { margin: 0 0 8px; font-size: 1.05rem; font-weight: 700; color: var(--km-white); }
.app-card-light .app-content h4 { color: var(--km-blue-dark); }
.app-content p { margin: 0; font-size: 0.88rem; color: rgba(255,255,255,0.75); }
.app-card-light .app-content p { color: var(--km-gray-text); }
.hub-link { display: inline-block; margin-top: 12px; font-size: 0.82rem; font-weight: 700; color: var(--km-orange); }

/* ---------- Tech Center ---------- */
.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.tech-image {
  height: 340px;
  border-radius: var(--radius);
  /* Para trocar a foto: salve o arquivo como images/tecnologia-laatzen.jpg (ver LEIA-ME-IMAGENS.md) */
  background-image: url('images/tecnologia-laatzen.jpg'), linear-gradient(150deg, var(--km-blue-light), var(--km-orange) 140%);
  background-size: cover;
  background-position: center;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0% 100%);
  position: relative;
}
.tech-image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,50,90,0.35), rgba(0,50,90,0.05) 65%);
}

/* ---------- Turnkey ---------- */
.turnkey-inner { text-align: center; }
.turnkey-lead { max-width: 760px; margin-left: auto; margin-right: auto; }
.turnkey-steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}
.turnkey-step {
  flex: 1 1 160px;
  max-width: 200px;
  background: var(--km-gray-light);
  border-top: 3px solid var(--km-orange);
  border-radius: var(--radius);
  padding: 22px 16px;
}
.turnkey-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--km-blue-light);
  margin-bottom: 8px;
}
.turnkey-step p { margin: 0; font-size: 0.9rem; color: var(--km-gray-text); font-weight: 600; }

/* ---------- Contact ---------- */
.section-contact {
  background-image: url('images/fundo-azul.jpg'), linear-gradient(160deg, var(--km-blue-dark), var(--km-blue-mid));
  background-size: cover;
  background-position: center;
  color: var(--km-white);
  padding: 100px 0;
}
.contact-facet {
  right: auto; left: -10%; top: -20%;
  opacity: 0.35;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.hashtag-cta {
  display: inline-block;
  font-weight: 800;
  color: var(--km-orange);
  font-size: 1.05rem;
  margin-bottom: 14px;
  transform: rotate(-2deg);
}
.contact-cta h2 { font-size: 2rem; margin: 0 0 16px; line-height: 1.25; }
.contact-cta p { color: rgba(255,255,255,0.82); font-size: 1rem; }

.contact-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 32px;
}
.form-row { margin-bottom: 18px; display: flex; flex-direction: column; gap: 6px; }
.form-row-split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 0; }
.form-row-split > div { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.contact-form label { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.85); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255,255,255,0.95);
  border: none;
  border-radius: 4px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--km-blue-dark);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--km-orange);
}
.form-feedback {
  margin: 14px 0 0;
  font-size: 0.88rem;
  color: var(--km-orange);
  font-weight: 600;
  min-height: 1.2em;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #001F38;
  color: rgba(255,255,255,0.75);
  padding: 60px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  align-items: center;
}
.footer-brand p { margin-top: 10px; font-size: 0.88rem; }
.logo-img-footer { height: 34px; }
.footer-contact h5 {
  margin: 0 0 10px;
  color: var(--km-white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-contact p { margin: 0; font-size: 0.88rem; line-height: 1.6; }
.footer-contact-person {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--km-orange);
  flex-shrink: 0;
}
.footer-person-name { font-size: 1rem; font-weight: 700; color: var(--km-white); margin: 0 0 2px; }
.footer-person-role { font-size: 0.82rem; color: var(--km-orange); font-weight: 600; margin: 0 0 8px; }
.footer-contact-person a { color: rgba(255,255,255,0.85); text-decoration: none; }
.footer-contact-person a:hover { color: var(--km-white); text-decoration: underline; }
.footer-bottom { padding-top: 20px; font-size: 0.8rem; }

/* ---------- Scroll animations ---------- */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate="fade-right"] { transform: translateX(-30px); }
[data-animate="fade-left"] { transform: translateX(30px); }
[data-animate].in-view { opacity: 1; transform: translate(0,0); }
[data-animate][data-delay="1"] { transition-delay: 0.1s; }
[data-animate][data-delay="2"] { transition-delay: 0.2s; }
[data-animate][data-delay="3"] { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  [data-animate] { transition: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .section-grid, .tech-grid, .contact-inner { grid-template-columns: 1fr; }
  .section-grid-reverse .section-stats { order: 0; }
  .highlight-grid { grid-template-columns: repeat(2, 1fr); }
  .applications-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(0, 50, 90, 0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 18px;
    transform: translateY(-120%);
    transition: transform var(--transition);
  }
  .main-nav.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .nav-cta { align-self: flex-start; }

  .hero-inner { padding-top: 120px; }
  .highlight-grid { grid-template-columns: 1fr; }
  .applications-grid { grid-template-columns: 1fr; }
  .form-row-split { grid-template-columns: 1fr; }
  .turnkey-step { flex: 1 1 100%; max-width: none; }
}

/* Text logo — unified Mario Bonando header on KraussMaffei pages */
.logo-text { font-weight: 800; letter-spacing: -0.01em; font-size: 1.4rem; color: #3d9bff; text-decoration: none; white-space: nowrap; }


/* === KM subnav: sticky page bar + section scroll-spy (shared block, kept in sync in perfil.css & style.css) === */
.km-subnav {
  position: sticky;
  top: 62px;
  z-index: 90;
  background: linear-gradient(180deg, rgba(5,19,35,0.94), rgba(4,15,28,0.90));
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 14px 34px -20px rgba(0,0,0,0.65);
}
.km-subnav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 9px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.km-subnav-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #F58220;
  white-space: nowrap;
  padding-right: 16px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.km-subnav-label::before {
  content: "";
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #ff9d40, #F58220);
  transform: rotate(45deg);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(245,130,32,0.55);
}
.km-subnav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.km-subnav-links::-webkit-scrollbar { display: none; }
.km-subnav-links a {
  flex: 0 0 auto;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.km-subnav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.km-subnav-links a.active {
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, #ff9d40, #F58220);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 6px 18px -6px rgba(245,130,32,0.6);
}
.km-sections { display: none; border-top: 1px solid rgba(255,255,255,0.06); }
.km-sections.has-items { display: block; }
.km-sections-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 5px 24px;
  display: flex;
  align-items: center;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.km-sections-inner::-webkit-scrollbar { display: none; }
.km-sec-label {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-right: 10px;
  white-space: nowrap;
}
.km-sections-inner a {
  flex: 0 0 auto;
  position: relative;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 5px 10px;
  transition: color 0.2s;
}
.km-sections-inner a:hover { color: #fff; }
.km-sections-inner a.current { color: #ff9d40; font-weight: 600; }
.km-sections-inner a.current::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ff9d40, #F58220);
}
/* anchored sections must clear the fixed header + sticky subnav */
section[id] { scroll-margin-top: 180px; }
@media (max-width: 640px) {
  .km-subnav-inner { padding: 8px 14px; gap: 10px; }
  .km-subnav-label { padding-right: 10px; }
  .km-subnav-label span { display: none; }
  .km-sections-inner { padding: 5px 14px; }
}
