/* ==========================================================================
   L&A Manutenções — design system
   Base: cloudflare-landing-page skill (references/01-design-system.md)
   Cor de marca: azul industrial (--brand-h/s/l) — troque só esses 3 valores
   se precisar rebrandear.
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@600;700&family=Inter:wght@400;500;600&display=swap");

/* ---- tokens: tema claro (padrão) ---- */
:root {
  --brand-h: 213; --brand-s: 88%; --brand-l: 42%;
  --brand: hsl(var(--brand-h) var(--brand-s) var(--brand-l));
  --brand-600: hsl(var(--brand-h) var(--brand-s) 33%);
  --brand-100: hsl(var(--brand-h) 70% 94%);
  --accent-amber: hsl(38 92% 50%); /* usado só no selo "atendimento emergencial" */

  --bg: #ffffff;
  --bg-soft: #f4f6fb;
  --surface: #ffffff;
  --border: #e3e7f0;
  --text: #12141c;
  --text-muted: #565b6e;
  --shadow: 0 8px 24px -8px rgb(20 22 31 / 0.12);
  --radius: 18px;
  --radius-sm: 10px;
  --font-heading: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
}

/* ---- tokens: tema escuro (sistema, quando não há escolha salva) ---- */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0a0d14;
    --bg-soft: #10131c;
    --surface: #151926;
    --border: #262c3d;
    --text: #edf0f7;
    --text-muted: #9aa1b8;
    --shadow: 0 8px 28px -8px rgb(0 0 0 / 0.55);
  }
}

/* ---- tokens: tema escuro forçado pelo toggle (data-theme="dark") ---- */
:root[data-theme="dark"] {
  --bg: #0a0d14;
  --bg-soft: #10131c;
  --surface: #151926;
  --border: #262c3d;
  --text: #edf0f7;
  --text-muted: #9aa1b8;
  --shadow: 0 8px 28px -8px rgb(0 0 0 / 0.55);
}

/* ---- reset básico ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
/* Navegadores aplicam uma cor própria (ButtonText) a <button> por padrão, que não acompanha o
   tema — sem isso, ícones com stroke="currentColor" dentro de botões (ex.: o hambúrguer) ficam
   escuros e somem no tema escuro. */
button { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.15; margin: 0 0 0.5em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.1rem, 5.4vw, 3.75rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.4rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; color: var(--text-muted); }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
/* padding-top/bottom em vez do atalho "padding" — como section[id] tem mais especificidade que
   .container, um "padding: 72px 0" aqui zeraria as laterais herdadas de .container e colaria o
   conteúdo nas bordas em qualquer tela estreita. */
section[id] { scroll-margin-top: 84px; padding-top: 72px; padding-bottom: 72px; }
@media (max-width: 640px) { section[id] { padding-top: 48px; padding-bottom: 48px; } }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-heading); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand);
  margin-bottom: 12px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--brand); border-radius: 2px; }
.section-head { max-width: 640px; margin: 0 0 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.visually-hidden {
  position: absolute; left: -9999px; top: auto;
  background: var(--brand); color: #fff; padding: 10px 16px; border-radius: var(--radius-sm);
  z-index: 100;
}
.visually-hidden:focus { left: 16px; top: 16px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---- header ---- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 24px;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
.brand-mark { width: 40px; height: 40px; flex-shrink: 0; color: var(--brand); }
.brand-word { font-family: var(--font-heading); font-weight: 700; font-size: 1.15rem; line-height: 1.1; }
.brand-word small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }

.site-header nav { display: none; gap: 28px; }
@media (min-width: 900px) { .site-header nav { display: flex; } }
.site-header nav a { text-decoration: none; color: var(--text-muted); font-weight: 500; font-size: 0.95rem; }
.site-header nav a:hover { color: var(--brand); }

.header-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.nav-toggle {
  display: inline-flex; width: 40px; height: 40px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: var(--surface); align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
}
@media (min-width: 900px) { .nav-toggle { display: none; } }

/* Mobile: o cabeçalho não pode disputar espaço com o menu — o CTA some daqui (o WhatsApp
   flutuante e o chat já cobrem essa ação) e a marca encolhe para o hambúrguer sempre caber. */
@media (max-width: 640px) {
  .site-header { padding: 10px 14px; gap: 8px; }
  .brand { gap: 8px; }
  .brand-mark { width: 32px; height: 32px; }
  .brand-word { font-size: 0.92rem; }
  .brand-word small { display: none; }
  .header-actions { gap: 6px; }
  .header-actions > .btn-primary { display: none; }
  .theme-toggle, .nav-toggle { width: 36px; height: 36px; }
}

.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 45;
  background: var(--bg);
  padding: 84px 20px 32px; flex-direction: column; gap: 10px; overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  text-decoration: none; color: var(--text); font-family: var(--font-heading); font-weight: 600;
  font-size: 1.02rem; padding: 16px 18px; border-radius: var(--radius-sm);
  background: var(--surface); border: 1px solid var(--border);
  transition: border-color 150ms ease-out, color 150ms ease-out;
}
.mobile-nav a::after {
  content: "→"; color: var(--brand); font-weight: 400; font-family: var(--font-body);
}
.mobile-nav a:hover, .mobile-nav a:active { border-color: var(--brand); color: var(--brand); }
.mobile-nav-close {
  position: absolute; top: 18px; right: 20px; width: 44px; height: 44px; border-radius: 999px;
  border: 1px solid var(--border); background: var(--surface); font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

/* ---- botões ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: 999px; font-weight: 600; text-decoration: none;
  border: 1px solid transparent; cursor: pointer; font-size: 0.95rem;
  transition: transform 150ms ease-out, box-shadow 150ms ease-out, background 150ms ease-out, border-color 150ms ease-out;
}
.btn:hover { transform: translateY(-1px); }
@media (max-width: 480px) { .btn { padding: 12px 20px; font-size: 0.9rem; } }
.btn:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--brand-600); }
.btn-secondary { background: transparent; color: var(--text); border-color: var(--border); }
.btn-secondary:hover { border-color: var(--brand); color: var(--brand); }
.btn-block { width: 100%; }

/* ---- toggle de tema ---- */
.theme-toggle {
  width: 40px; height: 40px; border-radius: 999px; border: 1px solid var(--border);
  background: var(--surface); display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.05rem;
}

/* ---- hero ---- */
.hero {
  position: relative; padding: 76px 24px 60px; display: grid; gap: 40px; align-items: center;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto -10%; height: 620px; z-index: -1;
  background:
    radial-gradient(circle at 18% 22%, color-mix(in srgb, var(--brand) 16%, transparent), transparent 55%),
    radial-gradient(circle at 82% 12%, color-mix(in srgb, var(--brand) 10%, transparent), transparent 50%),
    repeating-linear-gradient(90deg, color-mix(in srgb, var(--border) 60%, transparent) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(0deg, color-mix(in srgb, var(--border) 60%, transparent) 0 1px, transparent 1px 64px);
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
@media (min-width: 1024px) { .hero { grid-template-columns: 1.05fr 0.95fr; padding-top: 108px; gap: 32px; } }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px;
  background: var(--brand-100); color: var(--brand-600); font-weight: 600; font-size: 0.82rem; margin-bottom: 18px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 32px; }
.hero-meta div { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-muted); }
.hero-meta svg { width: 20px; height: 20px; color: var(--brand); flex-shrink: 0; }

.hero-visual {
  position: relative; aspect-ratio: 4/3.1; border-radius: var(--radius);
  background: linear-gradient(160deg, var(--brand-100), var(--surface) 65%);
  border: 1px solid var(--border); box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center; padding: 32px;
}
.hero-visual svg { width: 100%; height: 100%; color: var(--brand); }
@media (max-width: 640px) {
  .hero { padding: 28px 20px 36px; gap: 28px; }
  .hero-badge { margin-bottom: 14px; }
  .hero-actions { flex-direction: column; align-items: stretch; margin-top: 22px; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { aspect-ratio: 16/11; }
}
.hero-visual::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: repeating-linear-gradient(135deg, color-mix(in srgb, var(--brand) 6%, transparent) 0 2px, transparent 2px 26px);
  pointer-events: none;
}
/* duas engrenagens girando juntas — proporção de dentes (10:8) faz o giro da menor
   ser mais rápido e em sentido oposto ao da maior, como engrenagens reais engrenando */
.gear-a, .gear-b { transform-origin: 0 0; }
.gear-a { animation: gear-turn 14s linear infinite; }
.gear-b { animation: gear-turn-rev 11.2s linear infinite; }
@keyframes gear-turn { to { transform: rotate(360deg); } }
@keyframes gear-turn-rev { to { transform: rotate(-360deg); } }

/* ---- badges de valores (linha sob o hero) ---- */
.value-strip {
  display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  margin: 8px 0 0;
}
.value-pill {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
}
.value-pill svg { width: 26px; height: 26px; color: var(--brand); flex-shrink: 0; }
.value-pill strong { display: block; font-size: 0.92rem; }
.value-pill span { font-size: 0.8rem; color: var(--text-muted); }

/* ---- grid de serviços ---- */
.service-grid {
  display: grid; gap: 20px; margin: 8px 0 0;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.service-card {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow);
  transition: transform 180ms ease-out, border-color 180ms ease-out;
}
.service-card:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--brand) 40%, var(--border)); }
.service-card .icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm); background: var(--brand-100);
  color: var(--brand-600); display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.service-card .icon svg { width: 26px; height: 26px; }
.service-card h3 { margin-bottom: 8px; }
.service-card p { margin: 0; font-size: 0.94rem; }

/* ---- quem somos ---- */
.about-grid {
  display: grid; gap: 40px; align-items: center;
}
@media (min-width: 960px) { .about-grid { grid-template-columns: 0.9fr 1.1fr; } }
.about-panel {
  position: relative; border-radius: var(--radius); border: 1px solid var(--border);
  background: linear-gradient(160deg, var(--surface), var(--bg-soft));
  box-shadow: var(--shadow); padding: 32px; aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
}
.about-panel svg { width: 80%; height: 80%; color: var(--brand); }
.about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 28px; }
@media (max-width: 420px) { .about-stats { grid-template-columns: 1fr; } }
.about-stat { padding: 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); }
.about-stat strong { display: block; font-family: var(--font-heading); font-size: 1.5rem; color: var(--brand); }
.about-stat span { font-size: 0.84rem; color: var(--text-muted); }

/* ---- processo / como trabalhamos ---- */
.process-grid {
  display: grid; gap: 24px; counter-reset: step; margin-top: 8px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.process-step { position: relative; padding: 26px 22px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
.process-step .num {
  counter-increment: step; font-family: var(--font-heading); font-weight: 700; font-size: 0.85rem;
  color: var(--brand); display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 999px; background: var(--brand-100); margin-bottom: 14px;
}
.process-step .num::before { content: counter(step, decimal-leading-zero); }

/* ---- diferenciais ---- */
.diff-grid {
  display: grid; gap: 18px; margin-top: 8px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.diff-item { display: flex; gap: 14px; padding: 4px 0; }
.diff-item svg { width: 24px; height: 24px; color: var(--brand); flex-shrink: 0; margin-top: 2px; }
.diff-item h4 { margin: 0 0 4px; font-family: var(--font-heading); font-size: 1rem; }
.diff-item p { margin: 0; font-size: 0.9rem; }

/* ---- FAQ (accordion nativo) ---- */
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 10px;
  background: var(--surface); overflow: hidden; box-shadow: var(--shadow);
}
.faq-item summary {
  padding: 18px 20px; cursor: pointer; font-weight: 600; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--brand); font-size: 1.3rem; flex-shrink: 0; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding: 0 20px 18px; margin: 0; }

/* ---- blog ---- */
.post-grid {
  display: grid; gap: 24px; margin: 8px 0 0;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.post-card {
  display: block; text-decoration: none; color: var(--text);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); transition: transform 150ms ease-out;
}
.post-card:hover { transform: translateY(-2px); }
.post-card .post-thumb {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  background: linear-gradient(135deg, var(--brand-100), var(--bg-soft));
}
.post-card-body { padding: 20px; }
.post-card-body h3 { margin-bottom: 8px; }
.post-card time { color: var(--text-muted); font-size: 0.85rem; }
.post .post-cover { width: 100%; border-radius: var(--radius); margin: 20px 0; aspect-ratio: 16/9; object-fit: cover; }
.post article { max-width: 720px; }
.post article h2 { margin-top: 1.4em; }
.pagination { text-align: center; margin: 36px 0 8px; }
.tag-pill {
  display: inline-block; font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--brand-600); background: var(--brand-100);
  padding: 4px 10px; border-radius: 999px; margin: 0 6px 6px 0;
}

/* ---- CTA band + footer ---- */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--brand), var(--brand-600));
  color: #fff; border-radius: var(--radius); padding: 56px 32px; text-align: center; margin: 64px auto;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgb(255 255 255 / 0.06) 0 2px, transparent 2px 30px);
}
.cta-band > * { position: relative; }
.cta-band h2, .cta-band p { color: #fff; }
.cta-band p { color: rgb(255 255 255 / 0.85); }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }

.site-footer { border-top: 1px solid var(--border); padding: 56px 24px 28px; color: var(--text-muted); font-size: 0.9rem; }
.footer-grid { display: grid; gap: 32px; grid-template-columns: 1.3fr repeat(3, 1fr); margin-bottom: 36px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: var(--text); font-family: var(--font-heading); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-grid a { text-decoration: none; }
.footer-grid a:hover { color: var(--brand); }
.footer-brand p { max-width: 320px; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--border); }
.footer-bottom p { margin: 0; }
.footer-legal-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom a, .footer-legal-links a { text-decoration: none; }
.footer-bottom a:hover, .footer-legal-links a:hover { color: var(--brand); }
@media (max-width: 640px) {
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-legal-links { flex-direction: column; gap: 8px; }
}

/* ---- widget de chat ---- */
.chat-bubble {
  position: fixed; right: 20px; bottom: 20px; z-index: 50;
  width: 58px; height: 58px; border-radius: 999px; border: none;
  background: var(--brand); color: #fff; box-shadow: var(--shadow); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.chat-bubble svg { width: 26px; height: 26px; }
.chat-panel {
  position: fixed; right: 20px; bottom: 90px; z-index: 50;
  width: min(370px, calc(100vw - 32px)); max-height: min(530px, calc(100vh - 140px));
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); display: none; flex-direction: column; overflow: hidden;
}
.chat-panel.open { display: flex; }
.chat-panel-header { padding: 16px; border-bottom: 1px solid var(--border); font-weight: 600; display: flex; align-items: center; gap: 10px; }
.chat-panel-header .dot { width: 8px; height: 8px; border-radius: 999px; background: #22c55e; }
.chat-panel-messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.chat-msg { padding: 10px 14px; border-radius: 14px; max-width: 85%; font-size: 0.92rem; }
.chat-msg.user { align-self: flex-end; background: var(--brand); color: #fff; }
.chat-msg.assistant { align-self: flex-start; background: var(--bg-soft); }
.chat-panel-form { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--border); }
.chat-panel-form input {
  flex: 1; border: 1px solid var(--border); border-radius: 999px; padding: 10px 14px;
  background: var(--bg); color: var(--text); font-family: var(--font-body);
}
.chat-panel-form button {
  border: none; background: var(--brand); color: #fff; border-radius: 999px; width: 40px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

/* ---- botão flutuante de WhatsApp (canto inferior esquerdo — não conflita com o chat) ---- */
.whatsapp-fab {
  position: fixed; left: 20px; bottom: 20px; z-index: 50;
  width: 58px; height: 58px; border-radius: 999px; border: none;
  background: #25d366; color: #fff; box-shadow: var(--shadow); cursor: pointer;
  display: flex; align-items: center; justify-content: center; text-decoration: none;
}
.whatsapp-fab svg { width: 28px; height: 28px; }

/* ---- banner de cookies ---- */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 60;
  max-width: 640px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 20px; display: none;
}
.cookie-banner.open { display: block; }
.cookie-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.cookie-banner-panel { margin-top: 14px; border-top: 1px solid var(--border); padding-top: 14px; display: none; }
.cookie-banner-panel.open { display: block; }
.cookie-option { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; }

/* ---- formulário de contato ---- */
.contact-grid { display: grid; gap: 32px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 0.85fr; } }
.contact-form { display: grid; gap: 14px; }
.contact-form label { font-size: 0.85rem; font-weight: 600; margin-bottom: -6px; }
.contact-form input, .contact-form textarea {
  padding: 13px 15px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--surface); color: var(--text); font-family: var(--font-body); font-size: 0.95rem;
  width: 100%;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--brand); outline-offset: 1px; }
.contact-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow); height: fit-content;
}
.contact-line { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 18px; }
.contact-line svg { width: 22px; height: 22px; color: var(--brand); flex-shrink: 0; margin-top: 2px; }
.contact-line strong { display: block; font-size: 0.95rem; }
.contact-line span, .contact-line a { font-size: 0.88rem; color: var(--text-muted); text-decoration: none; }
.contact-line a:hover { color: var(--brand); }
