:root {
  --bg: #050510;
  --surface: rgba(255,255,255,0.04);
  --surface-2: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(212,165,116,0.4);
  --gold: #D4A574;
  --gold-dark: #B8894F;
  --text: #E2E2E8;
  --text-dim: rgba(255,255,255,0.5);
  --accent-1: #D4A574;
  --accent-2: #00C9A7;
  --max-w: 1200px;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;overflow-x:hidden}
html[lang="en"] .es{display:none !important}
html[lang="es"] .en{display:none !important}

body{
  font-family:'Inter',-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  line-height:1.6;
  color:var(--text);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

a{color:var(--gold);text-decoration:none;transition:color .2s}
a:hover{color:#fff}

:focus-visible{outline:2px solid var(--gold);outline-offset:2px;border-radius:4px}
:focus:not(:focus-visible){outline:none}

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

h1,h2,h3,h4{font-weight:700;line-height:1.15;color:#fff;letter-spacing:-.03em}
h1{font-size:clamp(2.5rem,6vw,5rem)}
h2{font-size:clamp(1.75rem,4vw,3rem);margin-bottom:.75rem}
h3{font-size:1.25rem;margin-bottom:.5rem}
p{margin-bottom:1rem;color:var(--text-dim)}

.container{max-width:var(--max-w);margin:0 auto;padding:0 1.5rem}

/* GRAIN OVERLAY */
.grain{
  position:fixed;top:0;left:0;right:0;bottom:0;
  pointer-events:none;z-index:9999;
  opacity:.035;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat:repeat;
  background-size:128px 128px;
}

/* AURORA MESH */
.aurora{
  position:fixed;top:0;left:0;right:0;bottom:0;
  pointer-events:none;z-index:0;overflow:hidden;
}
.aurora-layer{
  position:absolute;
  width:200%;
  height:200%;
  top:-50%;
  left:-50%;
  border-radius:50%;
  filter:blur(80px);
  opacity:.35;
  will-change:transform;
}
.a1{
  background:radial-gradient(circle at 30% 40%,rgba(212,165,116,.4) 0%,rgba(0,201,167,.15) 40%,transparent 70%);
  animation:aurora1 20s ease-in-out infinite;
}
.a2{
  background:radial-gradient(circle at 70% 60%,rgba(0,201,167,.25) 0%,rgba(212,165,116,.1) 40%,transparent 70%);
  animation:aurora2 25s ease-in-out infinite;
}
.a3{
  background:radial-gradient(circle at 50% 30%,rgba(212,165,116,.2) 0%,transparent 60%);
  animation:aurora3 18s ease-in-out infinite;
}
@keyframes aurora1{
  0%,100%{transform:translate(0,0) scale(1)}
  33%{transform:translate(5%,-8%) scale(1.05)}
  66%{transform:translate(-3%,5%) scale(.95)}
}
@keyframes aurora2{
  0%,100%{transform:translate(0,0) scale(1)}
  33%{transform:translate(-8%,3%) scale(1.1)}
  66%{transform:translate(4%,-6%) scale(.9)}
}
@keyframes aurora3{
  0%,100%{transform:translate(0,0) scale(1)}
  50%{transform:translate(6%,4%) scale(1.08)}
}

/* HEADER */
.header{
  position:sticky;top:0;z-index:100;
  background:rgba(5,5,16,.8);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid var(--border);
}
.header-inner{
  display:flex;justify-content:space-between;align-items:center;
  padding:1rem 1.5rem;max-width:var(--max-w);margin:0 auto;
}
.logo{font-size:1.2rem;font-weight:800;color:#fff;letter-spacing:-.02em}
.logo span{color:var(--gold)}
.nav{display:flex;gap:2rem;align-items:center}
.nav a{color:rgba(255,255,255,.7);font-weight:500;font-size:.9rem;transition:color .2s}
.nav a:hover{color:#fff}
.btn-header-cta{
  display:inline-block;padding:.45rem 1.1rem;
  background:var(--gold);color:var(--bg)!important;
  border-radius:999px;font-size:.85rem;font-weight:700;
  letter-spacing:-.01em;transition:all .2s;white-space:nowrap;
}
.btn-header-cta:hover{background:#fff;color:var(--bg)!important;box-shadow:0 4px 20px rgba(212,165,116,.3)}
.lang-toggle{
  display:flex;gap:.25rem;
  background:rgba(255,255,255,.06);padding:.25rem;
  border-radius:999px;border:1px solid var(--border);
}
.lang-toggle button{
  background:none;border:none;padding:.5rem .85rem;
  min-width:44px;min-height:44px;border-radius:999px;
  cursor:pointer;font-size:.85rem;font-weight:600;
  color:rgba(255,255,255,.5);transition:all .2s;
}
.lang-toggle button.active{background:var(--gold);color:var(--bg)}
.nav-toggle{
  display:none;background:none;border:none;cursor:pointer;
  padding:10px;min-width:44px;min-height:44px;
  flex-direction:column;align-items:center;justify-content:center;gap:5px;z-index:1001;
}
.nav-toggle span{display:block;width:24px;height:2.5px;background:#fff;border-radius:2px;transition:transform .3s,opacity .3s}
.nav-toggle.active span:nth-child(1){transform:translateY(7.5px) rotate(45deg)}
.nav-toggle.active span:nth-child(2){opacity:0}
.nav-toggle.active span:nth-child(3){transform:translateY(-7.5px) rotate(-45deg)}

/* HERO */
.hero{
  position:relative;padding:8rem 0 6rem;
  overflow:hidden;z-index:1;
  min-height:90vh;display:flex;align-items:center;
}
.hero-orb{
  position:absolute;top:50%;left:50%;
  transform:translate(-50%,-50%);
  width:600px;height:600px;
  background:radial-gradient(circle,rgba(212,165,116,.12) 0%,rgba(0,201,167,.06) 40%,transparent 70%);
  border-radius:50%;filter:blur(60px);
  animation:orb-pulse 8s ease-in-out infinite;
  pointer-events:none;
}
@keyframes orb-pulse{
  0%,100%{transform:translate(-50%,-50%) scale(1);opacity:.6}
  50%{transform:translate(-50%,-50%) scale(1.2);opacity:1}
}
.hero-inner{
  position:relative;z-index:2;text-align:center;
  max-width:900px;margin:0 auto;
}
.hero-badge{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:.4rem 1rem .4rem .75rem;
  background:var(--surface);border:1px solid var(--border);
  border-radius:999px;font-size:.8rem;font-weight:600;
  color:var(--gold);letter-spacing:.08em;text-transform:uppercase;
  margin-bottom:2rem;
}
.pulse-dot{
  width:8px;height:8px;border-radius:50%;
  background:var(--accent-2);
  animation:pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot{
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:.5;transform:scale(1.5)}
}
.hero h1{
  margin-bottom:1.5rem;
  font-weight:800;letter-spacing:-.04em;
}
.gradient-text{
  background:linear-gradient(135deg,var(--accent-1) 0%,var(--accent-2) 50%,var(--accent-1) 100%);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
  background-clip:text;font-style:italic;
  background-size:200% 200%;
  animation:gradient-shift 4s ease infinite;
}
@keyframes gradient-shift{
  0%,100%{background-position:0% 50%}
  50%{background-position:100% 50%}
}
.hero-sub{
  font-size:1.15rem;color:var(--text-dim);
  max-width:560px;margin:0 auto 2.5rem;
}
.hero-actions{
  display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;
  margin-bottom:3rem;
}

/* BUTTONS */
.btn{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:.85rem 1.75rem;border-radius:999px;
  font-weight:600;font-size:1rem;
  transition:all .3s cubic-bezier(.175,.885,.32,1.275);
  border:2px solid transparent;cursor:pointer;
  text-decoration:none;
}
.btn-primary{
  background:linear-gradient(135deg,var(--accent-1),var(--gold-dark));
  color:var(--bg);font-weight:700;
}
.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 30px rgba(212,165,116,.35);
  color:var(--bg);
}
.btn-ghost{
  background:transparent;color:var(--text);
  border-color:var(--border);
}
.btn-ghost:hover{
  border-color:var(--gold);color:var(--gold);
  background:rgba(212,165,116,.05);
}

/* TRUST ROW */
.trust-row{
  display:flex;gap:.75rem;justify-content:center;flex-wrap:wrap;
}
.trust-pill{
  padding:.35rem .85rem;
  background:var(--surface);border:1px solid var(--border);
  border-radius:999px;font-size:.75rem;font-weight:600;
  color:rgba(255,255,255,.7);letter-spacing:.02em;
  transition:all .3s;
}
.trust-pill:hover{
  border-color:var(--border-hover);color:var(--gold);
  background:var(--surface-2);
}

/* MARQUEE */
.marquee-strip{
  position:relative;z-index:1;
  padding:1.5rem 0;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  overflow:hidden;
}
.marquee{overflow:hidden}
.marquee-inner{
  display:flex;gap:2rem;align-items:center;
  white-space:nowrap;
  animation:scroll 30s linear infinite;
  width:max-content;
}
.marquee-item{display:flex;gap:.5rem;align-items:center;font-size:.9rem;color:var(--text-dim)}
.marquee-item strong{color:var(--gold);font-size:1.1rem;font-weight:800}
.marquee-sep{color:var(--gold);font-size:.6rem;opacity:.5}
@keyframes scroll{
  0%{transform:translateX(0)}
  100%{transform:translateX(-50%)}
}

/* SECTIONS */
.section{padding:6rem 0;position:relative;z-index:1}
.section-glow::before{
  content:'';position:absolute;top:0;left:0;right:0;bottom:0;
  background:radial-gradient(ellipse at 50% 0%,rgba(212,165,116,.06) 0%,transparent 60%);
  pointer-events:none;
}
.section-header{text-align:center;max-width:700px;margin:0 auto 3.5rem;position:relative;z-index:2}
.label{
  color:var(--gold);font-size:.8rem;font-weight:700;
  text-transform:uppercase;letter-spacing:.12em;margin-bottom:.75rem;
}

/* BENTO GRID */
.bento{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  grid-template-rows:auto auto;
  gap:1rem;
  position:relative;z-index:2;
}
.bento-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:1.25rem;
  padding:2rem;
  transition:all .4s cubic-bezier(.175,.885,.32,1.275);
  display:flex;flex-direction:column;
  text-decoration:none;color:inherit;
  position:relative;overflow:hidden;
}
.bento-card::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(circle at var(--mx,50%) var(--my,50%),rgba(212,165,116,.06) 0%,transparent 50%);
  opacity:0;transition:opacity .4s;pointer-events:none;
}
.bento-card:hover::before{opacity:1}
.bento-card:hover{
  border-color:var(--border-hover);
  transform:translateY(-4px);
  box-shadow:0 20px 60px rgba(0,0,0,.4);
  color:inherit;
}
.bento-wide{grid-column:span 2;grid-row:span 1}
.bento-accent{
  background:linear-gradient(135deg,rgba(212,165,116,.1) 0%,rgba(0,201,167,.05) 100%);
  border-color:rgba(212,165,116,.2);
}
.bento-emoji{font-size:2.5rem;margin-bottom:1rem;line-height:1}
.bento-content{flex:1}
.bento-content h3{margin-bottom:.5rem}
.bento-content p{color:var(--text-dim);font-size:.95rem;margin-bottom:1rem}
.bento-quote{
  font-size:.95rem;color:rgba(255,255,255,.6);
  font-style:italic;padding:1rem 1.25rem;
  background:rgba(212,165,116,.06);
  border-left:2px solid var(--gold);
  border-radius:0 .5rem .5rem 0;
  margin-top:1rem;
}
.bento-link{
  font-size:.9rem;font-weight:600;color:var(--gold);
  margin-top:auto;padding-top:.5rem;
  transition:letter-spacing .2s;
}
.bento-card:hover .bento-link{letter-spacing:.05em}
.bento-insurance-note{
  text-align:center;padding:1.5rem;
  font-size:.95rem;color:var(--text-dim);
  border-top:1px solid var(--border);margin-top:1rem;
}
.bento-insurance-note a{color:var(--gold);font-weight:600}
.testimonials-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1.25rem;position:relative;z-index:2;
}
.testimonial-card{
  background:var(--surface);border:1px solid var(--border);
  border-radius:1rem;padding:1.75rem;
  transition:all .3s cubic-bezier(.175,.885,.32,1.275);
}
.testimonial-card:hover{
  border-color:var(--border-hover);transform:translateY(-4px);
  box-shadow:0 16px 40px rgba(0,0,0,.3);
}
.testimonial-quote{
  font-size:.95rem;color:rgba(255,255,255,.8);
  line-height:1.65;margin-bottom:1.25rem;
  font-style:italic;
}
.testimonial-author{font-size:.85rem;color:var(--gold);font-weight:600}
.testimonial-role{font-size:.8rem;color:var(--text-dim);margin-top:.25rem}
.form-micro{
  text-align:center;font-size:.8rem;color:var(--text-dim);
  margin-top:.75rem;margin-bottom:3.5rem;
}
@media(max-width:768px){
  .testimonials-grid{grid-template-columns:1fr}
}

/* INDUSTRIES */
.industries-scroll{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1rem;position:relative;z-index:2;
}
.ind-card{
  background:var(--surface);border:1px solid var(--border);
  border-radius:1rem;padding:1.75rem;
  transition:all .3s cubic-bezier(.175,.885,.32,1.275);
}
.ind-card:hover{
  border-color:var(--border-hover);
  transform:translateY(-4px);
  box-shadow:0 16px 40px rgba(0,0,0,.3);
}
.ind-featured{
  background:linear-gradient(135deg,rgba(212,165,116,.1) 0%,var(--surface) 100%);
  border-color:rgba(212,165,116,.25);
  grid-column:span 2;
}
.ind-icon{font-size:2rem;margin-bottom:.75rem}
.ind-card h4{font-size:1.05rem;margin-bottom:.4rem;font-weight:700;color:#fff}
.ind-card p{color:var(--text-dim);font-size:.85rem;margin-bottom:0;line-height:1.5}

/* TIMELINE */
.timeline{
  max-width:700px;margin:0 auto;
  position:relative;z-index:2;
}
.timeline::before{
  content:'';position:absolute;left:1.75rem;top:0;bottom:0;
  width:2px;background:linear-gradient(180deg,var(--gold) 0%,var(--accent-2) 50%,var(--gold) 100%);
  opacity:.3;
}
.tl-step{
  display:flex;gap:1.5rem;margin-bottom:2.5rem;
  position:relative;padding-left:0;
}
.tl-step:last-child{margin-bottom:0}
.tl-num{
  flex-shrink:0;width:3.5rem;height:3.5rem;
  display:flex;align-items:center;justify-content:center;
  font-size:1rem;font-weight:800;
  background:linear-gradient(135deg,var(--accent-1),var(--accent-2));
  color:var(--bg);border-radius:1rem;
  box-shadow:0 4px 20px rgba(212,165,116,.25);
}
.tl-body h3{margin-bottom:.25rem}
.tl-body p{color:var(--text-dim);font-size:.95rem;margin-bottom:0}

/* CTA */
.cta-section{text-align:center}
.cta-section h2{margin-bottom:1rem}
.cta-section p{color:var(--text-dim);margin-bottom:2rem;max-width:560px;margin-left:auto;margin-right:auto}

/* FAQ */
.faq-list{max-width:720px;margin:0 auto;position:relative;z-index:2;display:flex;flex-direction:column;gap:.75rem}
.faq-item{
  background:var(--surface);border:1px solid var(--border);
  border-radius:1rem;overflow:hidden;transition:all .3s;
}
.faq-item[open]{border-color:var(--border-hover);box-shadow:0 8px 30px rgba(0,0,0,.3)}
.faq-item summary{
  padding:1.1rem 1.5rem;font-weight:600;font-size:1rem;color:#fff;
  cursor:pointer;list-style:none;display:flex;justify-content:space-between;align-items:center;
}
.faq-item summary::after{
  content:"+";font-size:1.25rem;font-weight:700;color:var(--gold);
  transition:transform .3s;flex-shrink:0;margin-left:1rem;
}
.faq-item[open] summary::after{transform:rotate(45deg)}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item p{padding:0 1.5rem 1.1rem;color:var(--text-dim);font-size:.95rem;line-height:1.65}

/* CONTACT FORM */
.contact-form{
  max-width:600px;margin:0 auto;display:grid;gap:1rem;
  position:relative;z-index:2;
}
.contact-form input,.contact-form select,.contact-form textarea{
  width:100%;padding:.9rem 1.1rem;
  border:2px solid var(--border);border-radius:.75rem;
  font-size:1rem;font-family:inherit;
  background:var(--surface);color:#fff;
  transition:border-color .3s,box-shadow .3s;
}
.contact-form input::placeholder,.contact-form textarea::placeholder{color:var(--text-dim)}
.contact-form select option{background:var(--bg);color:#fff}
.contact-form input:focus,.contact-form select:focus,.contact-form textarea:focus{
  outline:none;border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(212,165,116,.15),0 0 20px rgba(212,165,116,.08);
}
.contact-form textarea{min-height:120px;resize:vertical}
.contact-form button{justify-self:center;width:100%;padding:1rem;font-size:1.1rem;font-weight:700;margin-bottom:3.5rem}

/* BLOG */
.blog-post{padding:2rem 0 4rem;position:relative;z-index:1}
.blog-breadcrumb{margin-bottom:2rem;font-size:.85rem;color:var(--text-dim)}
.blog-breadcrumb a{color:var(--text-dim)}
.blog-breadcrumb a:hover{color:var(--gold)}
.blog-header{text-align:center;max-width:700px;margin:0 auto 3rem}
.blog-header h1{font-size:clamp(1.75rem,4vw,3rem);margin-bottom:1rem}
.blog-lede{font-size:1.15rem;color:rgba(255,255,255,.7);max-width:600px;margin:0 auto 1.5rem}
.blog-meta{display:flex;gap:1.5rem;justify-content:center;font-size:.85rem;color:var(--text-dim)}
.blog-body{max-width:720px;margin:0 auto}
.blog-body section{margin-bottom:3rem}
.blog-body h2{font-size:1.5rem;margin-bottom:1rem;color:#fff}
.blog-body p{color:rgba(255,255,255,.7);font-size:1.05rem;line-height:1.75;margin-bottom:1.25rem}
.blog-stat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin:2rem 0}
.blog-stat-card{
  background:var(--surface);border:1px solid var(--border);border-radius:1rem;
  padding:1.5rem;text-align:center;transition:all .3s;
}
.blog-stat-card:hover{border-color:var(--border-hover);transform:translateY(-2px)}
.blog-stat-num{font-size:2.5rem;font-weight:800;color:var(--gold);line-height:1;margin-bottom:.5rem}
.blog-stat-label{font-size:.85rem;color:var(--text-dim);line-height:1.4}
.blog-list{margin-bottom:1.5rem;padding-left:1.5rem}
.blog-list li{color:rgba(255,255,255,.7);font-size:1.05rem;line-height:1.75;margin-bottom:.75rem}
.blog-list-ordered{list-style:decimal}
.blog-list-ordered li strong{color:#fff}
.blog-cta-box{
  background:linear-gradient(135deg,rgba(212,165,116,.1) 0%,rgba(0,201,167,.05) 100%);
  border:1px solid rgba(212,165,116,.25);border-radius:1.25rem;
  padding:2.5rem;text-align:center;margin-top:2rem;
}
.blog-cta-box h3{margin-bottom:.75rem}
.blog-cta-box p{max-width:500px;margin:0 auto 1.5rem}
.blog-grid{display:grid;grid-template-columns:1fr;gap:1.5rem;max-width:720px;margin:0 auto;position:relative;z-index:2}
.blog-card{
  background:var(--surface);border:1px solid var(--border);border-radius:1.25rem;
  padding:2rem;text-decoration:none;color:inherit;display:block;
  transition:all .4s cubic-bezier(.175,.885,.32,1.275);
}
.blog-card:hover{border-color:var(--border-hover);transform:translateY(-4px);box-shadow:0 20px 60px rgba(0,0,0,.4);color:inherit}
.blog-card-date{font-size:.8rem;color:var(--text-dim);margin-bottom:.75rem}
.blog-card h2{font-size:1.5rem;margin-bottom:.75rem}
.blog-card p{color:var(--text-dim);font-size:.95rem;margin-bottom:1rem}
@media(max-width:768px){
  .blog-stat-grid{grid-template-columns:1fr}
}

/* FOOTER */
.footer{
  background:var(--bg);border-top:1px solid var(--border);
  padding:3rem 0 2rem;font-size:.9rem;position:relative;z-index:1;
}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:2rem;margin-bottom:2rem}
.footer .logo{color:#fff;margin-bottom:1rem;font-size:1.2rem;font-weight:800}
.footer .logo span{color:var(--gold)}
.footer p{color:var(--text-dim);font-size:.9rem;margin-bottom:1rem}
.footer-creds{display:flex;flex-direction:column;gap:.35rem;font-size:.8rem;color:var(--gold);font-weight:500}
.footer h4{color:#fff;margin-bottom:1rem;font-size:1rem}
.footer ul{list-style:none;padding:0;margin:0}
.footer a{color:var(--text-dim);display:block;padding:.25rem 0}
.footer a:hover{color:var(--gold)}
.footer-loc{color:var(--text-dim);font-size:.85rem;margin-top:.5rem}
.footer-bottom{
  border-top:1px solid var(--border);padding-top:1.5rem;
  text-align:center;font-size:.85rem;color:var(--text-dim);
}
.footer-bottom a{color:var(--text-dim);display:inline;padding:0}
.footer-bottom a:hover{color:var(--gold)}

/* WHATSAPP FLOAT */
.wa-float{
  position:fixed;bottom:1.5rem;right:1.5rem;
  width:56px;height:56px;background:#25D366;
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  box-shadow:0 8px 24px rgba(37,211,102,.4);
  z-index:1000;transition:transform .2s;
}
.wa-float:hover{transform:scale(1.08);color:#fff}

/* SKIP LINK */
.skip-link{
  position:absolute;top:-100%;left:1rem;z-index:10000;
  background:var(--gold);color:var(--bg);
  padding:.75rem 1.5rem;border-radius:0 0 8px 8px;
  font-weight:700;transition:top .2s;
}
.skip-link:focus{top:0}

/* SCROLL REVEAL */
[data-reveal]{opacity:0;transform:translateY(30px);transition:opacity .8s cubic-bezier(.16,1,.3,1),transform .8s cubic-bezier(.16,1,.3,1)}
[data-reveal].revealed{opacity:1;transform:translateY(0)}
[data-reveal="scale"]{transform:scale(.9)}
[data-reveal="scale"].revealed{transform:scale(1)}
[data-stagger]>*{opacity:0;transform:translateY(20px);transition:opacity .6s cubic-bezier(.16,1,.3,1),transform .6s cubic-bezier(.16,1,.3,1)}
[data-stagger].revealed>*{opacity:1;transform:translateY(0)}
[data-stagger].revealed>*:nth-child(1){transition-delay:.05s}
[data-stagger].revealed>*:nth-child(2){transition-delay:.1s}
[data-stagger].revealed>*:nth-child(3){transition-delay:.15s}
[data-stagger].revealed>*:nth-child(4){transition-delay:.2s}
[data-stagger].revealed>*:nth-child(5){transition-delay:.25s}
[data-stagger].revealed>*:nth-child(6){transition-delay:.3s}
[data-stagger].revealed>*:nth-child(7){transition-delay:.35s}
[data-stagger].revealed>*:nth-child(8){transition-delay:.4s}

/* MOBILE */
@media(max-width:900px){
  .bento{grid-template-columns:1fr 1fr}
  .bento-wide{grid-column:span 2}
  .industries-scroll{grid-template-columns:1fr 1fr}
  .ind-featured{grid-column:span 2}
  .aurora-layer{opacity:.2}
  .aurora-layer{animation:none!important;opacity:0!important}
}
@media(max-width:768px){
  .nav-toggle{display:flex}
  .nav{gap:1rem;font-size:.85rem}
  .nav-links{
    display:none;position:fixed;top:0;left:0;right:0;bottom:0;
    background:rgba(5,5,16,.97);backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    flex-direction:column;align-items:center;justify-content:center;
    gap:2rem;z-index:1000;font-size:1.25rem;
  }
  .nav-links.open{display:flex}
  .nav-links a{color:#fff}
  .btn-header-cta{display:none}
  .hero{padding:5rem 0 4rem;min-height:auto}
  .bento{grid-template-columns:1fr}
  .bento-wide{grid-column:span 1}
  .industries-scroll{grid-template-columns:1fr}
  .ind-featured{grid-column:span 1}
  .footer-grid{grid-template-columns:1fr;gap:1.5rem}
  .hero-actions{flex-direction:column;width:100%}
  .hero-actions .btn{width:100%;justify-content:center}
  .trust-row{flex-direction:column;align-items:center}
  .wa-float{width:50px;height:50px;bottom:1rem;right:1rem}
  .marquee-strip{display:none}
  .testimonials-grid{grid-template-columns:1fr}
  [data-reveal]{transition-duration:.4s}
}

/* VIVEROS PAGE (legacy) */
.viveros-page{--ink:#2a3a52;--danger:#b03a2e;--success:#27714a}
.viveros-page .hero{background:var(--bg);color:var(--text);padding:80px 24px 100px;text-align:center;position:relative;overflow:hidden}
.viveros-page .hero::before{content:"";position:absolute;top:0;left:0;right:0;height:4px;background:var(--gold)}
.viveros-page .hero .eyebrow{color:var(--gold);font-size:12px;letter-spacing:4px;text-transform:uppercase;margin-bottom:20px;font-weight:700}
.viveros-page .hero h1{font-size:44px;line-height:1.15;color:#fff;max-width:780px;margin:0 auto 24px;font-weight:700}
.viveros-page .hero .sub{font-size:17px;color:var(--text-dim);max-width:640px;margin:0 auto 36px;font-weight:300;line-height:1.55}
.viveros-page .gold{color:var(--gold)}
.viveros-page .cta-primary{display:inline-block;background:var(--gold);color:var(--bg);padding:16px 36px;font-weight:700;text-decoration:none;font-size:15px;letter-spacing:1.5px;text-transform:uppercase;border:2px solid var(--gold);transition:all .2s}
.viveros-page .cta-primary:hover{background:transparent;color:var(--gold)}
.viveros-page .hero-note{font-size:11px;color:var(--text-dim);margin-top:16px;letter-spacing:1px}
.viveros-page .stats{background:var(--surface);padding:40px 24px;border-bottom:1px solid var(--border)}
.viveros-page .stats .stats-grid{max-width:980px;margin:0 auto;display:grid;grid-template-columns:repeat(3,1fr);gap:24px;text-align:center}
.viveros-page .stat-card .num{font-size:36px;font-weight:700;color:var(--danger);line-height:1}
.viveros-page .stat-card .label{font-size:11px;color:var(--text);margin-top:8px;text-transform:uppercase;letter-spacing:1.5px;font-weight:700}
.viveros-page .stat-card .cite{font-size:10px;color:var(--text-dim);margin-top:4px;font-style:italic}
.viveros-page section.content{max-width:980px;margin:0 auto;padding:80px 24px}
.viveros-page .section-eyebrow{font-size:11px;color:var(--gold);letter-spacing:3px;text-transform:uppercase;font-weight:700;margin-bottom:10px;text-align:center}
.viveros-page .section-title{font-size:34px;color:#fff;text-align:center;max-width:720px;margin:0 auto 48px;font-weight:700;line-height:1.2}
.viveros-page .blindspots{display:grid;grid-template-columns:1fr;gap:16px}
.viveros-page .bs-card{background:var(--surface);border:1px solid var(--border);border-left:5px solid var(--danger);padding:22px 26px;display:grid;grid-template-columns:60px 1fr auto;gap:18px;align-items:center}
.viveros-page .bs-card .icon{font-size:32px;font-weight:700;color:var(--gold);text-align:center}
.viveros-page .bs-card .title{font-size:15px;font-weight:700;color:#fff;margin-bottom:4px}
.viveros-page .bs-card .desc{font-size:12.5px;color:var(--text);line-height:1.5}
.viveros-page .bs-card .cost{font-size:20px;font-weight:700;color:var(--danger);white-space:nowrap;text-align:right}
.viveros-page .bs-card .cost .yr{display:block;font-size:9px;color:var(--text-dim);font-weight:400;letter-spacing:1px;margin-top:2px}
.viveros-page .offer-block{background:var(--surface);color:var(--text);padding:60px 24px;border-top:1px solid var(--border)}
.viveros-page .offer-inner{max-width:780px;margin:0 auto;text-align:center}
.viveros-page .offer-inner h2{font-size:32px;color:#fff;margin-bottom:12px;font-weight:700}
.viveros-page .offer-inner .desc{font-size:15px;color:var(--text-dim);margin-bottom:30px;line-height:1.6}
.viveros-page .offer-card{background:var(--surface-2);color:#fff;padding:36px 40px;margin-bottom:24px;border:3px solid var(--gold);border-radius:1rem}
.viveros-page .offer-card .price{font-size:64px;font-weight:700;color:#fff;line-height:1}
.viveros-page .offer-card .price-label{font-size:12px;color:var(--text-dim);letter-spacing:2px;text-transform:uppercase;margin-top:6px;margin-bottom:24px}
.viveros-page .offer-card ul{list-style:none;text-align:left;font-size:13px;max-width:440px;margin:0 auto 24px}
.viveros-page .offer-card li{padding:6px 0 6px 26px;position:relative;color:#fff}
.viveros-page .offer-card li::before{content:"\2713";position:absolute;left:0;color:var(--success);font-weight:700;font-size:16px}
.viveros-page .guarantee-bar{background:rgba(212,165,116,.1);border:2px solid var(--gold);padding:14px 20px;margin:0 auto 30px;max-width:540px;font-size:12px;color:var(--text);font-weight:500;border-radius:.5rem}
.viveros-page .guarantee-bar strong{color:var(--gold);letter-spacing:2px;text-transform:uppercase}
.viveros-page .credentials-strip{background:var(--surface);padding:50px 24px;border-top:1px solid var(--border);border-bottom:1px solid var(--border);text-align:center}
.viveros-page .cred-title{font-size:11px;color:var(--text-dim);letter-spacing:3px;text-transform:uppercase;margin-bottom:20px}
.viveros-page .cred-grid{display:flex;justify-content:center;gap:40px;flex-wrap:wrap;font-size:12px;color:var(--text)}
.viveros-page .cred-item strong{color:var(--gold);display:block;margin-bottom:2px;letter-spacing:1px}
@media(max-width:700px){
  .viveros-page .hero h1{font-size:30px}
  .viveros-page .hero .sub{font-size:14px}
  .viveros-page .section-title{font-size:24px}
  .viveros-page .stats .stats-grid{grid-template-columns:1fr;gap:20px}
  .viveros-page .bs-card{grid-template-columns:1fr;text-align:center}
  .viveros-page .bs-card .cost{text-align:center}
  .viveros-page .offer-card .price{font-size:48px}
  .viveros-page .cred-grid{flex-direction:column;gap:16px}
}
