:root{
  --ink:#0C0F14;
  --paper:#F6F4EF;
  --paper-dim:#ECE7DC;
  --ember:#a30015;   /* GROW */
  --signal:#fca311;  /* BUILD */
  --emerald:#003566; /* PROTECT */
  --slate:#6B7280;
  --line: rgba(12,15,20,0.12);
  --radius: 14px;
  --maxw: 1180px;
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--paper);
  color:var(--ink);
  font-family:'Inter', sans-serif;
  font-size:16px;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
ul{list-style:none;}
.wrap{max-width:var(--maxw); margin:0 auto; padding:0 32px;}
.eyebrow{
  font-family:'Roboto Condensed', Arial, sans-serif;
  font-size:12.5px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  font-weight:500;
}
h1,h2,h3,h4{
  font-family:'Roboto', sans-serif;
  font-weight:900;
  line-height:1.08;
  letter-spacing:-0.01em;
}
:focus-visible{
  outline:3px solid var(--signal);
  outline-offset:3px;
}
::selection{ background:var(--ink); color:var(--paper); }

.eyebrow-muted{ color:var(--slate); }
.eyebrow-centered{ display:block; text-align:center; margin-bottom:24px; }
.lane-desc{ color:var(--slate); font-size:14.5px; }

/* ---------- LANGUAGE BAR ---------- */
.lang-bar{
  position:fixed; top:0; left:0; right:0; z-index:110;
  height:34px; background:var(--paper);
  display:flex; align-items:center; justify-content:flex-end;
}
.lang-bar .wrap{ max-width:none; width:100%; margin:0; display:flex; align-items:center; justify-content:flex-end; gap:10px; padding:0 32px; }
.lang-flag{
  display:flex; align-items:center; justify-content:center;
  width:24px; height:24px; border-radius:50%; overflow:hidden;
  font-size:15px; line-height:1; opacity:0.55;
  border:1.5px solid transparent;
  transition:opacity .2s ease, border-color .2s ease, transform .2s ease;
}
.lang-flag:hover{ opacity:1; transform:translateY(-1px); }
.lang-flag.active{ opacity:1; border-color:rgba(246,244,239,0.6); }

/* ---------- NAV ---------- */
header{
  position:fixed; top:34px; left:0; right:0; z-index:100;
  background:rgba(246,244,239,0);
  backdrop-filter:none;
  border-bottom:1px solid transparent;
  transition:border-color .3s ease, background .3s ease, backdrop-filter .3s ease;
}
header.scrolled{
  background:rgba(246,244,239,0.92);
  backdrop-filter:blur(10px);
  border-color:var(--line);
}
nav.wrap{
  display:flex; align-items:center; justify-content:space-between;
  height:90px;
}
.logo{
  display:flex; align-items:center; gap:10px;
}
.logo img{ height:65px; width:auto; display:block; }

.nav-links{ display:flex; align-items:center; gap:34px; }
.nav-links a{
  font-family:'Roboto Condensed', Arial, sans-serif;
  font-size:13px; letter-spacing:0.04em; text-transform:uppercase;
  position:relative; padding-bottom:4px;
  white-space:nowrap;
}
.nav-links a::after{
  content:''; position:absolute; left:0; bottom:0; height:1.5px; width:0;
  background:var(--ink); transition:width .25s ease;
}
.nav-links a:hover::after{ width:100%; }

.btn{
  display:inline-flex; align-items:center; gap:8px;
  font-family:'Roboto Condensed', Arial, sans-serif;
  font-size:13px; letter-spacing:0.04em; text-transform:uppercase;
  padding:12px 22px; border-radius:999px;
  border:1px solid rgba(255,255,255,0.25);
  background:linear-gradient(155deg, #4FC3D6 0%, #219ebc 45%, #157189 100%);
  background-size:180% 180%;
  background-position:0% 0%;
  color:#fff;
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.18), 0 0 0 0 rgba(33,158,188,0);
  transition:transform .2s ease, background-position .4s ease, box-shadow .3s ease;
  cursor:pointer;
}
.btn:hover{
  transform:translateY(-2px);
  background-position:100% 100%;
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.25), 0 0 22px 4px rgba(33,158,188,0.55), 0 0 46px 10px rgba(33,158,188,0.25);
}
.btn.ghost{ background:transparent; color:#219ebc; border:1.5px solid #219ebc; box-shadow:none; }
.btn.ghost:hover{
  background:linear-gradient(155deg, #4FC3D6 0%, #219ebc 45%, #157189 100%);
  color:#fff; border-color:transparent;
  box-shadow:0 0 22px 4px rgba(33,158,188,0.45), 0 0 46px 10px rgba(33,158,188,0.2);
}

.menu-toggle{ display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px; }
.menu-toggle span{ width:24px; height:2px; background:var(--ink); }

/* ---------- HERO ---------- */
.hero{
  position:relative;
  padding:212px 0 110px;
  overflow:hidden;
  background:linear-gradient(180deg, var(--paper) 0%, rgba(163,0,21,0.09) 55%, rgba(252,163,17,0.08) 100%);
}
.hero-waves{
  position:absolute; inset:0; z-index:0;
  opacity:0.5;
  pointer-events:none;
}
.hero-waves path{ transform-origin:center; }
@media (prefers-reduced-motion: no-preference){
  .wave-1{ animation:floaty 7s ease-in-out infinite; }
  .wave-2{ animation:floaty 8.5s ease-in-out infinite .4s; }
  .wave-3{ animation:floaty 6.2s ease-in-out infinite .8s; }
}
@keyframes floaty{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-10px); }
}
.hero-inner{ position:relative; z-index:1; max-width:1040px; }
.hero-copy{ max-width:1040px; }
.hero h1{
  font-size:clamp(34px, 5.6vw, 68px);
  margin:22px 0 26px;
}
.hero h1 .lg, .hero .lead .lg{ color:#a30015; }
.hero h1 .lb, .hero .lead .lb{ color:#fca311; }
.hero h1 .le, .hero .lead .le{ color:#003566; }
.hero p.lead{
  font-size:19px; color:var(--slate); max-width:600px; margin-bottom:36px;
}
.hero-ctas{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:52px; }
.lane-tags{ display:flex; gap:28px; flex-wrap:wrap; }
.lane-tag{
  font-family:'Roboto', sans-serif;
  font-size:15px; font-weight:700; letter-spacing:0.01em;
  display:flex; align-items:center; gap:8px;
  padding:0; border:none; background:none; border-radius:0;
}
.lane-tag .dot{ width:7px; height:7px; border-radius:50%; }
.lane-tag.grow{ color:#a30015; }
.lane-tag.grow .dot{ background:#a30015; }
.lane-tag.build{ color:#fca311; }
.lane-tag.build .dot{ background:#fca311; }
.lane-tag.protect{ color:#003566; }
.lane-tag.protect .dot{ background:#003566; }

/* ---------- SECTION SHARED ---------- */
section{ padding:96px 0; }
.section-head{ max-width:640px; margin-bottom:56px; }
.section-head .eyebrow{ color:var(--slate); margin-bottom:14px; }
.section-head h2{ font-size:clamp(30px, 4vw, 44px); }
.section-head p{ color:var(--slate); font-size:17px; margin-top:16px; }

/* ---------- SERVICES / LANES ---------- */
.services{ background:linear-gradient(200deg, rgba(163,0,21,0.07) 0%, var(--paper-dim) 40%, rgba(0,53,102,0.09) 100%); }
.lane-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.lane-card{
  background:var(--paper);
  border-radius:var(--radius);
  padding:34px 30px 30px;
  border-left:4px solid;
  transition:transform .25s ease, box-shadow .25s ease;
}
.lane-card:hover{ transform:translateY(-6px); box-shadow:0 18px 40px rgba(12,15,20,0.09); }
.lane-card.grow{ border-color:var(--ember); }
.lane-card.build{ border-color:var(--signal); }
.lane-card.protect{ border-color:var(--emerald); }
.lane-icon{ width:34px; height:34px; margin-bottom:22px; }
.lane-card h3{ font-size:22px; margin-bottom:8px; }
.lane-card .lane-label{ font-family:'Roboto', sans-serif; font-size:16px; font-weight:900; letter-spacing:0.02em; text-transform:uppercase; margin-bottom:18px; display:block; }
.lane-card.grow .lane-label{ color:var(--ember); }
.lane-card.build .lane-label{ color:var(--signal); }
.lane-card.protect .lane-label{ color:var(--emerald); }
.lane-card ul{ margin-top:18px; display:flex; flex-direction:column; gap:11px; }
.lane-card li{
  font-size:14.5px; color:var(--ink); padding-left:18px; position:relative;
}
.lane-card li::before{
  content:''; position:absolute; left:0; top:8px; width:6px; height:1.5px; background:var(--slate);
}

/* ---------- PROCESS ---------- */
.process-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:0; border-top:1px solid var(--line); }
.process-step{ padding:32px 26px 0; border-right:1px solid var(--line); }
.process-step:last-child{ border-right:none; }
.process-step .num{ font-family:'Roboto Condensed', Arial, sans-serif; font-size:13px; color:var(--slate); display:block; margin-bottom:14px; }
.process-step h3{ font-size:19px; margin-bottom:10px; }
.process-step p{ color:var(--slate); font-size:14.5px; }

/* ---------- WHY ONE TEAM ---------- */
.why{ position:relative; color:var(--paper); }
.why.parallax-band{ height:auto; }
.why .why-content{ position:relative; z-index:2; }
.why .section-head{ max-width:720px; }
.why .section-head p{ color:rgba(246,244,239,0.65); }
.why .section-head .eyebrow{ color:rgba(246,244,239,0.55); }
.why .section-head h2{ font-size:clamp(26px, 3.2vw, 38px); line-height:1.3; }
.why-accent-1{ color:#ff6b6b; }
.why-accent-2{ color:#fca311; }
.why-accent-3{ color:#4ea8de; }
.why-grid{ display:grid; grid-template-columns:1.1fr 1fr; gap:72px; align-items:start; }
.why-quote{
  font-family:'Roboto', sans-serif;
  font-size:clamp(16px, 1.6vw, 18.5px);
  font-weight:400; line-height:1.8;
  color:rgba(246,244,239,0.82);
  letter-spacing:0.005em;
}
.why-quote .highlight-yellow{ color:#fca311; font-weight:600; }
.why-quote strong{ font-weight:800; color:#FFFFFF; }
.why-brand{ font-family:'Orbitron', sans-serif; font-weight:800; color:#FFFFFF; letter-spacing:0.02em; }
.why-brand .b-trek{ color:#219ebc; }
.why-quote + .why-quote{ margin-top:18px; }
.why-list{ display:flex; flex-direction:column; gap:26px; padding-top:6px; }
.why-list li{ display:flex; gap:16px; }
.why-list .mark{ font-family:'Roboto Condensed', Arial, sans-serif; font-size:14px; color:#219ebc; padding-top:2px; }
.why-list p{ color:rgba(246,244,239,0.85); font-size:15.5px; line-height:1.6; }

/* ---------- TESTIMONIAL ---------- */
.testimonial{ text-align:center; background:linear-gradient(20deg, rgba(0,53,102,0.06) 0%, var(--paper) 55%, rgba(252,163,17,0.06) 100%); }
.testimonial blockquote{
  font-family:'Roboto', sans-serif;
  font-size:clamp(17px,1.7vw,20px);
  font-weight:500; max-width:820px; margin:0 auto 28px;
  line-height:1.65; text-align:left; color:var(--ink);
}
.testimonial cite{ font-family:'Roboto Condensed', Arial, sans-serif; font-size:13px; color:var(--slate); font-style:normal; }
.testimonial-author{ display:flex; align-items:center; justify-content:center; gap:12px; margin-top:4px; }
.testimonial-avatar{
  width:52px; height:52px; border-radius:50%; object-fit:cover;
  box-shadow:0 2px 10px rgba(12,15,20,0.18); border:1.5px solid var(--line);
}
.testimonial .placeholder-note{
  margin-top:28px; font-size:12.5px; color:var(--slate);
  font-family:'Roboto Condensed', Arial, sans-serif; opacity:0.75;
}

.office-flags{ display:flex; gap:10px; font-size:22px; line-height:1; }
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* ---------- PARALLAX BAND ---------- */
.parallax-band{
  position:relative;
  height:460px;
  overflow:hidden;
}
.parallax-band .parallax-img{
  position:absolute;
  top:50%; left:50%;
  width:100%;
  height:150%;
  transform:translate(-50%,-50%);
  background-image:url('assets/spider-bg.jpg');
  background-image:image-set(url('assets/spider-bg.avif') type('image/avif'), url('assets/spider-bg.jpg') type('image/jpeg'));
  background-size:cover;
  background-position:center;
  will-change:transform;
}
.parallax-band .parallax-overlay{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(12,15,20,0.45) 0%, rgba(12,15,20,0.2) 55%, rgba(12,15,20,0.45) 100%);
}
.parallax-band .parallax-img-green{
  background-image:url('assets/spider-bg-green.jpg');
}
.parallax-band .parallax-overlay-green{
  background:linear-gradient(160deg, rgba(16,22,32,0.9) 0%, rgba(12,15,20,0.88) 45%, rgba(23,15,22,0.9) 100%);
}
.parallax-band .parallax-img-pink{
  background-image:url('assets/spider-bg-pink.jpg');
}
.parallax-band .parallax-overlay-pink{
  background:linear-gradient(160deg, rgba(20,10,16,0.88) 0%, rgba(12,15,20,0.88) 45%, rgba(16,10,20,0.9) 100%);
}
.parallax-text{
  position:absolute; z-index:2;
  top:44px; left:32px;
  max-width:min(920px, calc(100% - 64px));
}
.parallax-text-bottom{
  position:absolute; z-index:2;
  bottom:32px; left:32px;
  max-width:min(760px, calc(100% - 64px));
}
.parallax-brand{
  font-family:'Orbitron', sans-serif;
  font-weight:800;
  font-size:clamp(26px, 3.4vw, 40px);
  letter-spacing:0.02em;
  margin-bottom:16px;
}
.parallax-brand .p-spider{ color:#FFFFFF; }
.parallax-brand .p-trek{ color:#219ebc; }
.parallax-tagline{
  font-family:'Inter', sans-serif;
  font-size:15.5px;
  line-height:1.55;
  color:#FFFFFF;
}
.parallax-tagline + .parallax-tagline{ margin-top:8px; }
.parallax-tagline-italic{ font-style:italic; }
.parallax-tagline-italic strong{ font-weight:700; font-style:normal; }
@media (max-width:900px){
  .parallax-band{ height:340px; }
  .parallax-text{ top:28px; left:24px; max-width:calc(100% - 48px); }
  .parallax-text-bottom{ bottom:20px; left:24px; max-width:calc(100% - 48px); }
  .parallax-tagline{ font-size:13px; }
}
@media (max-width:520px){
  .parallax-band{ height:400px; }
}

/* ---------- HOW WE WORK ---------- */
#how-we-work{ background:linear-gradient(70deg, rgba(252,163,17,0.06) 0%, var(--paper) 50%, rgba(163,0,21,0.05) 100%); }

/* ---------- CONTACT ---------- */
.contact{ position:relative; color:var(--paper); }
.contact.parallax-band{ height:auto; }
.contact .contact-content{ position:relative; z-index:2; }
.contact-grid{ display:grid; grid-template-columns:0.85fr 1fr; gap:60px; }
.contact-info h2{ font-size:clamp(28px,3.6vw,40px); margin-bottom:18px; color:#FFFFFF; }
.contact .eyebrow-muted{ color:rgba(246,244,239,0.55); }
.contact-info p{ color:rgba(246,244,239,0.75); font-size:16px; margin-bottom:28px; max-width:420px; }
.contact-detail{ margin-bottom:18px; }
.contact-detail .eyebrow{ color:rgba(246,244,239,0.55); display:block; margin-bottom:4px; }
.contact-detail a, .contact-detail span{ font-size:16px; color:#FFFFFF; }
.whatsapp-link{ display:block; width:fit-content; margin-top:12px; }
.whatsapp-link img{ height:44px; width:auto; transition:transform .2s ease; }
.whatsapp-link:hover img{ transform:translateY(-2px); }

form{ display:flex; flex-direction:column; gap:18px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
label{ font-family:'Roboto Condensed', Arial, sans-serif; font-size:12px; letter-spacing:0.05em; text-transform:uppercase; margin-bottom:8px; display:block; color:rgba(246,244,239,0.6); }
input, select, textarea{
  width:100%; padding:13px 16px; border-radius:8px; border:1.5px solid rgba(255,255,255,0.18);
  background:#FFFFFF; font-family:'Inter', sans-serif; font-size:15px; color:var(--ink);
}
input:focus, select:focus, textarea:focus{ border-color:#219ebc; outline:none; }
textarea{ resize:vertical; min-height:110px; }
.form-success{
  display:none; padding:16px 18px; border-radius:8px; background:rgba(15,163,127,0.12);
  color:#0A6B54; font-size:14.5px; border:1px solid rgba(15,163,127,0.3);
}
.form-success.show{ display:block; }
.form-success.form-error{
  background:rgba(163,0,21,0.1); color:#a30015; border-color:rgba(163,0,21,0.3);
}
.form-submit{ align-self:flex-start; }
.form-submit:disabled{ opacity:0.6; cursor:not-allowed; }

/* ---------- FOOTER ---------- */
footer{ padding:56px 0 40px; border-top:1px solid var(--line); }
.footer-top{ display:flex; justify-content:space-between; align-items:flex-start; flex-wrap:wrap; gap:30px; margin-bottom:40px; }
.footer-brand{ display:flex; flex-direction:column; gap:18px; }
.social-icons{ display:flex; gap:12px; }
.social-icon{
  width:36px; height:36px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  border:1.5px solid var(--line); color:var(--ink);
  transition:background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.social-icon svg{ width:17px; height:17px; }
.social-icon:hover{
  background:linear-gradient(155deg, #4FC3D6 0%, #219ebc 45%, #157189 100%);
  color:#fff; border-color:transparent; transform:translateY(-2px);
}
.footer-links{ display:flex; gap:40px; flex-wrap:wrap; }
.footer-col h4{ font-family:'Roboto Condensed', Arial, sans-serif; font-size:12px; letter-spacing:0.06em; text-transform:uppercase; color:var(--slate); margin-bottom:14px; font-weight:500; }
.footer-col a{ display:block; font-size:14.5px; margin-bottom:9px; }
.footer-bottom{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:13px; color:var(--slate); font-family:'Roboto Condensed', Arial, sans-serif; }

/* ---------- RESPONSIVE ---------- */
@media (max-width:900px){
  .nav-links, .hero-ctas .btn.ghost{ display:none; }
  .menu-toggle{ display:flex; }
  .lane-grid{ grid-template-columns:1fr; }
  .process-grid{ grid-template-columns:1fr 1fr; }
  .process-step{ border-right:none; border-bottom:1px solid var(--line); padding-bottom:24px; margin-bottom:8px; }
  .why-grid, .contact-grid{ grid-template-columns:1fr; }
  .form-row{ grid-template-columns:1fr; }
  .hero{ padding:180px 0 80px; }
}
@media (max-width:520px){
  .wrap{ padding:0 20px; }
  .process-grid{ grid-template-columns:1fr; }
  section{ padding:72px 0; }
}
