/* =============================================================
   People & Resultados — Design System
   Padrão visual baseado no flyer nr2.png
   Fontes: Bebas Neue (display) + Lora (logo) + Inter (corpo)
   ============================================================= */

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

/* ---- Tokens de design ---- */
:root {
  /* Backgrounds */
  --bg:          #f5f0e8;   /* creme principal */
  --bg-light:    #faf7f3;   /* creme claro */
  --bg-white:    #ffffff;

  /* Texto */
  --text-dark:   #3d2d22;   /* marrom muito escuro — texto principal */
  --text-med:    #5c4538;   /* marrom médio */
  --text-muted:  #8c7060;   /* texto suave */

  /* Cores das folhas do logo */
  --sage:        #8ca67a;   /* folha topo — verde sage */
  --sage-light:  #d4e8c0;   /* sage claro — badges */
  --sage-bg:     #eef5e6;   /* fundo sage suave */
  --khaki:       #c4a878;   /* folha direita — cáqui */
  --forest:      #4d7040;   /* folha esquerda-baixo — verde floresta */
  --forest-dark: #3a5630;   /* floresta escuro */

  /* Acento terracota — CTA / botões */
  --terra:       #b47c5f;   /* terracota principal */
  --terra-dark:  #9b684d;   /* terracota hover */
  --terra-light: #f0e0d4;   /* terracota suave */

  /* Strip CTA inferior */
  --strip-bg:    #9a7060;   /* fundo marrom-terracota quente */

  /* Footer */
  --footer-bg:   #3d2d22;
  --footer-text: #f2e9e2;

  /* Bordas */
  --border:      #ddd0c0;
  --border-light:#ede5d8;

  /* Sombras */
  --shadow-sm:   0 2px 12px rgba(61,45,34,.06);
  --shadow-md:   0 6px 24px rgba(61,45,34,.09);
  --shadow-lg:   0 12px 40px rgba(61,45,34,.12);

  /* Raios */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
}

/* ---- Reset ---- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.65;
  font-size: 16px;
}

img { max-width:100%; height:auto; display:block; }
a   { color:var(--terra); text-decoration:none; transition:color .25s; }
a:hover { color:var(--terra-dark); }

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}

section { padding: 88px 0; }

/* ============================================================
   TIPOGRAFIA
   ============================================================ */

/* Display — Bebas Neue (headlines hero) */
.display-xl {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 8vw, 96px);
  line-height: .96;
  letter-spacing: 1px;
  color: var(--text-dark);
}
.display-xl .accent { color: var(--forest); }

/* Títulos de seção — Inter bold uppercase */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.section-heading {
  font-family: 'Inter', sans-serif;
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--text-dark);
  line-height: 1.15;
}

.section-heading.centered {
  text-align: center;
}

.section-intro {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.75;
}

.section-intro.centered { margin: 0 auto; text-align: center; }

/* Corpo */
.body-sm  { font-size: 14px; }
.body-lg  { font-size: 17px; }
.text-muted { color: var(--text-muted); }

/* ============================================================
   BADGE "NOVA NR-1"
   ============================================================ */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--sage-light);
  color: var(--forest-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(77,112,64,.18);
  margin-bottom: 22px;
}

/* ============================================================
   BOTÕES
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--r-sm);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: all .28s ease;
}

.btn-primary {
  background: var(--terra);
  color: #fff;
  box-shadow: 0 6px 20px rgba(180,124,95,.28);
}
.btn-primary:hover {
  background: var(--terra-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(180,124,95,.38);
}

.btn-outline {
  background: transparent;
  color: var(--terra);
  border-color: var(--terra);
}
.btn-outline:hover {
  background: var(--terra);
  color: #fff;
  transform: translateY(-2px);
}

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

.btn-lg { padding: 17px 38px; font-size: 16px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */

.site-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(61,45,34,.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

/* Garante que qualquer imagem de logo carregada pelo Customizer fique contida */
.site-logo img,
.site-logo .custom-logo {
  max-height: 44px !important;
  width: auto !important;
  display: block;
}

.logo-icon {
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: 'Lora', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}

.logo-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 3px;
  white-space: nowrap;
}

/* Nav */
.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-med);
  text-decoration: none;
  padding: 5px 0;
  position: relative;
  transition: color .25s;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terra);
  transition: width .3s;
}

.site-nav a:hover,
.site-nav a.current { color: var(--terra); }
.site-nav a:hover::after,
.site-nav a.current::after { width: 100%; }

.site-nav .btn { padding: 9px 20px; font-size: 13px; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
  padding: 4px;
}
.nav-toggle svg { width: 24px; height: 24px; }

/* ============================================================
   HOME — HERO
   ============================================================ */

.hero-section {
  background: var(--bg);
  padding: 72px 0 80px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}

/* Esquerda */
.hero-body p.hero-subtitle {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-med);
  margin: 18px 0 12px;
  line-height: 1.5;
}

.hero-body p.hero-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero-body p.hero-desc strong {
  color: var(--terra);
  font-weight: 700;
}

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

/* Direita */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  line-height: 0;
}

.hero-photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center top;
}

/* Card Fiscalização */
.fiscalizacao-card {
  background: var(--bg-white);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-md);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-left: 4px solid var(--sage);
}

.fiscalizacao-card .card-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--sage-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fiscalizacao-card h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--forest-dark);
  margin-bottom: 8px;
}

.fiscalizacao-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 8px;
}

.fiscalizacao-card .alerta {
  font-size: 13px;
  font-weight: 600;
  color: var(--terra);
  line-height: 1.4;
}

/* ============================================================
   HOME — SEÇÃO "O QUE SUA EMPRESA PRECISA FAZER?"
   ============================================================ */

.precisa-section {
  background: var(--bg-white);
  padding: 80px 0;
}

.section-title-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 60px;
}

.section-title-row::before,
.section-title-row::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Grid 4 ícones */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.icon-card {
  padding: 36px 28px;
  text-align: center;
  border-right: 1px solid var(--border-light);
  transition: background .25s;
}

.icon-card:last-child { border-right: none; }

.icon-card:hover { background: var(--bg); }

.icon-card .icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terra);
}

.icon-card h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.icon-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   HOME — DUAS COLUNAS (AJUDA + POR QUE)
   ============================================================ */

.dual-section {
  background: var(--bg);
  padding: 80px 0;
}

.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.dual-card {
  background: var(--bg-white);
  border-radius: var(--r-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-sm);
}

.dual-card h2 {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--text-dark);
  margin-bottom: 28px;
  line-height: 1.2;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--border-light);
}

.check-list {
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 14.5px;
  color: var(--text-med);
  line-height: 1.5;
}

.check-list li .chk {
  flex-shrink: 0;
  margin-top: 1px;
}

/* ícone checkmark circular */
.chk-terra svg { color: var(--terra); }
.chk-sage  svg { color: var(--sage); }

/* ============================================================
   CTA STRIP — fundo marrom-terracota
   ============================================================ */

.cta-strip {
  background: var(--strip-bg);
  padding: 52px 0;
}

.cta-strip-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
}

.cta-strip-icon {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.cta-strip-text h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .5px;
  line-height: 1.15;
  margin-bottom: 4px;
}

.cta-strip-text h2 span {
  color: var(--terra-light);
}

.cta-strip-text p {
  font-size: 14px;
  color: rgba(255,255,255,.72);
  margin-top: 6px;
}

.cta-strip-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

/* ============================================================
   FOOTER — CONTATO
   ============================================================ */

.contact-bar {
  background: var(--text-dark);
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}

.contact-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(242,233,226,.7);
  text-decoration: none;
  transition: color .25s;
}

.contact-item:hover { color: var(--terra-light); }

.contact-item svg {
  width: 15px;
  height: 15px;
  opacity: .7;
  flex-shrink: 0;
}

.site-footer {
  background: var(--footer-bg);
  padding: 50px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px;
}

.footer-brand .logo-name {
  color: var(--footer-text);
  font-size: 20px;
  margin-bottom: 10px;
  display: block;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(242,233,226,.55);
  line-height: 1.85;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(242,233,226,.45);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }

.footer-col a {
  font-size: 14px;
  color: rgba(242,233,226,.6);
  text-decoration: none;
  transition: color .25s;
}
.footer-col a:hover { color: var(--terra); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(242,233,226,.35);
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================================
   PÁGINA CONSULTORIA NR-1 — DIAGNÓSTICO
   ============================================================ */

.page-hero {
  background: var(--bg);
  padding: 72px 0 80px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}

.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 6vw, 76px);
  line-height: .97;
  letter-spacing: 1px;
  color: var(--text-dark);
  margin: 18px 0 16px;
}

.page-hero h1 span { color: var(--forest); }

.page-hero .hero-card {
  background: var(--bg-white);
  border-radius: var(--r-xl);
  padding: 32px 36px;
  box-shadow: var(--shadow-lg);
}

.page-hero .hero-card h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--forest-dark);
  margin-bottom: 18px;
}

.page-hero .hero-card ul { list-style: none; }

.page-hero .hero-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-med);
}

.page-hero .hero-card li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8L6.5 11.5L13 5' stroke='%234d7040' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ---- Diagnóstico form section ---- */

.diagnostic-section {
  background: var(--bg);
  padding: 80px 0;
}

.diagnostic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.form-box {
  background: var(--bg-white);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-box-header {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.form-box-header h3 {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-box-header p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 7px;
  letter-spacing: .1px;
}

.form-group .req { color: var(--terra); }

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border);
  background: var(--bg-light);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  transition: border-color .25s, box-shadow .25s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%23b47c5f' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 38px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(180,124,95,.14);
}

.form-divider {
  height: 1px;
  background: var(--border-light);
  margin: 24px 0 8px;
  border: none;
}

.form-section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.form-section-label::before {
  content: '';
  width: 4px;
  height: 20px;
  background: var(--terra);
  border-radius: 2px;
  flex-shrink: 0;
}

.form-section-label span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.submit-btn {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: var(--r-sm);
  background: var(--terra);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all .28s;
  margin-top: 6px;
  box-shadow: 0 6px 18px rgba(180,124,95,.28);
}

.submit-btn:hover {
  background: var(--terra-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(180,124,95,.36);
}

.submit-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

.form-privacy {
  text-align: center;
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* Alertas */
.form-alert {
  display: none;
  padding: 14px 18px;
  border-radius: var(--r-sm);
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.5;
}
.form-alert.success { background:#edf7ed; color:#2e7d32; border:1px solid #a5d6a7; }
.form-alert.error   { background:#fdecea; color:#c62828; border:1px solid #ef9a9a; }
.form-alert.show    { display:block; }

/* Info box direita */
.info-box { position: sticky; top: 90px; }

.info-card {
  background: var(--bg-white);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.info-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.info-list { list-style: none; }

.info-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.info-list .icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--sage-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--forest);
}

.info-list .text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.info-list .text span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

.testimonial-card {
  background: var(--terra);
  border-radius: var(--r-lg);
  padding: 26px 30px;
  color: #fff;
}

.testimonial-card p {
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 14px;
  font-style: italic;
  opacity: .92;
}

.testimonial-card .author {
  font-size: 12px;
  font-weight: 600;
  opacity: .75;
  font-style: normal;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */

@media (max-width: 960px) {
  .hero-grid,
  .page-hero-grid,
  .dual-grid,
  .diagnostic-grid { grid-template-columns: 1fr; }

  .icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .icon-card { border-right: none; border-bottom: 1px solid var(--border-light); }
  .icon-card:nth-child(odd) { border-right: 1px solid var(--border-light); }
  .icon-card:last-child { border-bottom: none; }

  .cta-strip-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-strip-actions { align-items: center; }
  .cta-strip-icon { margin: 0 auto; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .info-box { position: static; }
  .form-row { grid-template-columns: 1fr; }
}

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

  .hero-section,
  .page-hero { padding: 56px 0 60px; }

  .display-xl { font-size: 58px; }

  .form-box { padding: 28px 20px; }

  .dual-card { padding: 30px 24px; }

  .icon-grid { grid-template-columns: 1fr; }
  .icon-card { border-right: none; }

  .contact-bar-inner { gap: 20px; }

  /* Nav mobile */
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-light);
    padding: 16px 20px 20px;
    box-shadow: var(--shadow-md);
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; gap: 6px; align-items: flex-start; }
  .site-nav a { padding: 10px 0; font-size: 15px; display: block; width: 100%; }
  .nav-toggle { display: block; }
  .header-inner { position: relative; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
