/* ═══════════════════════════════════════════
   ZENVIXA TECH — style.css
   Brand: Navy #1a2d4a | Teal #0ea5c8
═══════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,700;12..96,800&family=Instrument+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  --navy:       #1a2d4a;
  --navy2:      #0f1d30;
  --navy3:      #243553;
  --teal:       #0ea5c8;
  --teal2:      #0dd4c8;
  --teal-dark:  #0889a8;
  --teal-glow:  rgba(14,165,200,0.12);
  --white:      #ffffff;
  --paper:      #f7f9fc;
  --cream:      #edf1f7;
  --ink:        #0f1d30;
  --muted:      #5a708a;
  --muted2:     #8aa0b8;
  --border:     rgba(14,165,200,0.22);
  --shadow:     0 8px 40px rgba(15,29,48,0.10);
  --shadow-lg:  0 24px 80px rgba(15,29,48,0.16);
  --r:          12px;
  --r-lg:       20px;
  --r-sm:       8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family:'Instrument Sans',sans-serif; background:var(--white); color:var(--ink); overflow-x:hidden; line-height:1.6; }
img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
h1,h2,h3,h4 { font-family:'Bricolage Grotesque',sans-serif; font-weight:800; letter-spacing:-0.03em; line-height:1.1; }

.container { max-width:1160px; margin:0 auto; padding:0 2.5rem; }

.section-label {
  display:inline-flex; align-items:center; gap:.6rem;
  font-size:.7rem; letter-spacing:.16em; text-transform:uppercase;
  font-weight:700; color:var(--teal); margin-bottom:1rem;
}
.section-label::before { content:''; width:22px; height:2px; background:var(--teal); border-radius:2px; }

/* BUTTONS */
.btn-primary {
  display:inline-flex; align-items:center; gap:.5rem;
  background:linear-gradient(135deg,var(--teal),var(--teal2));
  color:var(--navy2); padding:.85rem 2rem; border-radius:50px;
  font-weight:700; font-size:.9rem; letter-spacing:.02em;
  transition:transform .25s,box-shadow .25s;
  box-shadow:0 4px 20px rgba(14,165,200,.35);
  border:none; cursor:pointer; font-family:'Instrument Sans',sans-serif;
}
.btn-primary:hover { transform:translateY(-3px); box-shadow:0 12px 40px rgba(14,165,200,.5); }

.btn-outline-light {
  display:inline-flex; align-items:center; gap:.5rem;
  background:transparent; color:var(--white);
  padding:.85rem 2rem; border-radius:50px;
  font-weight:600; font-size:.9rem;
  border:1.5px solid rgba(255,255,255,.3);
  transition:all .25s; cursor:pointer;
  font-family:'Instrument Sans',sans-serif;
}
.btn-outline-light:hover { border-color:rgba(255,255,255,.7); background:rgba(255,255,255,.07); }

.btn-navy {
  display:inline-flex; align-items:center; gap:.5rem;
  background:var(--navy2); color:var(--white);
  padding:.85rem 2rem; border-radius:50px;
  font-weight:700; font-size:.9rem;
  transition:all .25s; border:none; cursor:pointer;
  font-family:'Instrument Sans',sans-serif;
}
.btn-navy:hover { background:var(--navy3); transform:translateY(-2px); }

/* ════════ NAVBAR ════════ */
.navbar {
  position:fixed; top:0; left:0; right:0; z-index:999;
  padding:1rem 0;
  transition:background .3s,box-shadow .3s,backdrop-filter .3s;
}
.navbar.scrolled {
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(20px);
  box-shadow:0 1px 0 rgba(14,165,200,.12),0 4px 20px rgba(15,29,48,.08);
}
.nav-inner { display:flex; align-items:center; justify-content:space-between; }
.nav-logo img { height:50px; width:auto; }
.nav-links { display:flex; gap:2.5rem; }
.nav-links a {
  font-size:.87rem; font-weight:500; color:var(--muted);
  letter-spacing:.03em; transition:color .2s; position:relative;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-5px; left:0; right:0;
  height:2px; background:var(--teal);
  transform:scaleX(0); transition:transform .25s; border-radius:2px;
}
.nav-links a:hover, .nav-links a.active { color:var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { transform:scaleX(1); }
.hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:4px; }
.hamburger span { display:block; width:24px; height:2px; background:var(--navy); border-radius:2px; transition:all .3s; }
.mobile-menu { display:none; flex-direction:column; background:var(--white); border-top:1px solid var(--border); padding:1.5rem 2.5rem; gap:1rem; box-shadow:var(--shadow); }
.mobile-menu.open { display:flex; }
.mobile-menu a { font-size:1rem; font-weight:500; color:var(--navy); padding:.5rem 0; border-bottom:1px solid var(--cream); }
.mobile-menu .btn-primary { margin-top:.5rem; justify-content:center; }

/* ════════ HERO (DARK) ════════ */
.hero {
  background:var(--navy2);
  min-height:100vh; display:flex; align-items:center;
  padding:10rem 0 7rem; position:relative; overflow:hidden;
}
.hero::before {
  content:''; position:absolute; inset:0;
  background-image:linear-gradient(rgba(14,165,200,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(14,165,200,.05) 1px,transparent 1px);
  background-size:70px 70px;
}
.hero-glow {
  position:absolute; border-radius:50%; pointer-events:none;
  background:radial-gradient(circle,rgba(14,165,200,.15) 0%,transparent 70%);
}
.hero-glow1 { width:700px; height:700px; top:-200px; right:-200px; }
.hero-glow2 { width:400px; height:400px; bottom:-100px; left:-100px; opacity:.6; }

.hero-inner {
  display:grid; grid-template-columns:1fr 1fr;
  gap:4rem; align-items:center; position:relative; z-index:2;
}
.hero-badge {
  display:inline-flex; align-items:center; gap:.6rem;
  background:rgba(14,165,200,.1); border:1px solid rgba(14,165,200,.3);
  padding:.38rem 1.1rem; border-radius:50px;
  font-size:.7rem; letter-spacing:.14em; text-transform:uppercase;
  color:var(--teal2); font-weight:700; margin-bottom:1.8rem;
  animation:fadeUp .7s ease both;
}
.hero-badge-dot { width:7px; height:7px; border-radius:50%; background:var(--teal2); animation:blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.3;transform:scale(1.6)} }

.hero h1 { font-size:clamp(2.8rem,5vw,5.5rem); color:var(--white); animation:fadeUp .7s .1s ease both; }
.hero h1 .gt { background:linear-gradient(90deg,var(--teal),var(--teal2)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
.hero-sub { color:var(--muted2); font-size:1.05rem; line-height:1.8; margin-top:1.4rem; max-width:460px; animation:fadeUp .7s .2s ease both; }
.hero-btns { display:flex; gap:1rem; margin-top:2.5rem; flex-wrap:wrap; animation:fadeUp .7s .3s ease both; }
.hero-stats { display:flex; gap:2.8rem; margin-top:3.5rem; animation:fadeUp .7s .4s ease both; padding-top:2.5rem; border-top:1px solid rgba(14,165,200,.12); }
.hstat-num { font-family:'Bricolage Grotesque',sans-serif; font-size:2.2rem; font-weight:800; color:var(--white); letter-spacing:-.04em; }
.hstat-num span { color:var(--teal2); }
.hstat-lbl { font-size:.76rem; color:var(--muted2); text-transform:uppercase; letter-spacing:.08em; margin-top:.2rem; }

/* Hero right floating cards */
.hero-cards { position:relative; height:440px; animation:fadeUp .7s .2s ease both; }
.hcard {
  position:absolute; background:rgba(255,255,255,.05);
  border:1px solid rgba(14,165,200,.2); border-radius:var(--r-lg);
  padding:1.6rem; backdrop-filter:blur(10px);
}
.hcard1 { top:0; left:0; right:0; animation:hfloat1 6s ease-in-out infinite; }
.hcard2 { top:175px; left:20px; right:-15px; animation:hfloat2 7s ease-in-out infinite; }
.hcard3 { top:330px; left:0; right:30px; animation:hfloat3 5s ease-in-out infinite; }
@keyframes hfloat1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes hfloat2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }
@keyframes hfloat3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.hcard-icon { font-size:1.5rem; margin-bottom:.6rem; }
.hcard-title { color:var(--white); font-family:'Bricolage Grotesque',sans-serif; font-weight:700; font-size:.98rem; }
.hcard-sub { color:var(--muted2); font-size:.8rem; margin-top:.25rem; line-height:1.5; }
.hcard-pill { display:inline-block; margin-top:.7rem; background:rgba(14,165,200,.15); color:var(--teal2); font-size:.68rem; font-weight:700; padding:.2rem .65rem; border-radius:50px; letter-spacing:.08em; }

@keyframes fadeUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }

/* ════════ MARQUEE STRIP (TEAL) ════════ */
.marquee-strip { background:linear-gradient(135deg,var(--teal),var(--teal2)); padding:.9rem 0; overflow:hidden; }
.marquee-track { display:flex; gap:3rem; width:max-content; animation:mscroll 28s linear infinite; }
.marquee-item { white-space:nowrap; color:var(--navy2); font-size:.8rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; display:flex; align-items:center; gap:1.2rem; }
.marquee-item::after { content:'✦'; opacity:.5; }
@keyframes mscroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ════════ ABOUT PREVIEW (WHITE) ════════ */
.about-preview { background:var(--white); padding:8rem 0; }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center; }
.about-visual-wrap { position:relative; }
.about-bg-text {
  font-family:'Bricolage Grotesque',sans-serif; font-size:clamp(5rem,10vw,9rem);
  font-weight:800; line-height:1; color:var(--cream);
  letter-spacing:-.04em; user-select:none;
}
.about-card-float {
  position:absolute; top:20px; right:-10px;
  background:var(--navy2); color:var(--white);
  padding:1.4rem 1.8rem; border-radius:var(--r);
  border-left:3px solid var(--teal);
  box-shadow:var(--shadow-lg);
}
.acf-num { font-family:'Bricolage Grotesque',sans-serif; font-size:2.2rem; font-weight:800; color:var(--teal2); }
.acf-lbl { font-size:.76rem; color:var(--muted2); text-transform:uppercase; letter-spacing:.1em; margin-top:.2rem; }
.about-content .section-title { font-size:clamp(1.8rem,3vw,2.8rem); }
.about-content p { color:var(--muted); line-height:1.85; margin-top:1.2rem; font-size:.97rem; }
.philosophy-box {
  margin-top:2rem; background:var(--paper);
  border:1px solid var(--border); border-left:3px solid var(--teal);
  border-radius:var(--r); padding:1.4rem 1.6rem;
}
.philosophy-box p { color:var(--ink); font-style:italic; font-size:.93rem; margin-top:0; line-height:1.75; }
.philosophy-box strong { color:var(--teal); font-style:normal; }

/* ════════ SERVICES (DARK) ════════ */
.services-dark { background:var(--navy2); padding:8rem 0; position:relative; overflow:hidden; }
.services-dark::before {
  content:''; position:absolute; inset:0;
  background-image:linear-gradient(rgba(14,165,200,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(14,165,200,.04) 1px,transparent 1px);
  background-size:60px 60px;
}
.services-header { text-align:center; margin-bottom:4rem; position:relative; z-index:2; }
.services-header .section-title { color:var(--white); font-size:clamp(2rem,3.5vw,3rem); }
.services-header p { color:var(--muted2); max-width:500px; margin:.8rem auto 0; font-size:1rem; line-height:1.75; }
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; position:relative; z-index:2; }
.svc-card {
  background:rgba(255,255,255,.04); border:1px solid rgba(14,165,200,.12);
  border-radius:var(--r-lg); padding:2.2rem;
  transition:transform .3s,background .3s,border-color .3s; position:relative; overflow:hidden;
}
.svc-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg,var(--teal),var(--teal2));
  transform:scaleX(0); transform-origin:left; transition:transform .4s;
}
.svc-card:hover { transform:translateY(-6px); background:rgba(14,165,200,.07); border-color:rgba(14,165,200,.28); }
.svc-card:hover::before { transform:scaleX(1); }
.svc-card.featured { border-color:rgba(14,165,200,.32); background:rgba(14,165,200,.07); }
.svc-card.featured::before { transform:scaleX(1); }
.svc-icon-box {
  width:52px; height:52px; border-radius:var(--r-sm);
  background:rgba(14,165,200,.12); border:1px solid rgba(14,165,200,.2);
  display:flex; align-items:center; justify-content:center; font-size:1.5rem; margin-bottom:1.4rem;
}
.svc-no { font-size:.68rem; font-weight:800; color:var(--teal); letter-spacing:.12em; text-transform:uppercase; margin-bottom:.5rem; }
.svc-title { font-family:'Bricolage Grotesque',sans-serif; font-size:1.1rem; font-weight:700; color:var(--white); margin-bottom:.7rem; }
.svc-desc { color:var(--muted2); font-size:.86rem; line-height:1.75; }
.svc-list { margin-top:1.2rem; display:flex; flex-direction:column; gap:.45rem; }
.svc-list li { font-size:.82rem; color:var(--muted2); display:flex; align-items:flex-start; gap:.5rem; }
.svc-list li::before { content:'→'; color:var(--teal); flex-shrink:0; }
.svc-tag { display:inline-block; margin-top:1.2rem; background:rgba(14,165,200,.1); border:1px solid var(--border); color:var(--teal2); font-size:.68rem; font-weight:700; padding:.22rem .7rem; border-radius:50px; letter-spacing:.08em; text-transform:uppercase; }
.services-cta { text-align:center; margin-top:3rem; position:relative; z-index:2; }

/* ════════ WHY US (WHITE/PAPER) ════════ */
.why-section { background:var(--paper); padding:8rem 0; }
.why-header { text-align:center; margin-bottom:4rem; }
.why-header p { color:var(--muted); max-width:500px; margin:.8rem auto 0; line-height:1.75; }
.why-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.8rem; }
.why-card {
  background:var(--white); border:1px solid var(--cream);
  border-radius:var(--r-lg); padding:2rem; text-align:center;
  transition:transform .3s,box-shadow .3s,border-color .3s;
}
.why-card:hover { transform:translateY(-5px); box-shadow:var(--shadow); border-color:var(--border); }
.why-icon { width:60px; height:60px; border-radius:50%; background:var(--teal-glow); display:flex; align-items:center; justify-content:center; font-size:1.6rem; margin:0 auto 1.2rem; border:1px solid var(--border); }
.why-card h4 { font-size:.98rem; color:var(--navy); margin-bottom:.5rem; }
.why-card p { font-size:.84rem; color:var(--muted); line-height:1.7; }

/* ════════ PROCESS (DARK NAVY) ════════ */
.process-section { background:var(--navy); padding:8rem 0; }
.process-header { text-align:center; margin-bottom:5rem; }
.process-header .section-title { color:var(--white); font-size:clamp(2rem,3.5vw,3rem); }
.process-header p { color:var(--muted2); max-width:480px; margin:.8rem auto 0; line-height:1.75; }
.process-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:0; position:relative; }
.process-steps::after {
  content:''; position:absolute; top:35px; left:12%; right:12%;
  height:1px; background:linear-gradient(90deg,transparent,var(--teal),var(--teal2),var(--teal),transparent); opacity:.35;
}
.process-step { text-align:center; padding:0 1.2rem; }
.step-circle {
  width:70px; height:70px; border-radius:50%;
  background:var(--navy2); border:2px solid rgba(14,165,200,.35);
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 1.5rem; font-size:1.3rem; position:relative; z-index:1;
  transition:background .3s,transform .3s,border-color .3s;
}
.process-step:hover .step-circle { background:var(--teal); border-color:var(--teal); transform:scale(1.1); }
.step-badge { font-size:.62rem; font-weight:800; color:var(--teal); letter-spacing:.15em; text-transform:uppercase; margin-bottom:.5rem; }
.process-step h4 { font-family:'Bricolage Grotesque',sans-serif; color:var(--white); font-size:.98rem; font-weight:700; margin-bottom:.6rem; }
.process-step p { color:var(--muted2); font-size:.83rem; line-height:1.7; }

/* ════════ TESTIMONIALS (WHITE) ════════ */
.testimonials-section { background:var(--white); padding:8rem 0; }
.testimonials-header { text-align:center; margin-bottom:4rem; }
.testimonials-header p { color:var(--muted); max-width:460px; margin:.8rem auto 0; line-height:1.75; }
.tgrid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.tcard {
  background:var(--paper); border:1px solid var(--cream);
  border-radius:var(--r-lg); padding:2rem;
  transition:box-shadow .3s,transform .3s;
}
.tcard:hover { box-shadow:var(--shadow); transform:translateY(-4px); }
.tstars { color:#f59e0b; font-size:.88rem; margin-bottom:1rem; }
.ttext { color:var(--muted); font-size:.9rem; line-height:1.78; font-style:italic; margin-bottom:1.5rem; }
.tauthor { display:flex; align-items:center; gap:.8rem; }
.tavatar {
  width:44px; height:44px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family:'Bricolage Grotesque',sans-serif; font-weight:800; font-size:1rem;
}
.av-t { background:rgba(14,165,200,.12); color:var(--teal); }
.av-n { background:rgba(26,45,74,.1); color:var(--navy); }
.av-g { background:rgba(13,212,200,.1); color:var(--teal2); }
.tname { font-weight:700; font-size:.88rem; color:var(--navy); }
.trole { font-size:.76rem; color:var(--muted); }

/* ════════ CTA (GRADIENT DARK) ════════ */
.cta-section {
  background:linear-gradient(135deg,var(--navy2) 0%,var(--navy) 50%,#0a2240 100%);
  padding:8rem 0; text-align:center; position:relative; overflow:hidden;
}
.cta-section::before {
  content:''; position:absolute; width:600px; height:600px; border-radius:50%;
  background:radial-gradient(circle,rgba(13,212,200,.1) 0%,transparent 70%);
  top:50%; left:50%; transform:translate(-50%,-50%);
}
.cta-section h2 { color:var(--white); font-size:clamp(2rem,4vw,3.5rem); position:relative; z-index:2; }
.cta-section p { color:var(--muted2); margin:1.2rem auto 2.5rem; max-width:500px; line-height:1.78; font-size:1.02rem; position:relative; z-index:2; }
.cta-form { display:flex; gap:.75rem; max-width:460px; margin:0 auto; position:relative; z-index:2; }
.cta-input {
  flex:1; background:rgba(255,255,255,.08); border:1.5px solid rgba(255,255,255,.15);
  border-radius:50px; padding:.85rem 1.5rem;
  color:var(--white); font-family:'Instrument Sans',sans-serif; font-size:.9rem;
  outline:none; transition:border-color .2s;
}
.cta-input:focus { border-color:var(--teal2); }
.cta-input::placeholder { color:rgba(255,255,255,.35); }

/* ════════ FOOTER ════════ */
footer { background:var(--navy2); border-top:1px solid rgba(14,165,200,.1); padding:5rem 0 2.5rem; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:3rem; margin-bottom:4rem; }
.footer-brand img { height:44px; margin-bottom:1rem; }
.footer-brand p { color:var(--muted2); font-size:.86rem; line-height:1.75; max-width:260px; }
.footer-social { display:flex; gap:.7rem; margin-top:1.5rem; }
.fsocial {
  width:36px; height:36px; border-radius:50%;
  background:rgba(14,165,200,.1); border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  font-size:.85rem; color:var(--teal2); transition:all .2s;
}
.fsocial:hover { background:var(--teal); color:var(--white); }
.footer-col h5 { font-family:'Bricolage Grotesque',sans-serif; font-size:.78rem; font-weight:800; color:var(--white); letter-spacing:.1em; text-transform:uppercase; margin-bottom:1.2rem; }
.footer-col ul { display:flex; flex-direction:column; gap:.6rem; }
.footer-col ul a { color:var(--muted2); font-size:.85rem; transition:color .2s; }
.footer-col ul a:hover { color:var(--teal2); }
.footer-bottom { border-top:1px solid rgba(14,165,200,.1); padding-top:2rem; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:1rem; }
.footer-bottom p { color:var(--muted2); font-size:.78rem; }
.footer-bottom a { color:var(--teal2); transition:opacity .2s; }
.footer-bottom a:hover { opacity:.7; }

/* ════════ PAGE HERO ════════ */
.page-hero { background:var(--navy2); padding:10rem 0 6rem; text-align:center; position:relative; overflow:hidden; }
.page-hero::before {
  content:''; position:absolute; inset:0;
  background-image:linear-gradient(rgba(14,165,200,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(14,165,200,.05) 1px,transparent 1px);
  background-size:60px 60px;
}
.page-hero h1 { color:var(--white); position:relative; z-index:2; font-size:clamp(2.5rem,5vw,4.5rem); }
.page-hero p { color:var(--muted2); margin:1.2rem auto 0; max-width:520px; font-size:1.02rem; line-height:1.8; position:relative; z-index:2; }
.breadcrumb { display:flex; align-items:center; gap:.5rem; justify-content:center; margin-bottom:1.5rem; position:relative; z-index:2; }
.breadcrumb a { color:var(--teal2); font-size:.8rem; font-weight:600; }
.breadcrumb span { color:var(--muted2); font-size:.8rem; }
.breadcrumb .sep { color:rgba(255,255,255,.2); }

/* ════════ ABOUT PAGE ════════ */
.about-story { background:var(--white); padding:8rem 0; }
.story-grid { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:start; }
.story-left h2 { font-size:clamp(1.8rem,3vw,2.8rem); margin-bottom:1.5rem; }
.story-left p { color:var(--muted); line-height:1.85; margin-bottom:1rem; font-size:.97rem; }
.values-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.2rem; margin-top:2rem; }
.value-card { background:var(--paper); border:1px solid var(--cream); border-top:2px solid var(--teal); border-radius:var(--r); padding:1.4rem; transition:box-shadow .3s; }
.value-card:hover { box-shadow:var(--shadow); }
.value-card h4 { font-size:.9rem; color:var(--navy); margin-bottom:.4rem; }
.value-card p { font-size:.82rem; color:var(--muted); line-height:1.65; }
.philosophy-big { background:var(--navy2); border-radius:var(--r-lg); padding:2.5rem; border:1px solid rgba(14,165,200,.15); }
.philosophy-big h3 { font-family:'Bricolage Grotesque',sans-serif; font-size:1.15rem; font-weight:700; color:var(--teal2); margin-bottom:1.2rem; }
.philosophy-big p { color:var(--muted2); font-size:.92rem; line-height:1.82; }
.philosophy-big blockquote { border-left:3px solid var(--teal); padding-left:1.2rem; margin-top:1.5rem; color:var(--white); font-style:italic; font-size:.97rem; line-height:1.75; }
.stats-dark { background:var(--navy); padding:5rem 0; }
.stats-row { display:grid; grid-template-columns:repeat(4,1fr); gap:2rem; text-align:center; }
.stat-num-big { font-family:'Bricolage Grotesque',sans-serif; font-size:3rem; font-weight:800; color:var(--teal2); letter-spacing:-.04em; }
.stat-lbl { color:var(--muted2); font-size:.78rem; text-transform:uppercase; letter-spacing:.1em; margin-top:.3rem; }

/* ════════ SERVICES PAGE ════════ */
.services-page { background:var(--white); padding:8rem 0; }
.svc-row { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; padding:4rem 0; border-bottom:1px solid var(--cream); }
.svc-row:last-child { border-bottom:none; }
.svc-row.reverse { direction:rtl; }
.svc-row.reverse > * { direction:ltr; }
.svc-pg-icon { font-size:2.8rem; margin-bottom:1rem; }
.svc-pg-no { font-family:'Bricolage Grotesque',sans-serif; font-size:.68rem; font-weight:800; color:var(--teal); letter-spacing:.15em; text-transform:uppercase; margin-bottom:.7rem; }
.svc-pg-title { font-size:clamp(1.6rem,3vw,2.2rem); color:var(--navy); margin-bottom:1rem; }
.svc-pg-desc { color:var(--muted); line-height:1.82; font-size:.97rem; margin-bottom:1.5rem; }
.svc-pg-features { display:flex; flex-direction:column; gap:.7rem; }
.svc-pg-features li { display:flex; align-items:flex-start; gap:.75rem; font-size:.9rem; color:var(--ink); }
.feat-check { width:22px; height:22px; border-radius:50%; background:var(--teal-glow); color:var(--teal); display:flex; align-items:center; justify-content:center; font-size:.65rem; flex-shrink:0; margin-top:1px; font-weight:800; }
.svc-visual-box {
  background:var(--navy2); border-radius:var(--r-lg); padding:2.5rem;
  border:1px solid rgba(14,165,200,.15); min-height:280px;
  display:flex; flex-direction:column; justify-content:space-between;
}
.svb-label { font-size:.7rem; color:var(--teal2); text-transform:uppercase; letter-spacing:.12em; font-weight:700; margin-bottom:.5rem; }
.svb-metric { font-family:'Bricolage Grotesque',sans-serif; font-size:3.5rem; font-weight:800; color:var(--white); letter-spacing:-.04em; line-height:1; }
.svb-sub { color:var(--muted2); font-size:.8rem; margin-top:.3rem; }
.svb-tags { display:flex; gap:.5rem; flex-wrap:wrap; margin-top:2rem; }
.svb-tag { background:rgba(14,165,200,.1); border:1px solid var(--border); color:var(--teal2); font-size:.7rem; font-weight:700; padding:.28rem .75rem; border-radius:50px; letter-spacing:.06em; }

/* ════════ CONTACT PAGE ════════ */
.contact-section { background:var(--white); padding:8rem 0; }
.contact-grid { display:grid; grid-template-columns:1fr 1.6fr; gap:5rem; align-items:start; }
.contact-info h2 { font-size:clamp(1.8rem,3vw,2.5rem); margin-bottom:1rem; }
.contact-info > p { color:var(--muted); line-height:1.82; margin-bottom:2rem; font-size:.97rem; }
.contact-items { display:flex; flex-direction:column; gap:1rem; }
.citem { display:flex; align-items:flex-start; gap:1rem; background:var(--paper); border:1px solid var(--cream); border-radius:var(--r); padding:1.2rem; transition:border-color .2s; }
.citem:hover { border-color:var(--border); }
.citem-icon { width:44px; height:44px; border-radius:var(--r-sm); background:var(--teal-glow); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; font-size:1.1rem; flex-shrink:0; }
.citem-label { font-size:.68rem; color:var(--muted); text-transform:uppercase; letter-spacing:.1em; font-weight:600; }
.citem-value { font-size:.94rem; color:var(--navy); font-weight:600; margin-top:.2rem; }
.contact-form-wrap { background:var(--paper); border:1px solid var(--cream); border-radius:var(--r-lg); padding:2.5rem; }
.contact-form-wrap h3 { font-size:1.4rem; color:var(--navy); margin-bottom:.4rem; }
.contact-form-wrap > p { color:var(--muted); font-size:.88rem; margin-bottom:2rem; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1.2rem; }
.form-group { display:flex; flex-direction:column; gap:.45rem; margin-bottom:1.2rem; }
.form-group label { font-size:.78rem; font-weight:700; color:var(--navy); letter-spacing:.04em; text-transform:uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  background:var(--white); border:1.5px solid var(--cream);
  border-radius:var(--r-sm); padding:.82rem 1rem;
  font-family:'Instrument Sans',sans-serif; font-size:.9rem;
  color:var(--ink); outline:none; transition:border-color .2s; width:100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color:var(--teal); }
.form-group textarea { resize:vertical; min-height:120px; }
.form-success { display:none; text-align:center; padding:1.5rem; background:rgba(14,165,200,.08); border:1px solid var(--border); border-radius:var(--r); color:var(--teal); font-weight:600; font-size:.95rem; }

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

/* ════════ RESPONSIVE ════════ */
@media(max-width:1024px) {
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .why-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media(max-width:768px) {
  .container { padding:0 1.5rem; }
  .nav-links, .nav-cta { display:none; }
  .hamburger { display:flex; }
  .hero { padding:8rem 0 5rem; }
  .hero-inner, .about-grid, .story-grid, .contact-grid { grid-template-columns:1fr; gap:2.5rem; }
  .hero-right { display:none; }
  .services-grid { grid-template-columns:1fr; }
  .why-grid { grid-template-columns:1fr 1fr; }
  .process-steps { grid-template-columns:1fr 1fr; gap:2rem; }
  .process-steps::after { display:none; }
  .tgrid, .footer-grid, .stats-row { grid-template-columns:1fr 1fr; }
  .svc-row { grid-template-columns:1fr; gap:2rem; }
  .svc-row.reverse { direction:ltr; }
  .form-row { grid-template-columns:1fr; }
  .hero-stats { flex-wrap:wrap; gap:1.5rem; }
  .hero-btns, .cta-form { flex-direction:column; }
  .values-grid { grid-template-columns:1fr; }
}
@media(max-width:480px) {
  .why-grid, .process-steps, .tgrid, .stats-row { grid-template-columns:1fr; }
}

/* Pricing page */
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.8rem; align-items:stretch; }
.price-card { position:relative; background:var(--white); border:1px solid var(--cream); border-radius:var(--r); padding:2.6rem 2rem; text-align:center; transition:transform .3s, box-shadow .3s; display:flex; flex-direction:column; }
.price-card:hover { transform:translateY(-6px); box-shadow:var(--shadow); }
.price-card.popular { border:2px solid var(--teal); transform:scale(1.04); }
.price-card.popular:hover { transform:scale(1.04) translateY(-6px); }
.price-badge { position:absolute; top:-14px; left:50%; transform:translateX(-50%); background:linear-gradient(90deg,var(--teal),var(--teal2)); color:var(--navy); font-size:.7rem; font-weight:800; letter-spacing:.06em; text-transform:uppercase; padding:.45rem 1.1rem; border-radius:999px; white-space:nowrap; }
.price-plan-name { font-size:1rem; font-weight:700; color:var(--navy); text-transform:uppercase; letter-spacing:.05em; margin-bottom:.6rem; }
.price-amount { font-size:2.6rem; font-weight:800; color:var(--navy); line-height:1; margin-bottom:.3rem; }
.price-amount span { font-size:.95rem; font-weight:600; color:var(--muted); }
.price-tagline { font-size:.85rem; color:var(--muted); margin-bottom:1.8rem; }
.price-divider { height:1px; background:var(--cream); margin:0 0 1.6rem; }
.price-renewal-label { font-size:.72rem; text-transform:uppercase; letter-spacing:.07em; color:var(--teal2); font-weight:700; margin-bottom:.8rem; }
.price-renewal-list { list-style:none; padding:0; margin:0 0 2rem; flex-grow:1; }
.price-renewal-list li { font-size:.88rem; color:var(--muted); padding:.4rem 0; border-bottom:1px dashed var(--cream); display:flex; justify-content:space-between; }
.price-renewal-list li:last-child { border-bottom:none; }
.price-renewal-list strong { color:var(--navy); }
.price-card .btn-navy, .price-card .btn-primary { width:100%; justify-content:center; }
@media (max-width:900px){ .pricing-grid { grid-template-columns:1fr; } .price-card.popular { transform:none; } .price-card.popular:hover { transform:translateY(-6px); } }

.btn-outline-navy {
  display:inline-flex; align-items:center; gap:.5rem;
  background:transparent; color:var(--navy);
  padding:.85rem 2rem; border-radius:50px;
  font-weight:600; font-size:.9rem;
  border:1.5px solid var(--cream);
  transition:all .25s; cursor:pointer;
  font-family:'Instrument Sans',sans-serif;
}
.btn-outline-navy:hover { border-color:var(--navy); background:var(--paper); }

/* Careers page */
.job-card { background:var(--white); border:1px solid var(--cream); border-radius:var(--r); padding:2.4rem; margin-bottom:2rem; transition:box-shadow .3s; }
.job-card:hover { box-shadow:var(--shadow); }
.job-card-top { display:flex; justify-content:space-between; align-items:flex-start; flex-wrap:wrap; gap:1rem; margin-bottom:1.4rem; padding-bottom:1.4rem; border-bottom:1px solid var(--cream); }
.job-title { font-size:1.5rem; font-weight:800; color:var(--navy); margin-bottom:.5rem; }
.job-meta { display:flex; flex-wrap:wrap; gap:.6rem; }
.job-pill { font-size:.74rem; font-weight:700; text-transform:uppercase; letter-spacing:.05em; padding:.4rem .9rem; border-radius:999px; background:var(--paper); color:var(--muted); border:1px solid var(--cream); }
.job-pill.openings { background:rgba(14,165,200,.1); color:var(--teal2); border-color:transparent; }
.job-section-title { font-size:.95rem; font-weight:700; color:var(--navy); margin:1.4rem 0 .7rem; }
.job-card .svc-pg-features { margin-bottom:0; }
.job-apply-row { margin-top:2rem; display:flex; gap:1rem; flex-wrap:wrap; align-items:center; }
.job-salary { font-size:.92rem; color:var(--muted); }
.job-salary strong { color:var(--navy); }
