/* ══════════════════════════════════════
   VARIABLES
══════════════════════════════════════ */
:root {
  --obsidian:    #080808;
  --obsidian-2:  #0f0f0f;
  --obsidian-3:  #161616;
  --gold:        #c9963a;
  --gold-light:  #e8b86d;
  --gold-dim:    #7a5a20;
  --sapphire:    #1e3a8a;
  --sap-glow:    rgba(30,58,138,0.35);
  --sap-light:   #3b5fc0;
  --white:       #f5f3ef;
  --white-dim:   rgba(245,243,239,0.55);
  --glass:       rgba(255,255,255,0.04);
  --glass-bd:    rgba(255,255,255,0.08);
  --gold-glow:   rgba(201,150,58,0.28);
  --fd: 'Syne', sans-serif;
  --fb: 'DM Sans', sans-serif;
}

/* ══════════════════════════════════════
   RESET & BASE
══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--obsidian);
  color: var(--white);
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: auto;
}

/* ══════════════════════════════════════
   NAV — fijo, siempre visible, SEPARADO del hero
══════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: rgba(8,8,8,.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--glass-bd);
  z-index: 1000;
  transition: background .4s, box-shadow .4s;
}
#navbar.scrolled {
  background: rgba(8,8,8,.97);
  box-shadow: 0 4px 40px rgba(0,0,0,.6);
  border-bottom-color: rgba(201,150,58,.15);
}
.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.5));
  transition: filter .3s, transform .3s;
}
.nav-logo:hover .nav-logo-img {
  filter: drop-shadow(0 0 12px rgba(201,150,58,.7)) brightness(1.1);
  transform: scale(1.04);
}
.hero-logo-img {
  width: 340px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(201,150,58,.25)) drop-shadow(0 8px 24px rgba(0,0,0,.7));
}

.nav-logo {
  display: flex; align-items: center;
  text-decoration: none;
  background: transparent;
  padding: 2px 0;
}
.nav-logo svg { width: 36px; height: 36px; flex-shrink: 0; }
.nav-wordmark {
  font-family: var(--fd); font-weight: 800;
  font-size: 1rem; letter-spacing: .12em; color: var(--white);
}
.nav-wordmark span { color: var(--gold); }
.nav-links { display: flex; gap: 34px; list-style: none; }
.nav-links a {
  font-family: var(--fd); font-size: .7rem;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--white-dim); text-decoration: none;
  transition: color .25s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform .3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  font-family: var(--fd); font-size: .68rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--obsidian);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: none;
  padding: 9px 20px; text-decoration: none;
  transition: box-shadow .3s, transform .2s;
}
.nav-cta:hover {
  box-shadow: 0 0 36px rgba(201,150,58,.6), 0 0 70px rgba(201,150,58,.18);
  transform: translateY(-2px);
}

/* ── LANGUAGE SWITCHER ── */
.lang-btn {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--fd); font-size: .65rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--white-dim);
  background: transparent;
  border: 1px solid var(--glass-bd);
  padding: 7px 13px;
  cursor: pointer;
  transition: color .25s, border-color .25s, box-shadow .25s;
  white-space: nowrap;
}
.lang-btn:hover {
  color: var(--gold);
  border-color: rgba(201,150,58,.4);
  box-shadow: 0 0 14px rgba(201,150,58,.15);
}
.lang-btn svg { flex-shrink: 0; opacity: .75; transition: opacity .25s; }
.lang-btn:hover svg { opacity: 1; }
.nav-right { display: flex; align-items: center; gap: 12px; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding-top: 70px; /* compensa el nav fijo */
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 105%, rgba(30,58,138,.18) 0%, transparent 60%),
    radial-gradient(ellipse 55% 35% at 80% 18%, rgba(201,150,58,.07) 0%, transparent 50%),
    linear-gradient(160deg, #0a0a0a 0%, #080c18 50%, #0a0a0a 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,150,58,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,150,58,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 100%, black 30%, transparent 80%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 32px;
  max-width: 1100px; width: 100%;
  display: flex; flex-direction: column; align-items: center;
}
.hero-eyebrow {
  font-family: var(--fd); font-size: .63rem; font-weight: 600;
  letter-spacing: .35em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 26px; opacity: 0;
  animation: fadeUp .8s .3s forwards;
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block; height: 1px; width: 38px;
  background: linear-gradient(to right, transparent, var(--gold-dim));
}
.hero-eyebrow::after { background: linear-gradient(to left, transparent, var(--gold-dim)); }
.hero-logo-anim {
  display: flex; justify-content: center; margin-bottom: 30px;
  opacity: 0; animation: logoIn 1.1s .1s forwards;
}
.hero-logo-anim .hero-logo-wrap {
  background: #000;
  border-radius: 12px;
  padding: 10px 18px;
  display: inline-flex;
}
.hero-logo-anim svg {
  width: 76px; height: 76px;
  filter: drop-shadow(0 0 18px rgba(201,150,58,.5)) drop-shadow(0 0 50px rgba(30,58,138,.3));
}
@keyframes logoIn {
  0%   { opacity:0; transform:scale(.6) rotate(-12deg); filter:blur(8px); }
  65%  { opacity:1; transform:scale(1.05) rotate(2deg); }
  100% { opacity:1; transform:scale(1) rotate(0deg); filter:none; }
}
.hero-h1 {
  font-family: var(--fd); font-size: clamp(1.6rem, min(4.5vw, 7.5vh), 3.8rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -.025em;
  text-transform: uppercase; color: var(--white);
  margin-bottom: 22px; opacity: 0; animation: fadeUp .9s .65s forwards;
  width: 100%; text-align: center; display: block;
  padding: 0 24px; box-sizing: border-box; word-break: keep-all;
}
.hero-h1 em {
  font-style: normal;
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 45%, #a07030 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-h1 .h1-line { display: block; width: 100%; }
.hero-sub {
  font-size: 1.02rem; color: var(--white-dim); font-weight: 300;
  max-width: 520px; margin: 0 auto 36px; opacity: 0;
  animation: fadeUp .9s .9s forwards;
}
.hero-sub strong { color: var(--white); font-weight: 500; }

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
  width: 100%;
}
.hero-tags span {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
}

@media (min-width: 601px) {
  .hero-tags {
    gap: 0 16px;
  }
  .hero-tags span:not(:last-child)::after {
    content: "·";
    margin-left: 16px;
    color: var(--gold);
    font-weight: bold;
  }
}

@media (max-width: 600px) {
  .hero-tags {
    gap: 8px 10px;
    max-width: 340px;
    margin: 0 auto 16px;
  }
  .hero-tags span {
    font-size: 0.82rem;
    padding: 3px 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    color: var(--white);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
}
.hero-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .9s 1.1s forwards;
}
.btn-gold {
  font-family: var(--fd); font-size: .7rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--obsidian);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: none; padding: 15px 34px; cursor: auto; text-decoration: none;
  position: relative; overflow: hidden;
  transition: box-shadow .3s, transform .2s;
}
.btn-gold:hover {
  box-shadow: 0 0 36px rgba(201,150,58,.6), 0 0 70px rgba(201,150,58,.18);
  transform: translateY(-2px);
}
.btn-outline {
  font-family: var(--fd); font-size: .7rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--white); background: transparent;
  border: 1px solid var(--glass-bd);
  padding: 15px 34px; cursor: auto; text-decoration: none;
  transition: border-color .3s, box-shadow .3s;
}
.btn-outline:hover {
  border-color: rgba(30,58,138,.7);
  box-shadow: 0 0 18px var(--sap-glow), inset 0 0 18px rgba(30,58,138,.07);
}
.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 7px;
  opacity: 0; animation: fadeUp .8s 1.5s forwards;
}
.hero-scroll-hint span {
  font-family: var(--fd); font-size: .56rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold-dim);
}
.scroll-bar {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: barPulse 2s ease-in-out infinite;
}
@keyframes barPulse { 0%,100%{opacity:.4} 50%{opacity:1} }
@keyframes fadeUp {
  from { opacity:0; transform:translateY(26px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ══════════════════════════════════════
   TRUST TICKER
══════════════════════════════════════ */
.trust-band {
  background: var(--obsidian-3);
  border-top: 1px solid var(--glass-bd);
  border-bottom: 1px solid var(--glass-bd);
  padding: 16px 0; overflow: hidden; position: relative; z-index: 2;
}
.trust-track {
  display: flex; gap: 56px;
  animation: ticker 28s linear infinite;
  width: max-content; white-space: nowrap;
}
.trust-item {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--fd); font-size: .63rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold-dim);
}
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ══════════════════════════════════════
   SECTION HELPERS
══════════════════════════════════════ */
.s-tag {
  font-family: var(--fd); font-size: .58rem; font-weight: 700;
  letter-spacing: .35em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px; display: flex; align-items: center; gap: 11px;
}
.s-tag::before { content:''; display:block; width:26px; height:1px; background:var(--gold); }
.s-title {
  font-family: var(--fd); font-size: clamp(1.9rem,4vw,3.2rem);
  font-weight: 800; line-height: 1.08; letter-spacing: -.02em; color: var(--white);
}
.s-title em { font-style: normal; color: var(--gold); }
.wrap { max-width: 1200px; margin: 0 auto; }

/* ══════════════════════════════════════
   MANIFESTO
══════════════════════════════════════ */
#manifesto { padding: 120px 48px; position: relative; z-index: 2; }
.mani-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: end;
  margin-bottom: 72px;
}
.mani-desc {
  font-size: .95rem; color: var(--white-dim); font-weight: 300;
  line-height: 1.8; max-width: 400px;
}
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.pillar {
  background: var(--glass); border: 1px solid var(--glass-bd);
  padding: 38px 30px; position: relative; overflow: hidden;
  backdrop-filter: blur(12px);
  transition: border-color .4s, transform .3s, box-shadow .4s, filter .4s;
}
.pillar:nth-child(1) { background: linear-gradient(to top, rgba(8,8,8,0.95), rgba(8,8,8,0.3)), url('../img/pilar_legal_bg.png') center/cover; }
.pillar:nth-child(2) { background: linear-gradient(to top, rgba(8,8,8,0.95), rgba(8,8,8,0.3)), url('../img/pilar_presupuesto_bg.png') center/cover; }
.pillar:nth-child(3) { background: linear-gradient(to top, rgba(8,8,8,0.95), rgba(8,8,8,0.3)), url('../img/pilar_humano_bg.png') center/cover; }
.pillar::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform .4s;
}
.pillar:hover { border-color: rgba(201,150,58,.28); transform: translateY(-6px); box-shadow: 0 24px 56px rgba(0,0,0,.4); }
.pillar:hover::after { transform: scaleX(1); }
.p-num { font-family:var(--fd); font-size:.56rem; font-weight:700; letter-spacing:.25em; color:var(--gold-dim); margin-bottom:26px; }
.p-icon { width:42px; height:42px; margin-bottom:22px; color:var(--gold); }
.p-title { font-family:var(--fd); font-size:1.05rem; font-weight:700; letter-spacing:.03em; color:var(--white); margin-bottom:12px; }
.p-text { font-size:.86rem; color:var(--white-dim); font-weight:300; line-height:1.75; }
.p-line { display:inline-block; width:18px; height:1px; background:var(--gold); margin-top:22px; }

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
#services { padding: 120px 48px; position: relative; z-index: 2; }
.srv-head { margin-bottom: 56px; }
.srv-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; }
.srv-card {
  position: relative; height: 400px; overflow: hidden; cursor: auto;
}
.srv-bg {
  position: absolute; inset: 0;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94), filter .7s;
}
.srv-card:hover .srv-bg { transform: scale(1.06); filter: brightness(.45); }
.sc1 .srv-bg { background: linear-gradient(135deg, rgba(13,17,23,0.6), rgba(26,26,46,0.85)), url('../img/electricidad_bg.png') center/cover; }
.sc2 .srv-bg { background: linear-gradient(135deg, rgba(15,10,0,0.6), rgba(26,18,0,0.85)), url('../img/plomeria_bg.png') center/cover; }
.sc3 .srv-bg { background: linear-gradient(135deg, rgba(10,15,10,0.6), rgba(13,31,13,0.85)), url('../img/techos_bg.png') center/cover; }
.sc4 .srv-bg { background: linear-gradient(135deg, rgba(15,10,16,0.6), rgba(26,13,26,0.85)), url('../img/construccion_bg.png') center/cover; }
.srv-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,.94) 0%, rgba(8,8,8,.28) 50%, transparent 100%);
  transition: background .5s;
}
.srv-card:hover .srv-overlay { background: linear-gradient(to top, rgba(8,8,8,.98) 0%, rgba(8,8,8,.68) 100%); }
.srv-body { position: absolute; bottom:0; left:0; right:0; padding:36px; z-index:2; }
.srv-ico-wrap {
  width:50px; height:50px; border:1px solid rgba(201,150,58,.3);
  display:flex; align-items:center; justify-content:center; margin-bottom:18px;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.srv-card:hover .srv-ico-wrap { border-color:var(--gold); box-shadow:0 0 18px rgba(201,150,58,.3); background:rgba(201,150,58,.07); }
.srv-ico { width:22px; height:22px; color:var(--gold); }
.srv-name {
  font-family:var(--fd); font-size:1.4rem; font-weight:800;
  text-transform:uppercase; letter-spacing:-.01em; color:var(--white); margin-bottom:10px;
}
.srv-desc {
  font-size:.86rem; color:var(--white-dim); font-weight:300; line-height:1.7; max-width:340px;
  opacity:0; transform:translateY(10px); transition:opacity .4s .1s, transform .4s .1s;
}
.srv-card:hover .srv-desc { opacity:1; transform:translateY(0); }
.srv-more {
  display:inline-flex; align-items:center; gap:7px; margin-top:18px;
  font-family:var(--fd); font-size:.6rem; font-weight:700; letter-spacing:.2em;
  text-transform:uppercase; color:var(--gold); text-decoration:none;
  opacity:0; transform:translateY(6px); transition:opacity .4s .2s, transform .4s .2s, gap .2s;
}
.srv-card:hover .srv-more { opacity:1; transform:translateY(0); }
.srv-more:hover { gap:13px; }

/* ══════════════════════════════════════
   WHY US
══════════════════════════════════════ */
#why { padding: 120px 48px; position: relative; z-index: 2; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.why-visual { position: relative; }
.why-watermark {
  position:absolute; inset:-30px; pointer-events:none; user-select:none;
  background: url('../img/rec_watermark_logo.png') center/contain no-repeat;
  opacity: 0.12; mix-blend-mode: screen; z-index: 1;
}
.why-cards { position:relative; z-index:2; padding:16px; }
.why-stat {
  background:var(--glass); border:1px solid var(--glass-bd); padding:26px 28px;
  margin-bottom:14px; display:flex; align-items:center; gap:22px;
  backdrop-filter:blur(12px); transition:border-color .3s, transform .3s;
}
.why-stat:hover { border-color:rgba(201,150,58,.22); transform:translateX(7px); }
.wn { font-family:var(--fd); font-size:2rem; font-weight:800; color:var(--gold); flex-shrink:0; min-width:66px; }
.wl { font-size:.88rem; color:var(--white-dim); font-weight:300; }
.wl strong { display:block; color:var(--white); font-weight:500; font-size:.95rem; }
.why-body { font-size:.93rem; color:var(--white-dim); font-weight:300; line-height:1.85; margin-bottom:18px; }
.why-body strong { color:var(--gold); font-weight:500; }
.why-quote {
  border-left:2px solid var(--gold); padding:14px 0 14px 22px; margin:28px 0;
}
.why-quote p { font-family:var(--fd); font-size:1.05rem; font-weight:700; color:var(--white); line-height:1.45; }
.why-quote span { display:block; font-size:.76rem; color:var(--gold); font-weight:400; margin-top:5px; letter-spacing:.1em; text-transform:uppercase; font-family:var(--fb); }

/* ══════════════════════════════════════
   PROCESS
══════════════════════════════════════ */
#process { padding: 120px 48px; position: relative; z-index: 2; }
.proc-head { margin-bottom: 72px; }
.proc-steps { display:grid; grid-template-columns:repeat(4,1fr); position:relative; }
.proc-steps::before {
  content:''; position:absolute; top:27px; left:12%; right:12%; height:1px;
  background:linear-gradient(90deg,var(--gold-dim),rgba(201,150,58,.18),var(--gold-dim));
}
.proc-step { padding:0 22px; text-align:center; }
.proc-dot {
  width:54px; height:54px; border:1px solid var(--gold-dim);
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 26px; background:var(--obsidian);
  transition:border-color .3s, box-shadow .3s;
}
.proc-dot:hover { border-color:var(--gold); box-shadow:0 0 22px rgba(201,150,58,.28); }
.proc-num { font-family:var(--fd); font-size:.95rem; font-weight:800; color:var(--gold); }
.proc-title { font-family:var(--fd); font-size:.84rem; font-weight:700; text-transform:uppercase; letter-spacing:.07em; color:var(--white); margin-bottom:9px; }
.proc-text { font-size:.8rem; color:var(--white-dim); font-weight:300; line-height:1.7; }

/* ══════════════════════════════════════
   CTA
══════════════════════════════════════ */
#cta { padding: 140px 48px; text-align:center; position:relative; z-index:2; overflow:hidden; }
#cta::before {
  content:''; position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  width:580px; height:580px;
  background:radial-gradient(ellipse,rgba(30,58,138,.14) 0%,transparent 70%);
  pointer-events:none;
}
#cta::after {
  content:''; position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  width:380px; height:380px;
  background:radial-gradient(ellipse,rgba(201,150,58,.07) 0%,transparent 70%);
  pointer-events:none;
}
.cta-inner { position:relative; z-index:2; max-width:680px; margin:0 auto; }
.cta-h2 { font-family:var(--fd); font-size:clamp(2.1rem,5vw,4rem); font-weight:800; letter-spacing:-.02em; text-transform:uppercase; line-height:1.05; color:var(--white); margin-bottom:18px; }
.cta-h2 em { font-style:normal; color:var(--gold); }
.cta-sub { font-size:.97rem; color:var(--white-dim); font-weight:300; margin-bottom:44px; line-height:1.7; }
.cta-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.cta-form {
  margin-top: 18px;
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  border: 1px solid rgba(201,150,58,.16);
  box-shadow: 0 30px 70px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.04);
  text-align: left;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-field-full {
  margin-top: 18px;
}
.form-label {
  font-family: var(--fd);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--white);
}
.form-input {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(201,150,58,.16);
  background: rgba(255,255,255,.04);
  color: var(--white);
  font-family: var(--fb);
  font-size: 1rem;
  padding: 16px 18px;
  outline: none;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.form-input::placeholder {
  color: rgba(245,243,239,.42);
}
.form-input:focus {
  border-color: rgba(201,150,58,.45);
  background: rgba(255,255,255,.06);
  box-shadow: 0 0 0 4px rgba(201,150,58,.08);
}
.form-select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.form-select option {
  color: #111;
}
.form-textarea {
  min-height: 170px;
  resize: vertical;
}
.cta-form-actions {
  justify-content: flex-start;
  margin-top: 24px;
}
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.form-helper {
  margin-top: 18px;
  color: var(--white-dim);
  font-size: .95rem;
  line-height: 1.7;
}
.divider {
  display:flex; align-items:center; gap:14px; margin:52px 0 36px;
  font-family:var(--fd); font-size:.56rem; letter-spacing:.3em; text-transform:uppercase; color:var(--gold-dim);
}
.divider::before,.divider::after { content:''; flex:1; height:1px; background:var(--glass-bd); }
.contacts { display:flex; justify-content:center; gap:38px; flex-wrap:wrap; }
.contact-item { display:flex; flex-direction:column; align-items:center; gap:5px; }
.c-label { font-family:var(--fd); font-size:.56rem; font-weight:700; letter-spacing:.25em; text-transform:uppercase; color:var(--gold-dim); }
.c-val { font-family:var(--fd); font-size:1rem; font-weight:700; color:var(--white); text-decoration:none; transition:color .2s; }
.c-val:hover { color:var(--gold); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background:var(--obsidian-3); border-top:1px solid var(--glass-bd);
  padding:36px 48px; display:flex; align-items:center; justify-content:space-between;
  position:relative; z-index:2;
}
.foot-copy { font-size:.76rem; color:rgba(245,243,239,.3); font-weight:300; }
.foot-copy strong { color:var(--gold-dim); font-weight:500; }
.foot-links { display:flex; gap:26px; list-style:none; }
.foot-links a { font-family:var(--fd); font-size:.58rem; font-weight:600; letter-spacing:.18em; text-transform:uppercase; color:rgba(245,243,239,.3); text-decoration:none; transition:color .2s; }
.foot-links a:hover { color:var(--gold); }
.foot-links svg { width: 18px; height: 18px; transition: transform .3s; }
.foot-links a:hover svg { transform: scale(1.15) translateY(-2px); }
.foot-badge { display:flex; align-items:center; gap:7px; font-family:var(--fd); font-size:.58rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:rgba(201,150,58,.45); }

/* ══════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.5);
  z-index: 1000;
  transition: transform .3s, box-shadow .3s;
  animation: waPulse 2s infinite;
}
.wa-float svg { width: 32px; height: 32px; }
.wa-float:hover {
  transform: scale(1.1) translateY(-4px);
  animation: none;
  box-shadow: 0 10px 30px rgba(37,211,102,.6);
}
@keyframes waPulse {
  0% { box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,0); }
}

/* ══════════════════════════════════════
   REVEAL ON SCROLL
══════════════════════════════════════ */
.reveal { opacity:0; transform:translateY(28px); transition:opacity .7s ease, transform .7s ease; }
.reveal.on { opacity:1; transform:translateY(0); }
}
.divider::before,.divider::after { content:''; flex:1; height:1px; background:var(--glass-bd); }
.contacts { display:flex; justify-content:center; gap:38px; flex-wrap:wrap; }
.contact-item { display:flex; flex-direction:column; align-items:center; gap:5px; }
.c-label { font-family:var(--fd); font-size:.56rem; font-weight:700; letter-spacing:.25em; text-transform:uppercase; color:var(--gold-dim); }
.c-val { font-family:var(--fd); font-size:1rem; font-weight:700; color:var(--white); text-decoration:none; transition:color .2s; }
.c-val:hover { color:var(--gold); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background:var(--obsidian-3); border-top:1px solid var(--glass-bd);
  padding:36px 48px; display:flex; align-items:center; justify-content:space-between;
  position:relative; z-index:2;
}
.foot-copy { font-size:.76rem; color:rgba(245,243,239,.3); font-weight:300; }
.foot-copy strong { color:var(--gold-dim); font-weight:500; }
.foot-links { display:flex; gap:26px; list-style:none; }
.foot-links a { font-family:var(--fd); font-size:.58rem; font-weight:600; letter-spacing:.18em; text-transform:uppercase; color:rgba(245,243,239,.3); text-decoration:none; transition:color .2s; }
.foot-links a:hover { color:var(--gold); }
.foot-links svg { width: 18px; height: 18px; transition: transform .3s; }
.foot-links a:hover svg { transform: scale(1.15) translateY(-2px); }
.foot-badge { display:flex; align-items:center; gap:7px; font-family:var(--fd); font-size:.58rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:rgba(201,150,58,.45); }

/* ══════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.5);
  z-index: 1000;
  transition: transform .3s, box-shadow .3s;
  animation: waPulse 2s infinite;
}
.wa-float svg { width: 32px; height: 32px; }
.wa-float:hover {
  transform: scale(1.1) translateY(-4px);
  animation: none;
  box-shadow: 0 10px 30px rgba(37,211,102,.6);
}
@keyframes waPulse {
  0% { box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,0); }
}

/* ══════════════════════════════════════
   REVEAL ON SCROLL
══════════════════════════════════════ */
.reveal { opacity:0; transform:translateY(28px); transition:opacity .7s ease, transform .7s ease; }
.reveal.on { opacity:1; transform:translateY(0); }
.d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s} .d4{transition-delay:.4s}

/* ══════════════════════════════════════
   MOBILE
══════════════════════════════════════ */
@media(max-width:900px){
  #navbar{padding:0 20px;}
  .nav-links{display:none;}
  #manifesto,#services,#why,#process,#cta{padding:80px 20px;}
  .mani-head{grid-template-columns:1fr;gap:20px;}
  .pillars{grid-template-columns:1fr;}
  .srv-grid{grid-template-columns:1fr;}
  .srv-card{height:300px;}
  .srv-body { padding: 24px; }
  .srv-name { font-size: 1.15rem; letter-spacing: -0.015em; }
  .why-grid{grid-template-columns:1fr;gap:52px;}

    .proc-steps{grid-template-columns:1fr 1fr;row-gap:44px;}
    .proc-steps::before{display:none;}
    .cta-form{padding:24px;}
    .form-grid{grid-template-columns:1fr;}

  footer{flex-direction:column;gap:20px;text-align:center;}
  .foot-links{justify-content:center;}
}

@media(max-width:600px){
  .hero-content { padding: 0 16px; }
  .hero-h1 { padding: 0 8px; font-size: clamp(1.4rem, 8vw, 2.2rem); }
  .nav-wordmark { display: none; }
}
