/* ============================================================
   Nelson Diogo Car - Modern dark theme stylesheet
   ============================================================ */

:root {
  --bg: #0b0d12;
  --bg-2: #0f121a;
  --bg-3: #141823;
  --surface: #161b27;
  --surface-2: #1c2230;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #e7eaf0;
  --text-2: #a8b0c0;
  --text-3: #6e7689;
  --primary: #e63946;
  --primary-2: #ff5263;
  --primary-glow: rgba(230, 57, 70, 0.35);
  --accent: #ffb703;
  --success: #2ecc71;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.25);
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 18px 60px rgba(230, 57, 70, 0.35);
  --container: 1200px;
  --header-h: 72px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--primary-2); }

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 .6em;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1em; color: var(--text-2); }

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

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--primary); color: #fff; padding: 10px 14px; border-radius: 6px; z-index: 9999;
}
.skip-link:focus { left: 16px; top: 16px; }

.muted { color: var(--text-3); }
.small { font-size: 0.85rem; }
.grad {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ====== Buttons ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .25s var(--ease);
  white-space: nowrap;
  text-align: center;
}
.btn-sm { padding: 9px 16px; font-size: 0.85rem; }
.btn-lg { padding: 15px 28px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  color: #fff;
  box-shadow: 0 10px 28px -8px var(--primary-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -10px var(--primary-glow);
  color: #fff;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--text);
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* ====== Header ====== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(11, 13, 18, 0.7);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(11, 13, 18, 0.92);
  border-bottom-color: var(--border);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
}
.brand:hover { color: var(--text); }
.brand-mark {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 8px 20px -6px var(--primary-glow);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-weight: 700; font-size: 0.95rem; letter-spacing: -0.01em; }
.brand-text em { font-style: normal; font-weight: 500; font-size: 0.78rem; color: var(--text-3); margin-top: 2px; }

.primary-nav ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 4px;
}
.primary-nav a {
  display: block;
  padding: 10px 16px;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text-2);
  border-radius: 999px;
  transition: all .2s var(--ease);
}
.primary-nav a:hover { color: var(--text); background: rgba(255, 255, 255, 0.04); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.lang-switch {
  display: flex; gap: 2px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 999px;
}
.lang-switch button {
  background: transparent; border: 0; color: var(--text-3);
  font-size: 0.78rem; font-weight: 600;
  padding: 5px 10px; border-radius: 999px; cursor: pointer;
  transition: all .2s var(--ease);
}
.lang-switch button.active {
  background: var(--primary);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  display: flex; flex-direction: column; gap: 12px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.mobile-nav[data-open="true"] {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-nav ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
}
.mobile-nav a {
  display: block;
  padding: 14px 4px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}

/* ====== Hero ====== */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 80px) 0 60px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(1200px 600px at 20% 0%, rgba(230, 57, 70, 0.15), transparent 60%),
              radial-gradient(900px 500px at 90% 30%, rgba(255, 183, 3, 0.08), transparent 60%),
              var(--bg);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 40%, transparent 80%);
}
.hero-glow {
  position: absolute;
  width: 480px; height: 480px;
  top: -100px; right: -120px;
  background: radial-gradient(closest-side, var(--primary) 0%, transparent 70%);
  opacity: 0.25;
  filter: blur(40px);
  border-radius: 50%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: rgba(230, 57, 70, 0.1);
  border: 1px solid rgba(230, 57, 70, 0.25);
  color: var(--primary-2);
  border-radius: 999px;
  font-size: 0.82rem; font-weight: 600;
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(230, 57, 70, 0); }
}

.lead {
  font-size: 1.15rem;
  color: var(--text-2);
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
  max-width: 540px;
}
.hero-stats li { display: flex; flex-direction: column; gap: 4px; }
.hero-stats strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, var(--text-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-stats span { font-size: 0.85rem; color: var(--text-3); }

/* Hero card */
.hero-card {
  position: relative;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.hero-card-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
}
.hero-card-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.3);
  color: var(--success);
  border-radius: 999px;
  font-size: 0.8rem; font-weight: 600;
}
.hero-card-pulse {
  width: 10px; height: 10px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.2);
  animation: pulse-green 2s ease-in-out infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.6); }
  50% { box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); }
}
.hero-card-body h3 { font-size: 1.5rem; margin-bottom: 6px; }
.hero-card-body p { color: var(--text-2); margin-bottom: 18px; }
.hero-card-row {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  color: var(--text-2);
  font-size: 0.93rem;
}
.hero-card-row svg { color: var(--primary-2); flex-shrink: 0; margin-top: 2px; }
.hero-card-row a { color: var(--text); font-weight: 500; }

/* Brand strip */
.brand-strip {
  margin-top: 80px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.brand-strip-track {
  display: flex; gap: 56px;
  animation: scroll 38s linear infinite;
  width: max-content;
}
.brand-strip-track span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-3);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ====== Sections ====== */
.section {
  padding: 100px 0;
  position: relative;
}
.section-alt {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.kicker {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-2);
  border-radius: 999px;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-head p { font-size: 1.05rem; }

/* ====== Services ====== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.service {
  position: relative;
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
  overflow: hidden;
}
.service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 200px at var(--mx, 50%) var(--my, 0%), rgba(230, 57, 70, 0.08), transparent 50%);
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
}
.service:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: var(--surface-2);
}
.service:hover::before { opacity: 1; }
.service-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.15) 0%, rgba(255, 82, 99, 0.05) 100%);
  border: 1px solid rgba(230, 57, 70, 0.25);
  color: var(--primary-2);
  border-radius: 12px;
  margin-bottom: 18px;
}
.service h3 { margin-bottom: 8px; }
.service p { margin: 0; color: var(--text-2); }

/* ====== About ====== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about-visual {
  position: relative;
  min-height: 420px;
}
.about-shape {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(closest-side, rgba(230, 57, 70, 0.18), transparent 70%),
    linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transform: rotate(-3deg);
}
.about-card {
  position: absolute;
  inset: 30px;
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-card-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-bottom: 24px;
}
.about-card-row > div { display: flex; flex-direction: column; gap: 4px; }
.about-card-row strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.1;
  padding-bottom: 2px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about-card-row span { color: var(--text-2); font-size: 0.9rem; line-height: 1.4; }
.about-card-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}
.about-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.about-list li {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--text-2);
  line-height: 1.45;
  min-width: 0;
}
.about-list li span { flex: 1; min-width: 0; word-wrap: break-word; }
.about-list svg { color: var(--success); flex-shrink: 0; margin-top: 4px; }

.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.about-tags span {
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-2);
  border-radius: 999px;
  font-size: 0.85rem; font-weight: 500;
}

/* ====== Process ====== */
.process {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  counter-reset: process;
}
.process-step {
  position: relative;
  padding: 36px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(230, 57, 70, 0.4);
}
.process-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}
.process-step h3 { margin-bottom: 8px; }
.process-step p { margin: 0; color: var(--text-2); }

/* ====== CTA Band ====== */
.cta-band {
  position: relative;
  padding: 64px 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(230, 57, 70, 0.4), transparent 60%),
    linear-gradient(135deg, #1a1d27 0%, #0d0f15 100%);
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
}
.cta-band h2 { margin-bottom: 6px; color: #fff; }
.cta-band p { margin: 0; color: rgba(255, 255, 255, 0.7); }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ====== Contact ====== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 12px; }
.contact-info > p { margin-bottom: 28px; }

.contact-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 18px;
}
.contact-list li {
  display: flex; gap: 16px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .25s var(--ease);
}
.contact-list li:hover { border-color: var(--border-strong); }
.contact-ico {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: rgba(230, 57, 70, 0.1);
  border: 1px solid rgba(230, 57, 70, 0.25);
  color: var(--primary-2);
  border-radius: 10px;
  flex-shrink: 0;
}
.contact-list strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-3);
  margin-bottom: 4px;
  font-weight: 600;
}
.contact-list a { color: var(--text); font-weight: 500; }

/* Form */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 0.85rem;
  color: var(--text-2);
  font-weight: 500;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px 14px;
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--bg-3);
}
.contact-form textarea { resize: vertical; min-height: 110px; font-family: inherit; }
.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23a8b0c0' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.form-foot p { margin: 0; max-width: 300px; }

.form-success {
  padding: 14px 16px;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.3);
  color: var(--success);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

/* Map */
.map-wrap {
  position: relative;
  margin-top: 72px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 380px;
  filter: grayscale(0.3) contrast(1.05);
}
.map-wrap iframe {
  width: 100%; height: 100%; border: 0;
  background: var(--bg-2);
}
.map-link {
  position: absolute;
  top: 14px; right: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px;
  background: rgba(11, 13, 18, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--text);
  font-size: 0.85rem; font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: all .2s var(--ease);
  filter: grayscale(0);
}
.map-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}
.map-link svg { color: var(--primary-2); transition: color .2s var(--ease); }
.map-link:hover svg { color: #fff; }

/* ====== Footer ====== */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-grid h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-3);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-list a { color: var(--text-2); font-size: 0.92rem; }
.footer-list a:hover { color: var(--text); }
.footer-list li { color: var(--text-2); font-size: 0.92rem; }
.brand-footer { margin-bottom: 16px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px 24px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-3);
}

/* ====== Reveal animations ====== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====== Responsive ====== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 480px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { min-height: 360px; max-width: 480px; margin: 0 auto; width: 100%; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .primary-nav { display: none; }
  .nav-toggle { display: flex; }
  .nav-actions .btn-sm { display: none; }
  .hero { padding-top: calc(var(--header-h) + 56px); padding-bottom: 40px; }
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats li:nth-child(3) { grid-column: span 2; }
  .cta-band { padding: 48px 0; }
  .cta-inner { flex-direction: column; text-align: center; align-items: center; }
  .cta-actions { justify-content: center; }
  .contact-form { padding: 22px; }
  .lang-switch { display: none; }

  /* About card flows naturally on mobile to avoid overflow */
  .about-visual { min-height: 0; padding: 0; max-width: none; }
  .about-shape { transform: none; inset: -10px; opacity: 0.6; }
  .about-card {
    position: relative;
    inset: auto;
    margin: 0;
    padding: 26px;
  }
}

@media (max-width: 520px) {
  .about-card { padding: 22px 20px; }
  .about-card-row {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 20px;
  }
  .about-card-row > div {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 14px;
    row-gap: 0;
  }
  .about-card-row strong { font-size: 1.9rem; }
  .about-card-row span { font-size: 0.88rem; }
  .about-card-divider { margin-bottom: 18px; }
  .about-list { gap: 10px; }
  .about-list li { font-size: 0.92rem; }
}

@media (max-width: 460px) {
  .container { padding: 0 18px; }
  .brand-text em { display: none; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats li:nth-child(3) { grid-column: auto; }
  h1 { font-size: 2rem; }
}

@media (max-width: 380px) {
  .about-card { padding: 20px 18px; }
  .about-card-row strong { font-size: 1.7rem; }
  .about-card-row span { font-size: 0.85rem; }
  .about-list li { font-size: 0.9rem; }
}

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