/* ═══════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════ */
:root {
  --bg-deepest: #0F0F14;
  --bg-dark:    #171720;
  --bg-mid:     #1D1D26;
  --bg-card:    #24242E;
  --border:     rgba(255,255,255,0.07);
  --border-lgt: rgba(255,255,255,0.11);

  --orange:        #FF6200;
  --orange-light:  #FF8840;
  --orange-dim:    rgba(255,98,0,0.09);
  --orange-border: rgba(255,98,0,0.32);

  --green-wa:      #25D366;
  --green-wa-hov:  #2ee872;

  --white:         #FFFFFF;
  --text-1:        #F0F0F4;
  --text-2:        #8A8A9A;
  --text-3:        #505060;

  --font-display:  'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body:     'DM Sans', 'Segoe UI', sans-serif;

  --nav-h:         100px;
  --section-py:    clamp(64px, 9vw, 120px);
  --max-w:         1200px;
  --px:            clamp(20px, 5vw, 40px);

  --r-sm: 6px;
  --r:    12px;
  --r-lg: 20px;

  --shadow-card:   0 4px 28px rgba(0,0,0,0.45);
  --shadow-orange: 0 0 32px rgba(255,98,0,0.28);
  --t: 0.24s cubic-bezier(.4,0,.2,1);
}

/* ═══════════════════════════════════════
   RESET
═══════════════════════════════════════ */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-deepest);
  color: var(--text-1);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration:none; color:inherit; }
svg { display:block; }

/* ═══════════════════════════════════════
   UTILITIES
═══════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 14px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-2);
  max-width: 520px;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-header .section-desc { margin-inline: auto; }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--r-sm);
  cursor: pointer;
  border: none;
  transition: var(--t);
  white-space: nowrap;
}
.btn--lg  { font-size: 0.95rem; padding: 13px 26px; }
.btn--xl  { font-size: 1.05rem; padding: 15px 32px; }
.btn--primary  { background: var(--orange); color: #fff; }
.btn--primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: var(--shadow-orange); }
.btn--whatsapp { background: var(--green-wa); color: #fff; }
.btn--whatsapp:hover { background: var(--green-wa-hov); transform: translateY(-2px); box-shadow: 0 0 28px rgba(37,211,102,0.3); }

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.nav.scrolled {
  background: rgba(8,8,10,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 140px;
  width: auto;
  display: block;
  object-fit: contain;
  padding: 10px 0;
}
.footer__logo-img {
  height: 80px;
  width: auto;
  display: block;
  margin-bottom: 10px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--t);
  letter-spacing: 0.02em;
}
.nav__links a:hover { color: var(--white); }
.nav__call-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 10px 18px;
  border-radius: var(--r-sm);
  transition: var(--t);
  flex-shrink: 0;
}
.nav__call-btn:hover { background: var(--orange-light); box-shadow: var(--shadow-orange); }

@media (max-width: 768px) { .nav__links { display: none; } }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--bg-deepest);
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Noise overlay */
.hero__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.68' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
}

/* Ghost "H24" */
.hero__bg-text {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(200px, 30vw, 440px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.035);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

/* Bottom fade — blends into white services section */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent, var(--bg-deepest) 80%);
  pointer-events: none;
}

/* Left orange stripe */
.hero::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18%; bottom: 18%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--orange), transparent);
  border-radius: 0 2px 2px 0;
  opacity: 0.6;
}

.hero__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-block: clamp(56px, 8vw, 96px);
  position: relative;
  z-index: 1;
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-dim);
  border: 1px solid var(--orange-border);
  color: var(--orange-light);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
  width: fit-content;
  letter-spacing: 0.06em;
}
.hero__badge-dot {
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.45; transform:scale(.75); }
}

/* Title */
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 8.5vw, 7.2rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 22px;
}
.hero__title-accent { color: var(--orange); display: block; }

/* Subtitle */
.hero__subtitle {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 34px;
  max-width: 460px;
}
.hero__subtitle strong { color: var(--white); font-weight: 600; }

/* Actions */
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

/* Stats */
.hero__stats {
  display: flex;
  align-items: center;
  padding: 18px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  width: fit-content;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: 22px;
}
.hero__stat:first-child { padding-left: 0; }
.hero__stat:last-child  { padding-right: 0; }
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.03em;
  color: var(--orange);
  line-height: 1;
}
.hero__stat span {
  font-size: 0.7rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.hero__stat-divider {
  width: 1px; height: 34px;
  background: var(--border-lgt);
  flex-shrink: 0;
}

/* Lock visual */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero__lock-wrap {
  position: relative;
  width: 210px; height: 270px;
}
.hero__lock-svg {
  width: 100%; height: 100%;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 40px rgba(255,98,0,0.18));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
.hero__lock-glow {
  position: absolute;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,98,0,0.18) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.hero__lock-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: ring-pulse 4s ease-in-out infinite;
}
.hero__lock-ring--1 { width: 260px; height: 260px; border: 1px solid rgba(255,98,0,.14); animation-delay: 0s; }
.hero__lock-ring--2 { width: 340px; height: 340px; border: 1px solid rgba(255,98,0,.07); animation-delay: 1.5s; }
@keyframes ring-pulse {
  0%,100% { opacity:.4; transform:translate(-50%,-50%) scale(1); }
  50%      { opacity:.85; transform:translate(-50%,-50%) scale(1.04); }
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-3);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 1;
}
.hero__scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--text-3), transparent);
  animation: scroll-drop 2.2s ease-in-out infinite;
}
@keyframes scroll-drop {
  0%   { transform: scaleY(0); transform-origin: top; }
  49%  { transform: scaleY(1); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Hero responsive */
@media (max-width: 880px) {
  .hero__layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0;
    padding-block: clamp(52px, 9vw, 80px);
  }
  .hero__badge        { margin-inline: auto; }
  .hero__subtitle     { margin-inline: auto; max-width: 480px; }
  .hero__actions      { justify-content: center; }
  .hero__stats        { margin-inline: auto; }
  .hero__title {
    font-size: clamp(4.2rem, 18vw, 7rem);
  }
  /* H24 ghost visible on mobile as centered decorative */
  .hero__bg-text {
    display: block;
    right: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(180px, 52vw, 340px);
    -webkit-text-stroke: 1px rgba(255,255,255,0.045);
  }
  /* Hide lock visual — use space for content */
  .hero__visual { display: none; }
  /* Scroll hint hidden on mobile (sticky CTA replaces it) */
  .hero__scroll-hint { display: none; }
}

@media (max-width: 540px) {
  .hero__layout { padding-block: clamp(44px, 8vw, 64px); }
  .hero__badge { font-size: 0.72rem; padding: 6px 13px; }
  .hero__title { font-size: clamp(3.8rem, 20vw, 6rem); margin-bottom: 16px; }
  .hero__subtitle { font-size: 0.92rem; margin-bottom: 26px; }

  /* Actions: full-width column for maximum tap area */
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 10px;
    margin-bottom: 32px;
  }
  .hero__actions .btn {
    justify-content: center;
    padding: 15px 20px;
    font-size: 1rem;
    border-radius: var(--r);
  }

  /* Stats: single tight row that never wraps */
  .hero__stats {
    width: 100%;
    padding: 14px 10px;
    gap: 0;
    justify-content: space-evenly;
  }
  .hero__stat { padding-inline: 4px; flex: 1; }
  .hero__stat-num { font-size: 1.65rem; }
  .hero__stat span { font-size: 0.62rem; }
  .hero__stat-divider { height: 28px; }
}

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
.services {
  padding-block: var(--section-py);
  background: #ffffff;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.services .section-title { color: #0F0F14; }
.services .section-desc  { color: #60607A; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.service-card {
  background: #f6f6fb;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(255,98,0,0.06), transparent 60%);
  opacity: 0;
  transition: opacity var(--t);
  pointer-events: none;
}
.service-card:hover {
  border-color: var(--orange-border);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  background: #fff;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover .service-card__icon {
  color: var(--orange);
  background: rgba(255,98,0,0.08);
  border-color: var(--orange-border);
}
.service-card__icon {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--r);
  margin-bottom: 18px;
  color: #60607A;
  transition: var(--t);
}
.service-card__icon svg { width: 28px; height: 28px; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: #0F0F14;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.875rem;
  color: #60607A;
  line-height: 1.65;
  margin-bottom: 18px;
}
.service-card__tag {
  display: inline-flex;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,98,0,0.08);
  border: 1px solid var(--orange-border);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ═══════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════ */
.why {
  padding-block: var(--section-py);
  background: var(--bg-deepest);
  position: relative;
}
.why::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--orange) 30%, var(--orange) 70%, transparent);
  opacity: 0.4;
}
.why__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}
.why__left { position: sticky; top: calc(var(--nav-h) + 24px); }
.why__left .section-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.0;
  margin-bottom: 18px;
}
.why__desc {
  color: var(--text-2);
  font-size: 0.92rem;
  line-height: 1.78;
  margin-bottom: 32px;
}
.why__right { display: flex; flex-direction: column; gap: 2px; }
.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  border-radius: var(--r);
  transition: background var(--t);
}
.why-item:hover { background: var(--bg-card); }
.why-item__icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: var(--orange-dim);
  border: 1px solid var(--orange-border);
  border-radius: var(--r-sm);
  color: var(--orange);
  flex-shrink: 0;
}
.why-item__icon svg { width: 19px; height: 19px; }
.why-item h4 { font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 5px; }
.why-item p  { font-size: 0.855rem; color: var(--text-2); line-height: 1.65; }

@media (max-width: 768px) {
  .why__layout { grid-template-columns: 1fr; }
  .why__left   { position: static; text-align: center; }
  .why__left .btn { margin-inline: auto; display: inline-flex; }
}

/* ═══════════════════════════════════════
   AREA
═══════════════════════════════════════ */
.area { padding-block: var(--section-py); background: #f4f4f9; }
.area .section-title { color: #0F0F14; }
.area .section-desc  { color: #60607A; }
.area__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.area__map-placeholder {
  position: relative;
  height: 360px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.area__map-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
  text-align: center;
}
.area__map-icon { width: 64px; height: 64px; }
.area__map-label { font-size: 1rem; font-weight: 600; color: #0F0F14; }
.area__map-sublabel { font-size: 0.8rem; color: #60607A; }
.area__map-rings {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.area__ring {
  position: absolute;
  border-radius: 50%;
  animation: area-ring 4.5s ease-in-out infinite;
}
.area__ring--1 { width: 130px; height: 130px; border: 1px solid rgba(255,98,0,.2);  animation-delay: 0s; }
.area__ring--2 { width: 230px; height: 230px; border: 1px solid rgba(255,98,0,.1);  animation-delay: 0.9s; }
.area__ring--3 { width: 360px; height: 360px; border: 1px solid rgba(255,98,0,.05); animation-delay: 1.8s; }
@keyframes area-ring {
  0%,100% { opacity:.4; transform:scale(1); }
  50%      { opacity:.9; transform:scale(1.04); }
}
.area__address-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 1rem; font-weight: 600; color: #0F0F14;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.area__detail {
  font-size: 0.92rem;
  color: #60607A;
  line-height: 1.78;
  margin-bottom: 26px;
}
.area__zones {
  margin-top: 40px;
}
.area__zones-label {
  font-size: 0.78rem;
  color: #f4f4f9;
  margin-bottom: 6px;
}
.area__zones-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.area__zones-list span {
  font-size: 0.75rem;
  background: #f4f4f9;
  border: 1px solid #f4f4f9;
  border-radius: 20px;
  padding: 3px 10px;
  color: #f4f4f9;
  white-space: nowrap;
  user-select: none;
}
.area__callout {
  background: rgba(255,98,0,0.07);
  border: 1px solid var(--orange-border);
  border-radius: var(--r);
  padding: 18px 22px;
  font-size: 0.875rem;
  color: #555565;
  line-height: 1.65;
}
.area__callout strong { display: block; color: var(--orange); font-size: 0.95rem; margin-bottom: 5px; }
.area__callout em { font-style: normal; color: #0F0F14; font-weight: 600; }

@media (max-width: 768px) {
  .area__content { grid-template-columns: 1fr; }
  .area__map-placeholder { height: 280px; }
}

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact { padding-block: clamp(56px, 8vw, 96px); background: var(--bg-deepest); }
.contact__inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(30px, 5vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  position: relative;
  overflow: hidden;
}
.contact__inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--orange), transparent);
}
.contact__inner::after {
  content: '';
  position: absolute;
  top: -60%; left: -8%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,98,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.contact__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 8px;
}
.contact__subtitle { color: var(--text-2); font-size: 0.92rem; max-width: 360px; }
.contact__actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }
.contact__btn {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 22px;
  border-radius: var(--r);
  transition: var(--t);
  min-width: 170px;
}
.contact__btn--call { background: var(--orange); color: #fff; }
.contact__btn--call:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: var(--shadow-orange); }
.contact__btn--wa   { background: var(--green-wa); color: #fff; }
.contact__btn--wa:hover { background: var(--green-wa-hov); transform: translateY(-2px); box-shadow: 0 0 28px rgba(37,211,102,.3); }
.contact__btn div { display: flex; flex-direction: column; gap: 1px; }
.contact__btn span { font-size: 0.7rem; opacity: .75; letter-spacing: .06em; }
.contact__btn strong { font-size: 0.95rem; font-weight: 700; }

@media (max-width: 860px) {
  .contact__inner { flex-direction: column; text-align: center; }
  .contact__subtitle { margin-inline: auto; }
  .contact__actions { justify-content: center; }
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--bg-deepest);
  border-top: 1px solid var(--border);
  padding-block: 30px;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__brand { display: flex; flex-direction: column; gap: 2px; }
.footer__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  color: var(--white);
}
.footer__tagline { font-size: 0.72rem; color: var(--white); letter-spacing: .05em; }
.footer__address { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--white); }
.footer__copy { font-size: 0.75rem; color: var(--white); }

@media (max-width: 580px) {
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__address { justify-content: center; }
}

/* ═══════════════════════════════════════
   STICKY MOBILE CTA
═══════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: none;
  z-index: 90;
  padding: 10px 14px;
  background: rgba(8,8,10,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  gap: 10px;
}
.sticky-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 0.92rem;
  transition: var(--t);
}
.sticky-cta__btn--call { background: var(--orange); color: #fff; }
.sticky-cta__btn--call:hover { background: var(--orange-light); }
.sticky-cta__btn--wa   { background: var(--green-wa); color: #fff; }
.sticky-cta__btn--wa:hover { background: var(--green-wa-hov); }

@media (max-width: 768px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 72px; }
}

/* ═══════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════ */
[data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-animate="fade-right"] {
  transform: translateX(-22px);
}
[data-animate].is-visible {
  opacity: 1;
  transform: none;
}
