/* ──────────────────────────────────────────────
   Auszmann Autómentés — Stylesheet
   ────────────────────────────────────────────── */

:root {
  --primary-blue: #0D2B6B;
  --primary-blue-darker: #081E4F;
  --secondary-blue: #1E4A9E;
  --accent-orange: #FF6B00;
  --accent-orange-hover: #E55F00;
  --white: #FFFFFF;
  --surface-light: #F2F5FA;
  --text-dark: #0A1628;
  --text-muted: #64748B;
  --border-subtle: #E2E8F0;

  --font-head: 'Barlow Condensed', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --container: 1200px;
  --container-narrow: 880px;

  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 14px;

  --t-fast: 180ms ease;
  --t: 280ms ease;

  --shadow-sm: 0 1px 2px rgba(13, 43, 107, 0.06);
  --shadow: 0 8px 24px rgba(13, 43, 107, 0.08);
  --shadow-lg: 0 18px 48px rgba(13, 43, 107, 0.16);
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
svg { display: block; }

::selection { background: var(--accent-orange); color: var(--white); }

/* ── Layout helpers ─────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow { max-width: var(--container-narrow); }

/* ── Typography ─────────────────────────────── */
.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 16px;
}
.eyebrow-on-dark { color: var(--accent-orange); }

.h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: var(--primary-blue);
  margin-bottom: 20px;
}
.h2-on-dark { color: var(--white); }

.lede {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--text-muted);
  max-width: 720px;
  margin-bottom: 56px;
  line-height: 1.65;
}
.lede-on-dark { color: rgba(255, 255, 255, 0.72); }

/* ── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform var(--t-fast), background var(--t-fast), box-shadow var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn svg {
  width: 18px; height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}
.btn-primary {
  background: var(--accent-orange);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(255, 107, 0, 0.28);
}
.btn-primary:hover {
  background: var(--accent-orange-hover);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 24px rgba(255, 107, 0, 0.36);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 26px; font-size: 16px; }
.btn-xl { padding: 20px 34px; font-size: 18px; letter-spacing: 1.5px; }

.cta-center { text-align: center; margin-top: 32px; }

/* ── NAV ────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--t), border-color var(--t);
}
.nav.scrolled {
  box-shadow: 0 4px 12px rgba(13, 43, 107, 0.08);
  border-bottom-color: var(--border-subtle);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: inline-flex;
  flex-direction: column;
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1;
  flex-shrink: 0;
}
.nav-logo span { font-size: 20px; color: var(--primary-blue); }
.nav-logo .lo-acc { font-size: 13px; color: var(--accent-orange); margin-top: 2px; letter-spacing: 1.5px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-dark);
  transition: color var(--t-fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--accent-orange);
  transition: width var(--t-fast);
}
.nav-links a:hover { color: var(--accent-orange); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-orange);
  color: var(--white);
  padding: 11px 18px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: background var(--t-fast), transform var(--t-fast);
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.24);
}
.nav-cta svg { width: 16px; height: 16px; fill: currentColor; }
.nav-cta:hover { background: var(--accent-orange-hover); transform: translateY(-1px); }

.nav-burger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--primary-blue);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t-fast);
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mob {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border-subtle);
  padding: 12px 24px 20px;
}
.nav-mob a {
  padding: 14px 0;
  font-weight: 500;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 16px;
}
.nav-mob a:last-child { border-bottom: none; }
.nav-mob-cta {
  margin-top: 12px;
  background: var(--accent-orange);
  color: var(--white) !important;
  text-align: center;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.5px;
  border-bottom: none !important;
}
.nav-mob.open { display: flex; }

/* ── HERO ──────────────────────────────────── */
.hero {
  position: relative;
  background: var(--primary-blue);
  color: var(--white);
  overflow: hidden;
  padding: 96px 0 0;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(30, 74, 158, 0.4), transparent 60%),
    linear-gradient(135deg, rgba(13, 43, 107, 0.94) 0%, rgba(8, 30, 79, 0.85) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 24px 64px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
  flex-grow: 1;
}
.hero-text { max-width: 720px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.4);
  border-radius: 100px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--accent-orange);
  margin-bottom: 28px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-orange);
  box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7); }
  70%  { box-shadow: 0 0 0 12px rgba(255, 107, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}

.hero-h1 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(40px, 6.5vw, 76px);
  line-height: 0.96;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-h1 .acc {
  color: var(--accent-orange);
  position: relative;
  display: inline-block;
}
.hero-sub {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}
.hero-meta {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.3px;
}

/* Hero side card */
.hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
}
.hc-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 100px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: #4ade80;
  margin-bottom: 20px;
}
.hc-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%   { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}
.hc-eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
}
.hc-h {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 28px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.hc-phone {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 36px;
  letter-spacing: 0.5px;
  color: var(--accent-orange);
  margin-bottom: 22px;
  transition: color var(--t-fast);
}
.hc-phone:hover { color: var(--accent-orange-hover); }
.hc-list { display: flex; flex-direction: column; gap: 10px; }
.hc-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}
.hc-list svg {
  width: 18px; height: 18px;
  stroke: var(--accent-orange);
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* Hero strip */
.hero-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 30, 79, 0.5);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 60px);
  flex-wrap: wrap;
}
.hs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: var(--font-head);
}
.hs-item strong {
  font-weight: 800;
  font-size: clamp(16px, 1.4vw, 20px);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1.1;
}
.hs-item span {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}
.hs-div {
  width: 1px; height: 32px;
  background: rgba(255, 255, 255, 0.15);
}

/* ── EMPATHY ──────────────────────────────── */
.empathy {
  background: var(--white);
  padding: 100px 0;
  text-align: center;
}
.empathy .h2 { max-width: 760px; margin-left: auto; margin-right: auto; margin-bottom: 32px; }
.empathy-body {
  text-align: left;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-dark);
  margin-bottom: 36px;
}
.empathy-body p { margin-bottom: 16px; }
.empathy-body p:last-child { margin-bottom: 0; }

.pull-quote {
  text-align: left;
  border-left: 4px solid var(--accent-orange);
  padding: 8px 0 8px 22px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.4;
  color: var(--primary-blue);
  margin-bottom: 48px;
}

.empathy-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}
.ebadge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--surface-light);
  border-radius: 100px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--primary-blue);
}
.ebadge svg {
  width: 20px; height: 20px;
  stroke: var(--accent-orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── SERVICES ─────────────────────────────── */
.services {
  background: var(--surface-light);
  padding: 100px 0;
}
.services .lede { max-width: 720px; }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.svc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.svc-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-orange);
  box-shadow: var(--shadow-lg);
}
.svc-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--primary-blue);
}
.svc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t);
}
.svc-card:hover .svc-img img { transform: scale(1.05); }
.svc-body { padding: 24px; }
.svc-body h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  color: var(--primary-blue);
  margin-bottom: 10px;
}
.svc-body p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.svc-cta {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
}
.svc-cta p {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 18px;
  color: var(--primary-blue);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── WHY ──────────────────────────────────── */
.why {
  background: var(--primary-blue);
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(30, 74, 158, 0.6), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(255, 107, 0, 0.06), transparent 40%);
  pointer-events: none;
}
.why .container { position: relative; z-index: 1; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.why-card {
  background: var(--primary-blue-darker);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform var(--t), border-color var(--t);
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-orange);
}
.why-ico {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 0, 0.12);
  border-radius: var(--radius);
  margin-bottom: 18px;
}
.why-ico svg {
  width: 26px; height: 26px;
  stroke: var(--accent-orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.why-tagline {
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 22px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  position: relative;
  display: block;
  max-width: 760px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 2px solid var(--accent-orange);
}

/* ── HOW ──────────────────────────────────── */
.how { background: var(--white); padding: 100px 0; }
.how .lede { max-width: 760px; }

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 56px;
}
.step {
  background: var(--surface-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border-subtle);
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.step:hover {
  transform: translateY(-4px);
  border-color: var(--accent-orange);
  box-shadow: var(--shadow);
}
.step-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--accent-orange);
  margin-bottom: 18px;
  letter-spacing: -2px;
}
.step h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  color: var(--primary-blue);
  margin-bottom: 12px;
}
.step p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
}
.step-arrow svg {
  width: 60px;
  fill: none;
  stroke: var(--accent-orange);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── AREA ─────────────────────────────────── */
.area { background: var(--surface-light); padding: 100px 0; }
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.area-text p {
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin: 28px 0;
}
.area-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary-blue);
}
.area-list svg {
  width: 20px; height: 20px;
  stroke: var(--accent-orange);
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.area-cta {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}
.area-cta p {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary-blue);
  margin-bottom: 12px;
}
.area-map {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow);
}
.area-map svg { width: 100%; height: auto; }

/* ── FEATURE (gépszállítás) ──────────────── */
.feature {
  background: var(--white);
  padding: 0;
  overflow: hidden;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 600px;
}
.feature-img {
  position: relative;
  background: var(--primary-blue);
}
.feature-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.feature-text {
  padding: 100px 64px 100px 56px;
  max-width: 700px;
}
.feature-body p {
  margin-bottom: 14px;
  line-height: 1.7;
  color: var(--text-dark);
}
.feature-list {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 500;
}
.feature-list svg {
  width: 18px; height: 18px;
  stroke: var(--accent-orange);
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.feature-callout {
  background: rgba(255, 107, 0, 0.08);
  border-left: 4px solid var(--accent-orange);
  padding: 18px 22px;
  margin: 24px 0 32px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.5;
  color: var(--primary-blue);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ── ABOUT ─────────────────────────────── */
.about {
  background: var(--primary-blue);
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(30, 74, 158, 0.5), transparent 60%);
}
.about .container { position: relative; z-index: 1; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.about-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.about-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(255, 255, 255, 0.06);
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--accent-orange);
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  box-shadow: 0 12px 32px rgba(255, 107, 0, 0.4);
}
.about-badge strong {
  font-weight: 900;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -1px;
}
.about-badge span {
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

.about-body p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
  line-height: 1.7;
}
.about-tagline {
  margin: 28px 0;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 107, 0, 0.5);
  border-bottom: 1px solid rgba(255, 107, 0, 0.5);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 20px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent-orange);
}

/* ── FAQ ──────────────────────────────────── */
.faq { background: var(--white); padding: 100px 0; }
.faq .h2 { margin-bottom: 48px; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface-light);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  transition: border-color var(--t), background var(--t);
}
.faq-item[open] {
  border-color: var(--accent-orange);
  background: var(--white);
  box-shadow: var(--shadow);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  color: var(--primary-blue);
  letter-spacing: 0.3px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  transition: transform var(--t), background var(--t);
  flex-shrink: 0;
}
.faq-ico svg {
  width: 14px; height: 14px;
  fill: none;
  stroke: var(--accent-orange);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.faq-item[open] .faq-ico {
  transform: rotate(180deg);
  background: var(--accent-orange);
}
.faq-item[open] .faq-ico svg { stroke: var(--white); }
.faq-body {
  padding: 0 22px 22px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ── FINAL CTA ───────────────────────────── */
.final {
  position: relative;
  background: var(--primary-blue);
  color: var(--white);
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}
.final-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 107, 0, 0.18), transparent 60%),
    radial-gradient(ellipse at 30% 80%, rgba(30, 74, 158, 0.5), transparent 50%);
  z-index: 0;
}
.final .container { position: relative; z-index: 1; }
.final-h {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(32px, 5.2vw, 60px);
  line-height: 1;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.final-sub {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.final-meta {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

/* ── FOOTER ──────────────────────────────── */
.footer {
  background: var(--primary-blue-darker);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-col h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-logo {
  display: inline-flex;
  flex-direction: column;
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1;
  margin-bottom: 16px;
}
.footer-logo span { font-size: 22px; color: var(--white); }
.footer-logo .lo-acc { font-size: 13px; color: var(--accent-orange); margin-top: 3px; letter-spacing: 1.5px; }

.footer-list { display: flex; flex-direction: column; gap: 12px; }
.footer-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}
.footer-list svg {
  width: 16px; height: 16px;
  stroke: var(--accent-orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-list a { transition: color var(--t-fast); }
.footer-list a:hover { color: var(--accent-orange); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ── MOBILE STICKY CTA ───────────────────── */
.mob-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--accent-orange);
  color: var(--white);
  padding: 16px 20px;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  z-index: 90;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.mob-cta svg { width: 18px; height: 18px; fill: currentColor; }
.mob-cta:active { background: var(--accent-orange-hover); }

/* ── REVEAL ANIMATIONS ───────────────────── */
.rv {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.rv.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .rv { opacity: 1; transform: none; }
}

/* ──────────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 16px 24px 56px;
  }
  .hero { padding-top: 72px; min-height: auto; }
  .hero-card { max-width: 480px; }

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

  .steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .step-arrow {
    transform: rotate(90deg);
    width: 100%;
    height: 30px;
  }

  .area-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-img { max-width: 480px; }

  .feature-grid { grid-template-columns: 1fr; min-height: auto; }
  .feature-img { aspect-ratio: 16 / 10; min-height: 360px; }
  .feature-img img { position: relative; height: 100%; }
  .feature-text { padding: 80px 24px; max-width: none; }

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

/* Mobile */
@media (max-width: 640px) {
  body { padding-bottom: 70px; }

  .container { padding: 0 18px; }

  .hero { padding-top: 64px; }
  .hero-inner { padding: 12px 18px 40px; gap: 32px; }
  .hero-strip {
    flex-direction: column;
    gap: 14px;
    padding: 20px;
  }
  .hs-div { display: none; }
  .hs-item { flex-direction: row; gap: 8px; }
  .hs-item span { margin-top: 0; }

  .hero-h1 { font-size: clamp(36px, 9vw, 48px); }
  .hero-card { padding: 24px 22px; }
  .hc-h { font-size: 22px; }
  .hc-phone { font-size: 30px; }

  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }

  .empathy { padding: 64px 0; }
  .services, .why, .how, .area, .about, .faq { padding: 64px 0; }
  .final { padding: 80px 0; }
  .feature-text { padding: 56px 18px; }

  .svc-grid { grid-template-columns: 1fr; gap: 18px; }
  .why-grid { grid-template-columns: 1fr; gap: 14px; }

  .area-list { grid-template-columns: 1fr; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
  }

  .about-badge {
    bottom: -16px; right: 16px;
    padding: 14px 18px;
  }
  .about-badge strong { font-size: 30px; }

  .empathy-badges { flex-direction: column; align-items: stretch; }
  .ebadge { justify-content: center; }

  .mob-cta { display: flex; }

  .pull-quote { font-size: 18px; }

  .feature-callout { font-size: 15px; }
  .step { padding: 28px 22px; }
  .step-num { font-size: 44px; }

  .btn { font-size: 14px; padding: 13px 18px; }
  .btn-lg { font-size: 14px; padding: 14px 20px; }
  .btn-xl { font-size: 15px; padding: 18px 24px; }
}

/* Small mobile */
@media (max-width: 380px) {
  .hero-h1 { font-size: 36px; }
  .hc-phone { font-size: 26px; }
  .nav-logo span { font-size: 18px; }
  .nav-logo .lo-acc { font-size: 11px; }
}

/* ──────────────────────────────────────────────
   GALÉRIA
   ────────────────────────────────────────────── */
.gallery {
  padding: 96px 0;
  background: var(--surface-light);
}
.gallery .eyebrow,
.gallery .h2,
.gallery .lede { text-align: center; margin-left: auto; margin-right: auto; }
.gallery .lede { margin-bottom: 48px; }

.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gal-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  border: none;
  padding: 0;
  cursor: pointer;
  background: var(--primary-blue);
  transition: transform var(--t), box-shadow var(--t);
}
.gal-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t);
}
.gal-item:hover img { transform: scale(1.06); }
.gal-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(13, 43, 107, 0.35) 100%);
  opacity: 0;
  transition: opacity var(--t);
  pointer-events: none;
}
.gal-item:hover::after { opacity: 1; }

.gal-hidden { display: none; }
.gal-grid.expanded .gal-hidden { display: block; }

.gal-more-wrap { text-align: center; margin-top: 36px; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(8, 30, 79, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: lbFade 200ms ease;
}
.lightbox[hidden] { display: none; }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }

.lb-img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  width: 48px; height: 48px;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast);
  font-family: var(--font-head);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  transform: scale(1.05);
}
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) scale(1.05); }
.lb-next:hover { transform: translateY(-50%) scale(1.05); }

@media (max-width: 1024px) {
  .gal-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}
@media (max-width: 640px) {
  .gallery { padding: 72px 0; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .lb-close { top: 12px; right: 12px; width: 40px; height: 40px; font-size: 22px; }
  .lb-prev { left: 8px; width: 40px; height: 40px; font-size: 22px; }
  .lb-next { right: 8px; width: 40px; height: 40px; font-size: 22px; }
}

/* ── Navbar Facebook ikon ─────────────────────── */
.nav-fb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: var(--radius);
  background: rgba(13, 43, 107, 0.08);
  border: 1px solid rgba(13, 43, 107, 0.18);
  color: var(--primary-blue);
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
  margin-right: 4px;
}
.nav-fb svg { width: 20px; height: 20px; fill: currentColor; }
.nav-fb:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: var(--white);
  transform: translateY(-1px);
}
@media (max-width: 1024px) {
  .nav-fb { display: none; }
}

/* ── Footer Facebook ─────────────────────────── */
.footer-fb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.footer-fb svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.footer-fb:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  transform: translateY(-1px);
}
