/* =========================================================
   JPM NEXUS — Premium Design System
   ========================================================= */
:root{
  --primary:#9A7A3D;
  --primary-dark:#80662F;
  --secondary:#C5A059;
  --accent:#14B8A6;
  --success:#22C55E;
  --bg:#FFFFFF;
  --bg-light:#F4F0E8;
  --text-dark:#0F172A;
  --text-grey:#6E6A62;
  --border:#E2E8F0;
  --radius:12px;
  --shadow-sm: 0 2px 10px rgba(15,23,42,0.05);
  --shadow-md: 0 10px 34px rgba(10,77,162,0.12);
  --shadow-lg: 0 24px 70px rgba(10,77,162,0.18);
  --ease: cubic-bezier(.16,.84,.32,1);
}
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
html.lenis, html.lenis body{height:auto;}
body{
  font-family:'Inter',sans-serif;
  color:var(--text-dark);
  background:var(--bg);
  line-height:1.6;
  overflow-x:hidden;
  position:relative;
}
h1,h2,h3,h4{font-family:'Poppins',sans-serif;font-weight:700;letter-spacing:-0.02em;}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}
img{max-width:100%;display:block;}
button{font-family:inherit;}
.container{max-width:1240px;margin:0 auto;padding:0 24px;position:relative;z-index:2;}
.section{padding:120px 0;position:relative;}
.section-light{background:var(--bg-light);}
.center{text-align:center;margin-left:auto;margin-right:auto;}

::selection{background:var(--primary);color:#fff;}

/* Reduced motion respect */
@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.001ms !important;animation-iteration-count:1 !important;transition-duration:0.001ms !important;scroll-behavior:auto !important;}
}

/* =========== NOISE TEXTURE OVERLAY =========== */
.noise-overlay{
  position:fixed;inset:0;z-index:9998;pointer-events:none;
  opacity:0.025;mix-blend-mode:overlay;
}

/* =========== EYEBROW + HEADINGS =========== */
.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-size:12.5px;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;
  color:var(--primary);background:rgba(10,77,162,0.08);
  padding:7px 16px 7px 12px;border-radius:30px;margin-bottom:20px;
}
.eyebrow::before{content:'';width:6px;height:6px;border-radius:50%;background:var(--accent);}

.section-title{font-size:clamp(28px,4vw,44px);margin-bottom:16px;color:var(--text-dark);}
.heading-underline{position:relative;display:inline-block;}
.heading-underline::after{
  content:'';position:absolute;left:0;bottom:-6px;height:4px;width:0%;
  background:linear-gradient(90deg,var(--primary),var(--accent));
  border-radius:3px;transition:width .9s var(--ease);
}
.heading-underline.in-view::after{width:100%;}
.section-sub{color:var(--text-grey);font-size:17px;max-width:640px;margin-bottom:54px;}

/* =========== BUTTONS =========== */
.btn{
  position:relative;display:inline-flex;align-items:center;gap:8px;
  padding:15px 32px;border-radius:10px;font-weight:600;font-size:15px;
  cursor:pointer;border:none;overflow:hidden;isolation:isolate;
  font-family:'Inter',sans-serif;transition:transform .35s var(--ease), box-shadow .35s var(--ease);
}
.btn-primary{
  background:linear-gradient(135deg,var(--primary),var(--secondary));
  color:#fff;box-shadow:0 10px 24px rgba(10,77,162,0.28);
}
.btn-primary::before{
  content:'';position:absolute;top:0;left:-130%;width:60%;height:100%;
  background:linear-gradient(120deg,transparent,rgba(255,255,255,0.55),transparent);
  transform:skewX(-20deg);z-index:1;transition:left .75s ease;
}
.btn-primary:hover::before{left:140%;}
.btn-primary:hover{transform:translateY(-3px);box-shadow:0 16px 36px rgba(10,77,162,0.38);}
.btn-outline{background:#fff;color:var(--primary);border:1.5px solid var(--border);}
.btn-outline:hover{border-color:var(--primary);background:rgba(10,77,162,0.04);transform:translateY(-3px);}
.btn span.label{position:relative;z-index:2;}
.magnetic{will-change:transform;}

/* =========== NAVBAR =========== */
header{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  background:rgba(255,255,255,0.72);
  backdrop-filter:blur(18px) saturate(160%);
  -webkit-backdrop-filter:blur(18px) saturate(160%);
  border-bottom:1px solid rgba(226,232,240,0.7);
  transition:box-shadow .3s ease, background .3s ease;
}
header.scrolled{background:rgba(255,255,255,0.9);box-shadow:0 4px 24px rgba(15,23,42,0.06);}
.navbar{display:flex;align-items:center;justify-content:space-between;padding:16px 24px;max-width:1280px;margin:0 auto;}
.logo{display:flex;align-items:center;gap:10px;font-family:'Poppins',sans-serif;font-weight:800;font-size:20px;color:var(--primary);}
.logo-mark{
  width:38px;height:38px;border-radius:9px;flex-shrink:0;
  background:linear-gradient(135deg,var(--primary),var(--accent));
  display:flex;align-items:center;justify-content:center;color:#fff;font-weight:800;font-size:16px;
  box-shadow:0 6px 16px rgba(10,77,162,0.3);
}
.nav-links{display:flex;gap:30px;}
.nav-links a{font-size:14.5px;font-weight:500;color:var(--text-dark);position:relative;padding:4px 0;}
.nav-links a::after{content:'';position:absolute;bottom:-2px;left:0;width:0;height:2px;background:linear-gradient(90deg,var(--primary),var(--accent));transition:width .3s var(--ease);}
.nav-links a:hover::after,.nav-links a.active::after{width:100%;}
.nav-links a:hover,.nav-links a.active{color:var(--primary);}
.nav-cta{display:flex;align-items:center;gap:18px;}
.menu-toggle{display:none;background:none;border:none;font-size:22px;cursor:pointer;color:var(--primary);}
.mobile-menu{
  display:none;position:fixed;inset:0;top:72px;background:rgba(255,255,255,0.98);backdrop-filter:blur(10px);
  z-index:999;padding:30px 24px;flex-direction:column;gap:6px;
}
.mobile-menu.open{display:flex;}
.mobile-menu a{padding:14px 4px;font-size:17px;font-weight:600;border-bottom:1px solid var(--border);}

/* =========== BACKGROUND ATMOSPHERE: orbs + mesh + particles =========== */
.bg-atmosphere{position:absolute;inset:0;overflow:hidden;z-index:0;pointer-events:none;}
.orb{
  position:absolute;border-radius:50%;filter:blur(60px);opacity:0.35;
  animation:floatOrb 16s ease-in-out infinite;
}
.orb-gold{width:420px;height:420px;background:radial-gradient(circle,var(--secondary),transparent 70%);top:-120px;left:-100px;}
.orb-gold-accent{width:380px;height:380px;background:radial-gradient(circle,var(--accent),transparent 70%);bottom:-140px;right:-80px;animation-delay:-6s;}
.orb-gold2{width:260px;height:260px;background:radial-gradient(circle,var(--primary),transparent 70%);top:40%;right:10%;animation-delay:-3s;opacity:0.22;}
@keyframes floatOrb{
  0%,100%{transform:translate(0,0) scale(1);}
  33%{transform:translate(30px,-25px) scale(1.06);}
  66%{transform:translate(-20px,18px) scale(0.96);}
}
canvas.particles-canvas{position:absolute;inset:0;width:100%;height:100%;}

.mesh-gradient{
  position:absolute;inset:0;z-index:0;
  background:
    radial-gradient(at 20% 20%, rgba(0,153,216,0.10) 0px, transparent 50%),
    radial-gradient(at 80% 15%, rgba(20,184,166,0.10) 0px, transparent 50%),
    radial-gradient(at 50% 80%, rgba(10,77,162,0.07) 0px, transparent 55%);
  background-size:200% 200%;
  animation:meshShift 22s ease-in-out infinite;
}
@keyframes meshShift{
  0%,100%{background-position:0% 0%;}
  50%{background-position:100% 100%;}
}

/* cursor glow that follows mouse, used inside hero / dark sections */
.glow-follow{
  position:absolute;width:420px;height:420px;border-radius:50%;
  background:radial-gradient(circle, rgba(0,153,216,0.18), transparent 65%);
  pointer-events:none;z-index:0;transform:translate(-50%,-50%);
  transition:opacity .4s ease;left:50%;top:30%;opacity:0;
}
.glow-active .glow-follow{opacity:1;}

/* =========== GLASS FLOATING SHAPES =========== */
.glass-shape{
  position:absolute;border-radius:24px;
  background:rgba(255,255,255,0.35);
  border:1px solid rgba(255,255,255,0.5);
  backdrop-filter:blur(12px);
  box-shadow:0 8px 32px rgba(10,77,162,0.10);
  animation:floatShape 9s ease-in-out infinite;
}
@keyframes floatShape{
  0%,100%{transform:translateY(0) rotate(0deg);}
  50%{transform:translateY(-18px) rotate(3deg);}
}

/* =========== SVG SECTION DIVIDERS =========== */
.divider{display:block;width:100%;line-height:0;position:relative;z-index:1;}
.divider svg{display:block;width:100%;height:70px;}

/* =========== CARDS: animated gradient border + tilt + depth =========== */
.grid{display:grid;gap:24px;}
.grid-3{grid-template-columns:repeat(3,1fr);}
.grid-4{grid-template-columns:repeat(4,1fr);}

.gcard{
  position:relative;border-radius:var(--radius);padding:2px;
  background:linear-gradient(135deg, rgba(226,232,240,0.9), rgba(226,232,240,0.9));
  transition:transform .15s ease;
  perspective:800px;
}
.gcard::before{
  content:'';position:absolute;inset:0;border-radius:var(--radius);padding:1.5px;
  background:conic-gradient(from var(--angle,0deg), var(--primary), var(--accent), var(--secondary), var(--primary));
  -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity:0; transition:opacity .4s ease;
  animation:rotateBorder 4s linear infinite paused;
}
.gcard:hover::before{opacity:1;animation-play-state:running;}
@property --angle{ syntax:'<angle>'; inherits:false; initial-value:0deg; }
@keyframes rotateBorder{ to{ --angle:360deg; } }

.card{
  background:#fff;border-radius:var(--radius);
  padding:30px;transition:transform .4s var(--ease), box-shadow .4s var(--ease);
  box-shadow:var(--shadow-sm);height:100%;will-change:transform;
}
.gcard:hover .card{box-shadow:var(--shadow-md);}
.card-icon{
  width:52px;height:52px;border-radius:12px;
  background:linear-gradient(135deg,rgba(10,77,162,0.1),rgba(20,184,166,0.12));
  display:flex;align-items:center;justify-content:center;margin-bottom:20px;font-size:24px;
  transition:transform .4s var(--ease);
}
.gcard:hover .card-icon{transform:scale(1.12) rotate(-4deg);}
.card h4{font-size:17px;margin-bottom:8px;}
.card p{font-size:14.5px;color:var(--text-grey);}

/* =========== HERO =========== */
.hero{
  position:relative;padding:180px 0 120px;
  background:linear-gradient(180deg,#F4F0E8 0%, #FFFFFF 100%);
  overflow:hidden;
}
.hero-grid{display:grid;grid-template-columns:1.1fr 0.9fr;gap:60px;align-items:center;}
.hero-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:#fff;border:1px solid var(--border);
  padding:8px 16px;border-radius:30px;font-size:13px;font-weight:600;color:var(--primary);
  box-shadow:var(--shadow-sm);margin-bottom:26px;
}
.hero h1{font-size:clamp(36px,5vw,58px);line-height:1.12;margin-bottom:22px;}
.hero h1 .gradient-text{background:linear-gradient(135deg,var(--primary),var(--secondary));-webkit-background-clip:text;background-clip:text;color:transparent;background-size:200% auto;animation:gradientShift 6s ease infinite;}
@keyframes gradientShift{0%,100%{background-position:0% center;}50%{background-position:100% center;}}
.hero p.lead{font-size:18px;color:var(--text-grey);max-width:540px;margin-bottom:34px;}
.hero-buttons{display:flex;gap:16px;flex-wrap:wrap;margin-bottom:50px;}
.trust-badges{display:flex;flex-wrap:wrap;gap:14px 28px;}
.trust-item{display:flex;align-items:center;gap:8px;font-size:14px;font-weight:600;color:var(--text-dark);}
.trust-item .dot{width:8px;height:8px;border-radius:50%;background:var(--success);}
.hero-visual{position:relative;}

.hero-card{
  background:rgba(255,255,255,0.7);backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,0.6);
  border-radius:20px;box-shadow:var(--shadow-lg);
  padding:30px;position:relative;z-index:2;will-change:transform;
}
.hero-img{width:100%;height:340px;border-radius:14px;object-fit:cover;overflow:hidden;}
.float-stat{
  position:absolute;background:#fff;border-radius:14px;box-shadow:var(--shadow-md);
  padding:16px 20px;z-index:3;border:1px solid var(--border);
}
.float-stat strong{display:block;font-family:'Poppins',sans-serif;font-size:22px;color:var(--primary);}
.float-stat span{font-size:12.5px;color:var(--text-grey);}
.float-1{top:-22px;right:-22px;}
.float-2{bottom:-22px;left:-22px;}

/* page hero (interior pages) */
.page-hero{
  position:relative;padding:170px 0 90px;overflow:hidden;
  background:linear-gradient(180deg,#F4F0E8 0%, #FFFFFF 100%);
}
.page-hero h1{font-size:clamp(32px,4.5vw,50px);margin-bottom:16px;}
.page-hero p{font-size:17px;color:var(--text-grey);max-width:620px;}
.breadcrumb{font-size:13px;color:var(--text-grey);margin-bottom:18px;}
.breadcrumb a{color:var(--primary);font-weight:600;}

/* =========== LOGO STRIP =========== */
.logo-strip{padding:40px 0;border-top:1px solid var(--border);border-bottom:1px solid var(--border);position:relative;}
.logo-strip p{text-align:center;font-size:13px;letter-spacing:0.08em;text-transform:uppercase;color:var(--text-grey);font-weight:600;margin-bottom:26px;}
.logo-row{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:20px;opacity:0.55;}
.logo-row span{font-family:'Poppins',sans-serif;font-weight:700;font-size:17px;color:var(--text-dark);}

/* =========== WHY CHOOSE =========== */
.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;}
.why-num{font-family:'Poppins',sans-serif;font-weight:800;font-size:14px;color:var(--secondary);margin-bottom:10px;}

/* =========== INDUSTRIES =========== */
.industry-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;}
.industry-item{
  position:relative;background:#fff;border:1px solid var(--border);border-radius:var(--radius);
  padding:26px 20px;text-align:center;font-weight:600;font-size:14.5px;
  transition:transform .4s var(--ease), color .4s ease, border-color .4s ease;
  cursor:default;overflow:hidden;isolation:isolate;
}
.industry-item::before{
  content:'';position:absolute;inset:0;z-index:-1;
  background:linear-gradient(135deg,var(--primary),var(--secondary));
  transform:translateY(100%);transition:transform .4s var(--ease);
}
.industry-item:hover::before{transform:translateY(0);}
.industry-item:hover{color:#fff;transform:translateY(-5px);border-color:transparent;box-shadow:var(--shadow-md);}

/* =========== PROCESS TIMELINE =========== */
.timeline{position:relative;max-width:900px;margin:0 auto;}
.timeline::before{
  content:'';position:absolute;left:29px;top:10px;bottom:10px;width:2px;
  background:var(--border);
}
.timeline-progress{
  content:'';position:absolute;left:29px;top:10px;width:2px;height:0%;
  background:linear-gradient(180deg,var(--primary),var(--accent));
  transition:height .1s linear;z-index:1;
}
.t-step{display:flex;gap:24px;padding-bottom:54px;position:relative;}
.t-step:last-child{padding-bottom:0;}
.t-num{
  width:60px;height:60px;border-radius:50%;flex-shrink:0;
  background:#fff;border:2px solid var(--border);color:var(--primary);
  display:flex;align-items:center;justify-content:center;
  font-family:'Poppins',sans-serif;font-weight:700;font-size:20px;
  z-index:2;transition:all .4s var(--ease);
}
.t-step.active .t-num{
  background:linear-gradient(135deg,var(--primary),var(--secondary));
  color:#fff;border-color:transparent;
  box-shadow:0 10px 26px rgba(10,77,162,0.35);
  transform:scale(1.08);
}
.t-content h4{font-size:18px;margin-bottom:6px;padding-top:14px;}
.t-content p{color:var(--text-grey);font-size:14.5px;}

/* =========== STATS =========== */
.stats-section{
  position:relative;background:linear-gradient(135deg,var(--primary) 0%, var(--primary-dark) 100%);
  padding:90px 0;overflow:hidden;
}
.stats-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:20px;text-align:center;position:relative;z-index:2;}
.stat-num{font-family:'Poppins',sans-serif;font-weight:800;font-size:44px;color:#fff;}
.stat-label{color:rgba(255,255,255,0.75);font-size:14px;margin-top:6px;}

/* =========== TESTIMONIALS — smooth rolling slider =========== */
.testi-carousel{
  position:relative;
  max-width:740px;
  margin:0 auto;
  overflow:hidden;
  border-radius:18px;
}
.testi-track{
  display:flex;
  width:100%;
  will-change:transform;
  transition:transform .85s cubic-bezier(.22,.61,.36,1);
}
.testi-slide{
  flex:0 0 100%;
  box-sizing:border-box;
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:36px;
  box-shadow:var(--shadow-md);
}
.testi-slide .stars{color:#F59E0B;font-size:16px;margin-bottom:16px;letter-spacing:2px;}
.testi-slide p{font-size:18px;color:var(--text-dark);margin-bottom:24px;line-height:1.7;}
.testi-person{display:flex;align-items:center;gap:14px;}
.avatar{width:48px;height:48px;border-radius:50%;background:linear-gradient(135deg,var(--secondary),var(--accent));flex-shrink:0;}
.testi-person strong{font-size:14.5px;display:block;}
.testi-person span{font-size:12.5px;color:var(--text-grey);}
.testi-nav{display:flex;gap:10px;justify-content:center;margin-top:30px;}
.testi-dot{
  width:9px;height:9px;padding:0;border:0;border-radius:50%;
  background:var(--border);cursor:pointer;
  transition:all .3s ease;
}
.testi-dot.active{background:var(--primary);width:26px;border-radius:5px;}

.testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.testi-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius);padding:30px;box-shadow:var(--shadow-sm);transition:transform .4s var(--ease), box-shadow .4s var(--ease);}
.testi-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-md);}
.testi-card p{font-size:14.5px;color:var(--text-dark);margin-bottom:20px;}

/* =========== FAQ =========== */
.faq-item{border-bottom:1px solid var(--border);}
.faq-q{
  display:flex;justify-content:space-between;align-items:center;
  padding:22px 4px;cursor:pointer;font-weight:600;font-size:16px;
}
.faq-q .icon{font-size:20px;color:var(--primary);transition:transform .35s var(--ease);}
.faq-item.open .faq-q .icon{transform:rotate(45deg);}
.faq-a{max-height:0;overflow:hidden;transition:max-height .4s var(--ease);}
.faq-item.open .faq-a{max-height:260px;}
.faq-a p{padding-bottom:22px;color:var(--text-grey);font-size:14.5px;max-width:760px;}

/* =========== BLOG =========== */
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.blog-card{border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;background:#fff;transition:transform .4s var(--ease), box-shadow .4s var(--ease);}
.blog-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-md);}
.blog-img{height:180px;background:linear-gradient(135deg,var(--secondary),var(--accent));overflow:hidden;position:relative;}
.blog-img::after{content:'';position:absolute;inset:0;background:rgba(10,77,162,0.08);transition:transform .6s var(--ease);}
.blog-card:hover .blog-img::after{transform:scale(1.15);}
.blog-body{padding:22px;}
.blog-tag{font-size:11.5px;font-weight:700;color:var(--secondary);text-transform:uppercase;letter-spacing:.05em;}
.blog-body h4{font-size:16.5px;margin:10px 0 8px;}
.blog-body p{font-size:13.5px;color:var(--text-grey);}

/* =========== CTA STRIP =========== */
.cta-strip{
  position:relative;background:linear-gradient(135deg,var(--primary),var(--secondary));
  border-radius:24px;padding:64px;display:flex;align-items:center;justify-content:space-between;
  flex-wrap:wrap;gap:24px;color:#fff;overflow:hidden;
}
.cta-strip h3{font-size:28px;margin-bottom:8px;}
.cta-strip p{color:rgba(255,255,255,0.85);}
.cta-strip .btn-outline{background:#fff;color:var(--primary);border:none;}

/* =========== CONTACT =========== */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:start;}
.contact-info-item{display:flex;gap:16px;margin-bottom:24px;}
.contact-info-item .ic{
  width:46px;height:46px;border-radius:10px;background:rgba(10,77,162,0.08);
  display:flex;align-items:center;justify-content:center;color:var(--primary);font-size:20px;flex-shrink:0;
}
.contact-info-item strong{display:block;font-size:15px;margin-bottom:2px;}
.contact-info-item span{font-size:14px;color:var(--text-grey);}
.map-box{height:200px;border-radius:var(--radius);background:linear-gradient(135deg,#F1ECE2,#F1ECE2);margin-top:10px;display:flex;align-items:center;justify-content:center;color:var(--text-grey);font-size:13px;border:1px solid var(--border);}
.form-box{background:#fff;border:1px solid var(--border);border-radius:var(--radius);padding:32px;box-shadow:var(--shadow-sm);}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:16px;}
input,textarea,select{
  width:100%;padding:13px 16px;border:1.5px solid var(--border);border-radius:9px;
  font-family:'Inter',sans-serif;font-size:14.5px;outline:none;transition:border .25s ease, box-shadow .25s ease;
}
input:focus,textarea:focus,select:focus{border-color:var(--primary);box-shadow:0 0 0 4px rgba(10,77,162,0.08);}
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline:2px solid var(--secondary);outline-offset:2px;
}

/* =========== FOOTER =========== */
footer{background:#2A2823;color:#cbd5e1;padding:70px 0 30px;position:relative;overflow:hidden;}
.footer-grid{display:flex;flex-wrap:wrap;justify-content:space-between;gap:40px;margin-bottom:50px;}
.footer-grid>div:first-child{flex:1 1 300px;max-width:340px;}
.footer-grid>div:not(:first-child){flex:0 0 auto;min-width:150px;}
.footer-logo{display:flex;align-items:center;gap:10px;font-family:'Poppins',sans-serif;font-weight:800;font-size:19px;color:#fff;margin-bottom:14px;}
footer h5{color:#fff;font-size:14.5px;margin-bottom:18px;}
footer ul li{margin-bottom:11px;font-size:14px;}
footer ul li a:hover{color:var(--secondary);}
.footer-bottom{border-top:1px solid rgba(255,255,255,0.1);padding-top:24px;display:flex;justify-content:space-between;flex-wrap:wrap;gap:14px;font-size:13px;color:#8B867D;}

/* Legal / policy pages (Privacy Policy, Terms, Disclaimer) */
.legal-content{max-width:820px;padding-top:10px;padding-bottom:10px;}
.legal-content h2{font-size:22px;margin:38px 0 14px;color:var(--text-dark);}
.legal-content h2:first-of-type{margin-top:6px;}
.legal-content p{font-size:15.5px;line-height:1.75;color:var(--text-grey);margin-bottom:14px;}
.legal-content ul{list-style:disc;padding-left:22px;margin-bottom:14px;}
.legal-content ul li{font-size:15.5px;line-height:1.75;color:var(--text-grey);margin-bottom:8px;}
.legal-content strong{color:var(--text-dark);}
.legal-content a{color:var(--primary);text-decoration:underline;}
.social-icons{display:flex;gap:12px;}
.social-icons a{width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,0.08);display:flex;align-items:center;justify-content:center;font-size:14px;transition:all .3s ease;}
.social-icons a:hover{background:var(--secondary);transform:translateY(-3px);}

/* =========== FLOATING UI =========== */
.whatsapp-float{
  position:fixed;bottom:28px;right:28px;width:58px;height:58px;border-radius:50%;
  background:#22C55E;display:flex;align-items:center;justify-content:center;color:#fff;
  font-size:26px;box-shadow:0 10px 25px rgba(34,197,94,0.4);z-index:999;cursor:pointer;transition:transform .3s var(--ease);
}
.whatsapp-float:hover{transform:scale(1.1);}
.totop{
  position:fixed;bottom:28px;right:96px;width:46px;height:46px;border-radius:50%;
  background:#fff;border:1px solid var(--border);display:flex;align-items:center;justify-content:center;
  color:var(--primary);box-shadow:var(--shadow-md);z-index:999;cursor:pointer;opacity:0;pointer-events:none;transition:all .35s var(--ease);
}
.totop.show{opacity:1;pointer-events:auto;}

/* =========== PRELOADER =========== */
#preloader{
  position:fixed;inset:0;z-index:10000;background:#fff;
  display:flex;align-items:center;justify-content:center;flex-direction:column;gap:18px;
  transition:opacity .6s ease, visibility .6s ease;
}
#preloader.hide{opacity:0;visibility:hidden;}
.preloader-mark{
  width:56px;height:56px;border-radius:14px;
  background:linear-gradient(135deg,var(--primary),var(--accent));
  display:flex;align-items:center;justify-content:center;color:#fff;font-weight:800;font-family:'Poppins',sans-serif;
  font-size:20px;animation:pulseMark 1.1s ease-in-out infinite;
}
@keyframes pulseMark{0%,100%{transform:scale(1);}50%{transform:scale(0.88);}}
.preloader-bar{width:160px;height:3px;background:var(--border);border-radius:3px;overflow:hidden;}
.preloader-bar span{display:block;height:100%;width:0%;background:linear-gradient(90deg,var(--primary),var(--accent));border-radius:3px;}

/* =========== REVEAL ANIMATIONS =========== */
.reveal{opacity:0;transform:translateY(32px);transition:opacity .8s var(--ease), transform .8s var(--ease);}
.reveal.in{opacity:1;transform:translateY(0);}
.reveal-scale{opacity:0;transform:scale(0.92);transition:opacity .8s var(--ease), transform .8s var(--ease);}
.reveal-scale.in{opacity:1;transform:scale(1);}
.stagger > *{transition-delay:calc(var(--i,0) * 70ms);}

/* =========== RESPONSIVE =========== */
@media(max-width:980px){
  .nav-links,.nav-cta .btn-outline{display:none;}
  .menu-toggle{display:block;}
  .hero-grid{grid-template-columns:1fr;}
  .grid-3,.grid-4,.why-grid,.industry-grid,.testi-grid,.blog-grid{grid-template-columns:repeat(2,1fr);}
  .stats-grid{grid-template-columns:repeat(2,1fr);row-gap:30px;}
  .footer-grid{grid-template-columns:repeat(2,1fr);}
  .contact-grid{grid-template-columns:1fr;}
}
@media(max-width:600px){
  .grid-3,.grid-4,.why-grid,.industry-grid,.testi-grid,.blog-grid{grid-template-columns:1fr;}
  .stats-grid{grid-template-columns:repeat(2,1fr);}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .form-row{grid-template-columns:1fr;}
  .cta-strip{padding:36px;text-align:center;justify-content:center;}
  .section{padding:80px 0;}
}
/*==========================
Dashboard Hero
==========================*/

.dashboard-card{background:rgba(255,255,255,.08);backdrop-filter:blur(25px);border-radius:30px;padding:30px;overflow:hidden;position:relative;box-shadow:0 30px 70px rgba(0,0,0,.25);border:1px solid rgba(255,255,255,.12);animation:floatCard 6s ease-in-out infinite;}

@keyframes floatCard{0%,100%{transform:translateY(0);}50%{transform:translateY(-10px);}

}.dashboard-card::before{content:"";position:absolute;width:300px;height:300px;background:#C5A059;filter:blur(120px);right:-80px;top:-80px;opacity:.25;}.dashboard-top{display:flex;align-items:center;gap:10px;margin-bottom:25px;color:rgb(11, 4, 61);}.live{width:12px;height:12px;border-radius:50%;background:#22c55e;animation:pulse 1.6s infinite;}

@keyframes pulse{0%{box-shadow:0 0 0 0 rgba(34,197,94,.8);}100%{box-shadow:0 0 0 16px rgba(34,197,94,0);}

}.dashboard-score{display:flex;align-items:center;gap:25px;margin-bottom:25px;}.circle{width:110px;height:110px;border-radius:50%;background:conic-gradient(#C5A059 98%,rgba(255,255,255,.15) 0);display:flex;align-items:center;justify-content:center;}.circle span{background:#e4eefa;width:82px;height:82px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:24px;color:#0e2645;}.score-details h2{color:rgb(91, 92, 101);margin-bottom:5px;}.score-details p{color:#6f757c;}.status-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:15px;margin-bottom:25px;}.status{padding:16px;border-radius:18px;background:rgba(255,255,255,.08);}.status h4{color:rgba(80, 81, 83, 0.719);margin-bottom:5px;}.status p{font-size:14px;}.success p{color:#22c55e;}.warning p{color:#f59e0b;}#dashboardChart{width:100%;height:180px;margin:20px 0;}.dashboard-stats{display:flex;justify-content:space-between;text-align:center;}.dashboard-stats h2{color:#C5A059;font-size:32px;}.dashboard-stats p{color:rgb(3, 19, 73);}/*======================================================
JPM NEXUS GLASS CUBE — About page hero visual
======================================================*/

.compliance-scene{position:relative;width:100%;height:100%;overflow:hidden;display:flex;justify-content:center;align-items:center;background:
    radial-gradient(circle at center,#3B3730 0%,#071226 70%,#040913 100%);}.hero-img.compliance-scene{display:flex !important;justify-content:center !important;align-items:center !important;background:radial-gradient(circle at center,#3B3730 0%,#071226 70%,#040913 100%) !important;width:100%;height:100% !important;position:relative;overflow:hidden;perspective:1100px;isolation:isolate;}.ambient-glow{position:absolute;width:620px;height:620px;background:
    radial-gradient(circle,
      rgba(50,180,255,.38),
      rgba(0,120,255,.10),
      transparent 72%);filter:blur(55px);animation:glowPulse 5s ease-in-out infinite;pointer-events:none;}.cube-particles{position:absolute;inset:0;pointer-events:none;z-index:1;}.particle{position:absolute;width:3px;height:3px;border-radius:50%;background:#C5A059;box-shadow:0 0 6px 2px rgba(143,212,255,.7);opacity:.55;}/* flat overlay that sits above the 3D cube — labels live here so they
   are always horizontal and fully readable regardless of cube rotation */
.labels-overlay{position:absolute;left:50%;top:50%;width:0;height:0;z-index:6;pointer-events:none;}.cube-label{position:absolute;left:0;top:0;font-family:'Inter',sans-serif;font-size:12.5px;font-weight:600;color:#e6f4ff;text-shadow:0 0 10px rgba(100,180,255,0.9), 0 0 2px rgba(0,0,0,0.6);white-space:nowrap;background:rgba(8,25,60,0.55);border:1px solid rgba(140,210,255,0.35);padding:4px 10px;border-radius:8px;backdrop-filter:blur(3px);will-change:transform, opacity;}.cube-wrapper{position:relative;width:420px;height:420px;transform-style:preserve-3d;will-change:transform;}.cube-face{position:absolute;width:330px;height:330px;left:50%;top:50%;margin-left:-165px;margin-top:-165px;background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.08),
      rgba(255,255,255,.02));backdrop-filter:blur(18px);border:1px solid rgba(120,220,255,.30);box-shadow:
    0 0 22px rgba(0,170,255,.35),
    inset 0 0 24px rgba(255,255,255,.06),
    inset 0 0 70px rgba(0,180,255,.08);}.front{transform:translateZ(165px);}.back{transform:rotateY(180deg) translateZ(165px);}.left{transform:rotateY(-90deg) translateZ(165px);}.right{transform:rotateY(90deg) translateZ(165px);}.top{transform:rotateX(90deg) translateZ(165px);}.bottom{transform:rotateX(-90deg) translateZ(165px);}/* ---- nodes (center platform + surrounding icons, true 3D children) ---- */
.node{transform-style:preserve-3d;will-change:transform;}.node-icon{width:46px;height:46px;border-radius:12px;background:linear-gradient(145deg, rgba(90,150,255,0.24), rgba(20,40,90,0.14));border:1px solid rgba(140,200,255,0.45);backdrop-filter:blur(4px);display:flex;align-items:center;justify-content:center;box-shadow:
    inset 0 0 12px rgba(140,200,255,0.28),
    0 0 18px rgba(70,140,255,0.4);}.node-icon svg{width:25px;height:25px;}.core-platform{width:150px;height:150px;display:flex;flex-direction:column;justify-content:center;align-items:center;background:
    linear-gradient(
      135deg,
      rgba(90,180,255,.30),
      rgba(255,255,255,.08));backdrop-filter:blur(16px);border:1px solid rgba(170,240,255,.35);box-shadow:0 0 34px rgba(0,180,255,.5);border-radius:14px;color:white;letter-spacing:2px;animation:glowPulse 3.5s infinite;}.core-platform span{font-size:13px;font-weight:600;}.core-platform strong{font-size:24px;}/* ---- connecting beams ---- */
.beams{position:absolute;transform-style:preserve-3d;}.beam{position:absolute;height:2px;transform-origin:0 50%;background:linear-gradient(90deg, rgba(120,190,255,0.9), rgba(120,190,255,0.15));box-shadow:0 0 8px 1px rgba(100,180,255,0.6);}

/* ---- keyframes ---- */
@keyframes glowPulse{0%,100%{filter:brightness(1);opacity:.8;}50%{filter:brightness(1.35);opacity:1;}
}

@keyframes beamPulse{0%,100%{opacity:.35;}50%{opacity:.95;}
}

@keyframes particleFloat{0%,100%{transform:translateY(0) translateX(0);opacity:.3;}50%{transform:translateY(-18px) translateX(6px);opacity:.9;}
}/*======================================================
"OUR STORY" SECTION — matches the cube box background
(scoped to .section-story-dark only — no other section/page affected)
======================================================*/
.section-story-dark{background:
    radial-gradient(circle at 30% 40%,#3B3730 0%,#3B3730 40%,#071226 75%,#040913 100%);}.section-story-dark .eyebrow{background:rgba(143,212,255,0.12);color:#C5A059;}.section-story-dark .eyebrow::before{background:#C5A059;}.section-story-dark .section-title{color:#eaf3ff;}.section-story-dark p{color:#7A746A !important;}
/* Smooth testimonial slider on smaller screens */
@media (max-width: 600px){
  .testi-slide{padding:26px 22px;}
  .testi-slide p{font-size:16px;line-height:1.6;}
}

/* =========================================================
   MEET THE TEAM — editorial showcase
   ========================================================= */
.team-section{background:#f7f9fc;overflow:hidden;padding-top:105px;padding-bottom:120px;}
.team-intro{display:grid;grid-template-columns:minmax(0,1fr) minmax(300px,430px);gap:70px;align-items:end;margin-bottom:62px;}
.team-intro-copy{font-size:15px;line-height:1.85;color:#6E6A62;max-width:430px;justify-self:end;margin:0;}
.team-showcase{position:relative;}
.team-owner-wrap{margin-bottom:72px;}
.team-owner{position:relative;width:100%;min-height:430px;border:1px solid #dce4ee;background:#071426;color:#fff;border-radius:28px;padding:42px 52px;display:grid;grid-template-columns:46% 54%;align-items:center;text-align:left;overflow:hidden;cursor:pointer;appearance:none;font:inherit;box-shadow:0 28px 80px rgba(8,31,62,.12);transition:transform .7s var(--ease),box-shadow .7s var(--ease),border-color .7s var(--ease);}
.team-owner::before{content:'';position:absolute;width:620px;height:620px;border-radius:50%;left:-220px;top:-230px;border:1px solid rgba(143,212,255,.10);box-shadow:0 0 0 70px rgba(143,212,255,.018),0 0 0 140px rgba(143,212,255,.012);pointer-events:none;}
.team-owner::after{content:'01';position:absolute;right:28px;bottom:-55px;font-family:'Poppins',sans-serif;font-size:190px;line-height:1;font-weight:800;letter-spacing:-.09em;color:rgba(255,255,255,.025);pointer-events:none;}
.team-owner:hover,.team-owner:focus-visible,.team-owner.is-active{transform:translateY(-5px);box-shadow:0 38px 90px rgba(8,31,62,.19);border-color:rgba(143,212,255,.32);outline:none;}
.owner-meta{position:absolute;left:52px;top:36px;z-index:8;font:700 11px/1 'Poppins',sans-serif;letter-spacing:.16em;color:#C5A059;display:flex;align-items:center;gap:14px;}
.owner-meta span{color:#8B867D;font-size:9px;letter-spacing:.14em;}
.owner-visual{position:relative;width:350px;height:350px;justify-self:center;display:block;z-index:2;}
.owner-orbit{position:absolute;border:1px solid rgba(143,212,255,.2);border-radius:50%;inset:16px;transition:transform .9s var(--ease),opacity .8s var(--ease);}
.owner-orbit.orbit-two{inset:54px;border-color:rgba(143,212,255,.10);transform:rotate(18deg) scaleX(.72);}
.team-owner:hover .orbit-one,.team-owner.is-active .orbit-one{transform:rotate(22deg) scale(1.04);}
.team-owner:hover .orbit-two,.team-owner.is-active .orbit-two{transform:rotate(-20deg) scaleX(.78);}
.owner-photo-frame{position:absolute;inset:52px;border-radius:48% 52% 45% 55%;overflow:hidden;background:linear-gradient(145deg,#E6DCCB,#0b1d35);border:1px solid rgba(143,212,255,.38);transform:rotate(-4deg);box-shadow:inset 0 0 50px rgba(143,212,255,.08),0 25px 55px rgba(0,0,0,.28);transition:transform .8s var(--ease),border-radius .8s var(--ease);}
.team-owner:hover .owner-photo-frame,.team-owner.is-active .owner-photo-frame{transform:rotate(0deg) scale(1.025);border-radius:42% 58% 50% 50%;}
.owner-photo-frame img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .9s var(--ease);}
.team-owner:hover .owner-photo-frame img,.team-owner.is-active .owner-photo-frame img{transform:scale(1.045);}
.owner-photo-missing .owner-fallback{opacity:1;}
.owner-fallback{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;font:800 92px/1 'Poppins',sans-serif;letter-spacing:-.08em;color:#C5A059;background:radial-gradient(circle at 50% 40%,rgba(56,189,248,.18),rgba(7,18,38,.96));}
.owner-photo-frame:not(.owner-photo-missing) .owner-fallback{opacity:0;}
.owner-content{position:relative;z-index:5;padding:35px 0 12px 10px;max-width:570px;display:flex;flex-direction:column;align-items:flex-start;}
.owner-kicker{font:700 10px/1.2 'Inter',sans-serif;letter-spacing:.18em;color:#C5A059;text-transform:uppercase;margin-bottom:14px;}
.owner-name{font:800 clamp(32px,4vw,54px)/1.02 'Poppins',sans-serif;letter-spacing:-.055em;}
.owner-role{font:600 13px/1.4 'Inter',sans-serif;letter-spacing:.12em;text-transform:uppercase;color:#6E6A62;margin-top:12px;}
.owner-description{max-width:490px;color:#6E6A62;font-size:14px;line-height:1.8;margin-top:24px;opacity:.92;}
.team-tags{display:flex;flex-wrap:wrap;gap:7px;margin-top:20px;}
.team-tags span{font:700 9px/1 'Inter',sans-serif;letter-spacing:.08em;text-transform:uppercase;padding:8px 10px;border:1px solid rgba(143,212,255,.20);background:rgba(143,212,255,.07);color:#80662F;border-radius:999px;transform:translateY(6px);opacity:.72;transition:transform .55s var(--ease),opacity .55s var(--ease),background .55s var(--ease);}
.team-owner:hover .team-tags span,.team-owner.is-active .team-tags span{transform:none;opacity:1;}
.team-owner:hover .team-tags span:nth-child(2),.team-owner.is-active .team-tags span:nth-child(2){transition-delay:.06s;}
.team-owner:hover .team-tags span:nth-child(3),.team-owner.is-active .team-tags span:nth-child(3){transition-delay:.12s;}
.owner-arrow{position:absolute;right:40px;top:36px;font:400 23px/1 'Inter',sans-serif;color:#C5A059;opacity:.65;transition:transform .6s var(--ease),opacity .6s var(--ease);z-index:7;}
.team-owner:hover .owner-arrow,.team-owner.is-active .owner-arrow{transform:translate(4px,-4px);opacity:1;}
.team-list-head{display:flex;justify-content:space-between;align-items:center;padding:0 3px 18px;border-bottom:1px solid #d9e1eb;color:#8B867D;font:700 9px/1 'Inter',sans-serif;letter-spacing:.18em;text-transform:uppercase;}
.team-list{border-top:0;}
.team-row{position:relative;width:100%;min-height:126px;border:0;border-bottom:1px solid #d9e1eb;background:transparent;display:grid;grid-template-columns:minmax(0,1.05fr) minmax(250px,.95fr) 74px;align-items:center;gap:30px;padding:20px 4px 20px 0;text-align:left;cursor:pointer;appearance:none;font:inherit;color:#0b172a;transition:background .6s var(--ease),padding .6s var(--ease),border-color .6s var(--ease);}
.team-row::before{content:'';position:absolute;left:-24px;right:-24px;top:8px;bottom:8px;background:#fff;border:1px solid transparent;border-radius:18px;opacity:0;transform:scale(.985);transition:opacity .55s var(--ease),transform .65s var(--ease),border-color .55s var(--ease),box-shadow .55s var(--ease);z-index:0;pointer-events:none;}
.team-row:hover,.team-row:focus-visible,.team-row.is-active{padding-left:18px;padding-right:18px;outline:none;}
.team-row:hover::before,.team-row:focus-visible::before,.team-row.is-active::before{opacity:1;transform:none;border-color:#e0e7ef;box-shadow:0 18px 45px rgba(14,40,70,.08);}
.team-row > *{position:relative;z-index:2;}
.team-row-main{display:flex;align-items:center;gap:25px;min-width:0;}
.team-row-identity{width:116px;height:84px;position:relative;flex:0 0 auto;display:block;overflow:hidden;}
.team-identity{position:absolute;inset:0;display:block;color:#9A7A3D;}
.team-identity::before{content:'';position:absolute;width:66px;height:66px;left:22px;top:8px;border:1px solid currentColor;border-radius:50%;opacity:.17;transition:transform .7s var(--ease),opacity .7s var(--ease);}
.team-identity::after{content:'';position:absolute;width:40px;height:40px;right:10px;bottom:2px;border:1px solid currentColor;transform:rotate(45deg);opacity:.10;transition:transform .7s var(--ease),opacity .7s var(--ease);}
.team-identity.teal{color:#A98945}.team-identity.slate{color:#6E6A62}.team-identity.indigo{color:#9A7A3D}.team-identity.cyan{color:#8C7138}
.team-identity-number{position:absolute;left:0;top:3px;font:700 9px/1 'Inter',sans-serif;letter-spacing:.16em;opacity:.55;}
.team-identity-lines{position:absolute;left:0;right:4px;top:50%;height:1px;background:linear-gradient(90deg,currentColor,transparent);opacity:.12;transform:rotate(-8deg);}
.team-identity-ring{position:absolute;width:86px;height:34px;left:16px;top:26px;border:1px solid currentColor;border-radius:50%;opacity:.11;transform:rotate(-20deg);transition:transform .7s var(--ease),opacity .7s var(--ease);}
.team-initials{position:absolute;left:22px;top:18px;font:800 43px/.95 'Poppins',sans-serif;letter-spacing:-.08em;color:currentColor;transition:transform .65s var(--ease),letter-spacing .65s var(--ease);}
.team-row:hover .team-identity::before,.team-row.is-active .team-identity::before{transform:scale(1.1) rotate(15deg);opacity:.28;}
.team-row:hover .team-identity::after,.team-row.is-active .team-identity::after{transform:rotate(75deg) scale(1.05);opacity:.18;}
.team-row:hover .team-identity-ring,.team-row.is-active .team-identity-ring{transform:rotate(8deg) scale(1.1);opacity:.2;}
.team-row:hover .team-initials,.team-row.is-active .team-initials{transform:translate(6px,-2px) scale(1.08);letter-spacing:-.11em;}
.team-row-info{display:flex;flex-direction:column;min-width:0;}
.team-row-name{font:700 20px/1.2 'Poppins',sans-serif;letter-spacing:-.03em;transition:transform .55s var(--ease),color .55s var(--ease);}
.team-row:hover .team-row-name,.team-row.is-active .team-row-name{color:#9A7A3D;transform:translateX(3px);}
.team-row-role{font:600 11px/1.3 'Inter',sans-serif;letter-spacing:.1em;text-transform:uppercase;color:#6E6A62;margin-top:7px;}
.team-row-dept{font:600 9px/1.3 'Inter',sans-serif;letter-spacing:.14em;text-transform:uppercase;color:#8B867D;margin-top:8px;}
.team-row-detail{min-width:0;opacity:.65;transition:opacity .55s var(--ease),transform .65s var(--ease);}
.team-row:hover .team-row-detail,.team-row.is-active .team-row-detail{opacity:1;transform:translateX(5px);}
.team-row-description{display:block;color:#6E6A62;font-size:12px;line-height:1.65;max-width:430px;}
.team-row .team-tags{margin-top:11px;}
.team-row .team-tags span{padding:6px 8px;border-color:#e0e7ef;background:#f6f8fb;color:#6E6A62;opacity:0;transform:translateY(5px);transition:transform .5s var(--ease),opacity .5s var(--ease),color .5s var(--ease),background .5s var(--ease);}
.team-row:hover .team-tags span,.team-row.is-active .team-tags span{opacity:1;transform:none;}
.team-row:hover .team-tags span:nth-child(2),.team-row.is-active .team-tags span:nth-child(2){transition-delay:.07s;}
.team-row:hover .team-tags span:nth-child(3),.team-row.is-active .team-tags span:nth-child(3){transition-delay:.14s;}
.team-row-action{display:flex;align-items:center;justify-content:flex-end;gap:12px;color:#9B958A;font:700 9px/1 'Inter',sans-serif;letter-spacing:.14em;transition:color .5s var(--ease),transform .5s var(--ease);}
.team-row-action b{font:400 19px/1 'Inter',sans-serif;}
.team-row:hover .team-row-action,.team-row.is-active .team-row-action{color:#9A7A3D;transform:translateX(-3px);}
.team-visible .team-owner{animation:teamRise .8s var(--ease) both;}
.team-visible .team-row{animation:teamRowIn .7s var(--ease) both;}
.team-visible .team-row:nth-child(1){animation-delay:.08s}.team-visible .team-row:nth-child(2){animation-delay:.14s}.team-visible .team-row:nth-child(3){animation-delay:.20s}.team-visible .team-row:nth-child(4){animation-delay:.26s}.team-visible .team-row:nth-child(5){animation-delay:.32s}
@keyframes teamRise{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:none}}
@keyframes teamRowIn{from{opacity:0;transform:translateY(16px)}to{opacity:1;transform:none}}
@media(max-width:980px){
  .team-section{padding-top:90px;padding-bottom:95px}.team-intro{grid-template-columns:1fr;gap:18px;margin-bottom:48px}.team-intro-copy{justify-self:start}.team-owner{grid-template-columns:42% 58%;min-height:390px;padding:40px 34px}.owner-visual{width:285px;height:285px}.owner-content{padding-left:0}.owner-meta{left:34px}.owner-arrow{right:28px}.team-row{grid-template-columns:minmax(0,1fr) minmax(190px,.75fr) 55px;gap:20px}.team-row-identity{width:92px}.team-initials{left:17px;font-size:38px}.team-identity::before{left:16px}.team-identity-ring{left:10px}
}
@media(max-width:700px){
  .team-section{padding-top:75px;padding-bottom:78px}.team-intro{margin-bottom:38px}.team-owner{display:block;min-height:620px;padding:32px 24px}.team-owner::after{font-size:130px;bottom:-30px}.owner-meta{left:24px;top:27px}.owner-visual{width:245px;height:245px;margin:30px auto 0}.owner-content{padding:25px 0 0}.owner-name{font-size:35px}.owner-description{font-size:13px;max-width:none;margin-top:18px}.owner-arrow{right:24px;top:27px}.team-list-head{padding-bottom:14px}.team-row{display:block;min-height:0;padding:23px 0}.team-row::before{left:-12px;right:-12px}.team-row:hover,.team-row:focus-visible,.team-row.is-active{padding-left:12px;padding-right:12px}.team-row-main{gap:18px}.team-row-identity{width:84px;height:72px}.team-initials{font-size:34px;top:17px;left:15px}.team-identity::before{width:58px;height:58px;left:14px;top:7px}.team-identity-ring{width:70px;height:30px;left:9px;top:23px}.team-row-name{font-size:18px}.team-row-detail{margin:15px 0 0 102px;max-height:0;overflow:hidden;opacity:0;transform:none!important;transition:max-height .65s var(--ease),opacity .5s var(--ease),margin-top .65s var(--ease)}.team-row:hover .team-row-detail,.team-row.is-active .team-row-detail{max-height:180px;opacity:1;margin-top:13px}.team-row-action{position:absolute;right:0;top:28px}.team-row:hover .team-row-action,.team-row.is-active .team-row-action{transform:none}.team-row-action span{display:none}.team-row .team-tags span{opacity:1;transform:none}.team-list{margin-top:0}
}
@media(prefers-reduced-motion:reduce){
  .team-owner,.team-row,.team-owner::before,.owner-orbit,.owner-photo-frame,.owner-photo-frame img,.team-identity::before,.team-identity::after,.team-identity-ring,.team-initials,.team-row-name,.team-row-detail,.team-row-action,.team-tags span{transition:none!important;animation:none!important}.team-visible .team-owner,.team-visible .team-row{animation:none!important}.team-row-detail{max-height:none!important;opacity:1!important;margin-top:13px!important;}.team-tags span{opacity:1!important;transform:none!important;}
}
@media (scripting:none){.team-owner,.team-row{opacity:1!important;animation:none!important;}}

/* =========================================================
   EXPERIENCE PAGE — replacing Careers
   ========================================================= */
.experience-hero{position:relative;overflow:hidden;background:#071226;color:#fff;}
.experience-hero .page-hero p{color:#6E6A62;}
.experience-hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:70px;align-items:end;}
.experience-kicker{display:inline-flex;align-items:center;gap:10px;font-size:12px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:#C5A059;margin-bottom:18px;}
.experience-kicker::before{content:'';width:34px;height:1px;background:#C5A059;}
.experience-visual{min-height:430px;position:relative;border-left:1px solid rgba(143,212,255,.2);border-bottom:1px solid rgba(143,212,255,.2);overflow:hidden;background:radial-gradient(circle at 50% 50%,rgba(14,165,233,.12),transparent 65%);}
.experience-visual::before{content:'EXPERIENCE';position:absolute;right:-18px;bottom:24px;font-family:'Poppins',sans-serif;font-size:82px;font-weight:800;letter-spacing:-.07em;color:rgba(255,255,255,.035);writing-mode:vertical-rl;}
.experience-orbit{position:absolute;width:300px;height:300px;left:50%;top:50%;transform:translate(-50%,-50%);border:1px solid rgba(143,212,255,.22);border-radius:50%;}
.experience-orbit::before,.experience-orbit::after{content:'';position:absolute;border:1px solid rgba(143,212,255,.14);border-radius:50%;inset:35px;}.experience-orbit::after{inset:78px;}
.experience-core{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:128px;height:128px;border-radius:24px;display:flex;flex-direction:column;align-items:center;justify-content:center;background:linear-gradient(145deg,rgba(143,212,255,.18),rgba(255,255,255,.04));border:1px solid rgba(143,212,255,.3);box-shadow:0 0 55px rgba(14,165,233,.18);}
.experience-core strong{font-family:'Poppins',sans-serif;font-size:32px;letter-spacing:.08em;}.experience-core span{font-size:10px;text-transform:uppercase;letter-spacing:.18em;color:#C5A059;}
.experience-node{position:absolute;padding:9px 12px;border:1px solid rgba(143,212,255,.18);background:rgba(7,18,38,.68);font-size:10px;letter-spacing:.08em;text-transform:uppercase;color:#6E6A62;backdrop-filter:blur(8px);}
.experience-node.n1{left:6%;top:22%;}.experience-node.n2{right:8%;top:14%;}.experience-node.n3{left:12%;bottom:18%;}.experience-node.n4{right:5%;bottom:24%;}
.experience-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--border);border:1px solid var(--border);margin-top:58px;}
.experience-stat{padding:26px 24px;background:#fff;}.experience-stat strong{font-family:'Poppins',sans-serif;font-size:34px;line-height:1;display:block;color:var(--primary);}.experience-stat span{font-size:12px;text-transform:uppercase;letter-spacing:.08em;color:var(--text-grey);display:block;margin-top:9px;}
.experience-section{padding-top:95px;}.experience-timeline{position:relative;margin-top:52px;padding-left:48px;}.experience-timeline::before{content:'';position:absolute;left:13px;top:0;bottom:0;width:1px;background:linear-gradient(#9A7A3D,rgba(10,77,162,.08));}
.experience-step{position:relative;padding:0 0 58px 30px;display:grid;grid-template-columns:140px 1fr;gap:35px;}.experience-step::before{content:'';position:absolute;left:7px;top:5px;width:13px;height:13px;border:3px solid #fff;background:var(--primary);border-radius:50%;box-shadow:0 0 0 1px var(--primary);}.experience-year{font-family:'Poppins',sans-serif;font-weight:800;color:var(--primary);font-size:15px;letter-spacing:.08em;}.experience-step h3{font-size:23px;margin-bottom:8px;}.experience-step p{color:var(--text-grey);max-width:680px;font-size:15px;}
.client-wall{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-top:44px;}.client-chip{min-height:118px;border:1px solid var(--border);background:#fff;display:flex;align-items:center;justify-content:center;text-align:center;padding:20px;position:relative;overflow:hidden;transition:transform .5s var(--ease),border-color .5s var(--ease),box-shadow .5s var(--ease);}.client-chip::after{content:'';position:absolute;width:90px;height:90px;border-radius:50%;background:var(--chip-glow,rgba(10,77,162,.08));right:-30px;bottom:-35px;}.client-chip:hover{transform:translateY(-5px);border-color:rgba(10,77,162,.28);box-shadow:var(--shadow-md);}.client-chip strong{font-family:'Poppins',sans-serif;font-size:16px;position:relative;z-index:2;}.client-note{font-size:12px;color:var(--text-grey);margin-top:16px;}
.experience-visual-photo{margin-top:70px;display:grid;grid-template-columns:1.25fr .75fr;gap:18px;}.experience-photo-placeholder{min-height:340px;background:linear-gradient(135deg,#071226,#3B3730 50%,#9A7A3D);position:relative;overflow:hidden;border-radius:20px;display:flex;align-items:flex-end;padding:32px;color:#fff;}.experience-photo-placeholder::before{content:'';position:absolute;width:280px;height:280px;border:1px solid rgba(143,212,255,.22);border-radius:50%;right:8%;top:8%;box-shadow:0 0 0 50px rgba(143,212,255,.02),0 0 0 100px rgba(143,212,255,.018);}.experience-photo-placeholder::after{content:'YOUR WORK / SITE PHOTO';position:absolute;right:24px;top:24px;font-size:10px;letter-spacing:.14em;color:#C5A059;}.experience-photo-copy{padding:28px;border:1px solid var(--border);border-radius:20px;background:#fff;display:flex;flex-direction:column;justify-content:flex-end;}.experience-photo-copy strong{font-family:'Poppins',sans-serif;font-size:22px;line-height:1.25;margin-bottom:10px;}.experience-photo-copy p{font-size:14px;color:var(--text-grey);}
@media(max-width:980px){.experience-hero-grid{grid-template-columns:1fr;}.experience-visual{min-height:340px;}.experience-stats{grid-template-columns:repeat(2,1fr);}.client-wall{grid-template-columns:repeat(2,1fr);}.experience-photo-placeholder{min-height:300px;}}
@media(max-width:600px){.experience-visual{min-height:290px;}.experience-orbit{width:220px;height:220px;}.experience-core{width:100px;height:100px;}.experience-core strong{font-size:25px;}.experience-node{font-size:8px;padding:7px 9px;}.experience-stats{grid-template-columns:1fr 1fr;}.experience-stat{padding:20px 15px;}.experience-stat strong{font-size:28px;}.experience-timeline{padding-left:20px;}.experience-timeline::before{left:4px;}.experience-step{grid-template-columns:1fr;gap:6px;padding-left:18px;}.experience-step::before{left:-2px;}.client-wall{grid-template-columns:1fr 1fr;}.experience-visual-photo{grid-template-columns:1fr;}.experience-photo-placeholder{min-height:250px;}}
@media (scripting: none){.team-member{opacity:1;transform:none;}}

/* Owner portrait — real photo, editorial crop */
.owner-photo-frame{
  inset:34px 46px;
  border-radius:28px 28px 120px 28px;
  transform:rotate(-2deg);
  background:#0b1d35;
}
.owner-photo-frame img{object-position:center 48%;}
.team-owner:hover .owner-photo-frame,.team-owner.is-active .owner-photo-frame{
  transform:rotate(0deg) scale(1.025);
  border-radius:24px 24px 105px 24px;
}
.team-row-number{
  font:700 9px/1 'Inter',sans-serif;
  letter-spacing:.16em;
  color:#9B958A;
  margin-bottom:9px;
}

/* =========================================================
   EXPERIENCE — immersive 3D story section
   Scoped to careers.html / #experienceStory only.
   ========================================================= */
.experience-immersive{position:relative;background:#071226;color:#fff;overflow:clip;padding:120px 0 0;isolation:isolate;}
.experience-immersive::before{content:'';position:absolute;inset:0;background:radial-gradient(circle at 78% 28%,rgba(14,165,233,.11),transparent 30%),radial-gradient(circle at 16% 78%,rgba(10,77,162,.13),transparent 32%);pointer-events:none;}
.experience-shell{position:relative;max-width:1280px;margin:0 auto;padding:0 34px;}
.experience-intro{max-width:780px;margin-bottom:80px;position:relative;z-index:2;}
.experience-intro .eyebrow{color:#C5A059;margin-bottom:16px;}
.experience-intro h2{font-family:'Poppins',sans-serif;font-size:clamp(42px,5vw,72px);line-height:.98;letter-spacing:-.055em;margin:0 0 22px;max-width:760px;}
.experience-intro h2 span{color:#C5A059;}
.experience-intro p{max-width:690px;color:#A89E8D;font-size:17px;line-height:1.75;margin:0;}
.experience-stage-wrap{display:grid;grid-template-columns:minmax(0,.66fr) minmax(0,1.34fr);gap:40px;position:relative;align-items:start;}
.experience-copy-column{position:relative;z-index:3;}
.exp-story-step{min-height:76vh;display:flex;flex-direction:column;justify-content:center;max-width:520px;padding:80px 0 120px;opacity:.28;transform:translateY(26px);transition:opacity .65s ease,transform .75s cubic-bezier(.22,1,.36,1);}
.exp-story-step.is-active{opacity:1;transform:translateY(0);}
.exp-step-no{font-size:11px;letter-spacing:.16em;font-weight:700;color:#D8BF7C;margin-bottom:18px;display:block;}
.exp-story-step h3{font-family:'Poppins',sans-serif;font-size:clamp(28px,3vw,46px);line-height:1.08;letter-spacing:-.035em;margin:0 0 20px;max-width:510px;}
.exp-story-step p{font-size:16px;line-height:1.8;color:#A89E8D;max-width:500px;margin:0;}
.exp-metric,.exp-final-stat{display:flex;align-items:flex-end;gap:14px;margin-top:34px;padding-top:18px;border-top:1px solid rgba(143,212,255,.18);max-width:360px;}
.exp-metric strong,.exp-final-stat strong{font-family:'Poppins',sans-serif;font-size:42px;line-height:1;color:#fff;letter-spacing:-.04em;}
.exp-metric span,.exp-final-stat span{font-size:11px;line-height:1.25;letter-spacing:.12em;text-transform:uppercase;color:#9B958A;padding-bottom:3px;}
.exp-final-stat strong{color:#6ee7c7;}
.exp-tags{display:flex;flex-wrap:wrap;gap:8px;margin-top:32px;max-width:460px;}
.exp-tags span{border:1px solid rgba(143,212,255,.2);background:rgba(255,255,255,.025);padding:9px 11px;font-size:9px;letter-spacing:.1em;color:#D8D2C7;}
.experience-3d-column{position:sticky;top:92px;height:calc(100vh - 122px);min-height:620px;display:flex;align-items:center;z-index:2;transform-origin:center;will-change:opacity,transform,filter;}
.experience-3d-frame{position:relative;width:100%;height:min(94vh,940px);min-height:640px;border:0;background:transparent;overflow:visible;box-shadow:none;}
.experience-3d-frame::before{display:none;}
.experience-3d-label{position:absolute;top:22px;left:24px;right:24px;display:flex;justify-content:space-between;align-items:center;font-size:9px;letter-spacing:.15em;color:#8B867D;z-index:5;pointer-events:none;}
.experience-3d-label span{color:#C5A059;font-weight:700;}
.experience-3d-label b{font-weight:600;}
#experience3D{display:block;width:100%;height:100%;position:relative;z-index:2;}
.experience-3d-caption{position:absolute;left:24px;right:24px;bottom:22px;display:flex;align-items:center;gap:10px;font-size:9px;letter-spacing:.13em;color:#8B867D;z-index:5;pointer-events:none;}
.caption-line{width:28px;height:1px;background:#D8BF7C;box-shadow:0 0 12px rgba(85,200,255,.7);}
.experience-story-footer{border-top:1px solid rgba(143,212,255,.14);padding:24px 0 38px;display:flex;justify-content:space-between;gap:20px;color:#7A746A;font-size:9px;letter-spacing:.14em;text-transform:uppercase;}
.experience-story-footer span:first-child{color:#A89E8D;}
@media(max-width:980px){
  .experience-immersive{padding-top:95px;}
  .experience-shell{padding:0 24px;}
  .experience-intro{margin-bottom:45px;}
  .experience-stage-wrap{grid-template-columns:1fr;gap:0;}
  .experience-3d-column{position:sticky;top:80px;height:62vh;min-height:430px;order:-1;}
  .experience-3d-frame{height:100%;min-height:430px;}
  .exp-story-step{min-height:72vh;padding:65px 0 100px;max-width:720px;}
  .experience-copy-column{margin-top:-8vh;}
}
@media(max-width:600px){
  .experience-immersive{padding-top:78px;}
  .experience-shell{padding:0 18px;}
  .experience-intro h2{font-size:42px;}
  .experience-intro p{font-size:15px;line-height:1.65;}
  .experience-3d-column{top:72px;height:52vh;min-height:360px;}
  .experience-3d-frame{min-height:360px;}
  .experience-3d-label{top:16px;left:16px;right:16px;}
  .experience-3d-caption{left:16px;right:16px;bottom:16px;}
  .exp-story-step{min-height:70vh;padding:55px 0 85px;}
  .exp-story-step h3{font-size:31px;}
  .exp-story-step p{font-size:14px;line-height:1.7;}
  .exp-metric strong,.exp-final-stat strong{font-size:34px;}
  .experience-story-footer{flex-direction:column;line-height:1.6;}
}
@media(prefers-reduced-motion:reduce){
  .exp-story-step{opacity:1;transform:none;transition:none;}
  .experience-immersive *{scroll-behavior:auto!important;}
}

/* ======================================================
   HOME — 3D COMPLIANCE COMMAND CENTER
   ====================================================== */
.home-3d-wrap{position:relative;min-height:560px;height:min(70vh,680px);isolation:isolate;overflow:visible;background:radial-gradient(circle at 50% 48%,rgba(14,165,233,.08),transparent 34%),linear-gradient(180deg,rgba(255,255,255,0),rgba(238,247,255,.38));border-radius:28px;}
#home3DCanvas{position:absolute;inset:0;width:100%;height:100%;display:block;outline:none;}
.home-3d-caption{position:absolute;left:18px;bottom:26px;display:flex;flex-direction:column;gap:6px;z-index:3;pointer-events:none;}
.home-3d-kicker{font-size:10px;letter-spacing:.18em;font-weight:700;color:#9A7A3D;}
.home-3d-caption strong{font-size:14px;color:#1b2b44;font-weight:700;letter-spacing:.01em;}
.home-3d-points{position:absolute;right:12px;top:48px;display:flex;flex-direction:column;gap:8px;z-index:3;pointer-events:none;}
.home-3d-points span{font-size:9px;letter-spacing:.14em;color:#6E6A62;border-left:1px solid rgba(10,77,162,.24);padding-left:9px;}
.home-3d-stat{position:absolute;z-index:3;background:rgba(255,255,255,.82);border:1px solid rgba(10,77,162,.10);box-shadow:0 14px 35px rgba(20,55,90,.08);backdrop-filter:blur(10px);padding:12px 14px;border-radius:12px;display:flex;flex-direction:column;gap:2px;pointer-events:none;}
.home-3d-stat strong{font-size:22px;color:#9A7A3D;line-height:1;}.home-3d-stat small{font-size:10px;color:#6E6A62;}.home-3d-stat.stat-a{left:-14px;top:23%;}.home-3d-stat.stat-b{right:-14px;bottom:24%;}

/* ======================================================
   EXPERIENCE — CLEAN EDITORIAL HERO + LIGHT 3D STORY
   ====================================================== */
.experience-hero{background:#f7faff;color:#10213a;min-height:640px;display:flex;align-items:center;border-bottom:1px solid #e4edf5;}
.experience-hero .breadcrumb a{color:#9A7A3D;}.experience-hero .breadcrumb{color:#8B867D;}.experience-hero .experience-kicker{color:#9A7A3D;}.experience-hero .page-hero p,.experience-hero p{color:#6E6A62;max-width:780px;}
.experience-hero-grid.experience-hero-clean{display:block;}.experience-hero-copy{max-width:980px;padding:90px 0 75px;}.experience-hero-copy h1{max-width:850px;font-size:clamp(46px,6vw,78px);line-height:1.02;margin:16px 0 24px;letter-spacing:-.045em;}.experience-proof-row{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;margin-top:48px;border-top:1px solid #dce7f1;border-bottom:1px solid #dce7f1;}.experience-proof-row div{padding:22px 18px 22px 0;border-right:1px solid #dce7f1;}.experience-proof-row div:last-child{border-right:0;}.experience-proof-row strong{display:block;font-size:28px;color:#9A7A3D;}.experience-proof-row span{display:block;margin-top:4px;font-size:11px;text-transform:uppercase;letter-spacing:.1em;color:#8B867D;}
.experience-immersive{background:#fff;color:#15263e;padding-top:110px;}.experience-immersive::before{display:none;}.experience-intro{max-width:820px;}.experience-intro .eyebrow{color:#9A7A3D;}.experience-intro h2{color:#14263f;}.experience-intro p{color:#6E6A62;}.experience-stage-wrap{gap:72px;}.experience-copy-column{z-index:3;}.exp-story-step h3{color:#14263f;}.exp-story-step p{color:#6E6A62;}.exp-step-no{color:#9A7A3D;}.exp-metric strong{color:#9A7A3D;}.exp-tags span{background:#edf5fb;color:#6E6A62;border-color:#d7e6f1;}
.experience-3d-frame{border:0;background:transparent;box-shadow:none;}.experience-3d-frame::before{display:none;}.experience-3d-label{color:#8B867D;}.experience-3d-label span{color:#9A7A3D;}.experience-3d-caption{color:#8B867D;}
.experience-3d-column{min-height:700px;}.experience-3d-frame{min-height:620px;height:min(82vh,820px);}
.experience-visual-photo{margin-top:90px;display:grid;grid-template-columns:1.4fr .8fr;gap:22px;align-items:stretch;}.experience-photo-placeholder{min-height:420px;background:linear-gradient(135deg,#eaf3fa,#f7fafc);border:1px solid #dce7f1;box-shadow:none;}.experience-photo-copy{border-top:1px solid #dce7f1;padding:26px 8px;color:#6E6A62;}.experience-photo-copy strong{color:#17304c;font-size:20px;display:block;margin-bottom:10px;}.experience-photo-copy p{font-size:14px;line-height:1.7;}
@media(max-width:980px){.home-3d-wrap{min-height:500px;height:540px;}.home-3d-stat.stat-a{left:0;}.home-3d-stat.stat-b{right:0;}.experience-proof-row{grid-template-columns:repeat(2,1fr);}.experience-proof-row div:nth-child(2){border-right:0;}.experience-3d-column{min-height:520px;}.experience-3d-frame{min-height:500px;height:520px;}.experience-visual-photo{grid-template-columns:1fr;}}
@media(max-width:600px){.home-3d-wrap{min-height:390px;height:430px;margin-top:10px;}.home-3d-points{top:25px;right:0;}.home-3d-stat{padding:9px 10px;}.home-3d-stat strong{font-size:18px;}.home-3d-stat small{font-size:9px;}.home-3d-stat.stat-a{left:0;top:20%;}.home-3d-stat.stat-b{right:0;bottom:22%;}.experience-hero{min-height:auto;}.experience-hero-copy{padding:72px 0 56px;}.experience-hero-copy h1{font-size:44px;}.experience-proof-row{grid-template-columns:1fr 1fr;margin-top:34px;}.experience-proof-row div{border-right:0;border-bottom:1px solid #dce7f1;}.experience-3d-column{min-height:400px;}.experience-3d-frame{min-height:390px;height:410px;}.experience-visual-photo{margin-top:55px;}.experience-photo-placeholder{min-height:300px;}}
@media(prefers-reduced-motion:reduce){.home-3d-wrap{min-height:360px;height:400px;}.experience-immersive *{scroll-behavior:auto!important;}}

/* Solutions & Compliance merge */
.solution-hero .bg-atmosphere .mesh-gradient{opacity:.35}
.solution-flow-section{overflow:hidden}
.solution-flow-wrap{display:grid;grid-template-columns:minmax(0,.82fr) minmax(420px,1.18fr);gap:56px;align-items:start;margin-top:64px}
.solution-flow-copy{position:relative;padding:12px 0}
.flow-step{min-height:220px;padding:30px 0 34px;border-top:1px solid rgba(15,23,42,.10);opacity:.34;transition:opacity .35s ease}
.flow-step:first-child{border-top:0;padding-top:0}.flow-step.is-active{opacity:1}
.flow-step>span{font-size:11px;letter-spacing:.16em;font-weight:800;color:#9A7A3D}.flow-step h3{font-size:27px;line-height:1.18;margin:12px 0 10px}.flow-step p{max-width:540px;color:#6E6A62;line-height:1.75}
.solution-flow-visual{position:sticky;top:110px}.solution-flow-frame{height:590px;border:1px solid rgba(15,23,42,.10);border-radius:28px;background:linear-gradient(145deg,#f8fbff,#eef5fa);position:relative;overflow:hidden;box-shadow:0 24px 70px rgba(15,23,42,.08)}
.solution-flow-frame:before{content:"";position:absolute;inset:12%;border:1px solid rgba(11,77,162,.08);border-radius:50%;transform:rotate(-18deg) scaleX(1.2)}
.solution-flow-frame canvas{width:100%;height:100%;display:block}.solution-flow-meta{position:absolute;z-index:2;top:22px;left:24px;right:24px;display:flex;justify-content:space-between;font-size:10px;letter-spacing:.14em;color:#6E6A62}.solution-flow-meta b{color:#9A7A3D}

/* Experience: clean editorial/customer story */
.experience-hero .bg-atmosphere .mesh-gradient{opacity:.22}.experience-hero .bg-atmosphere .orb{display:none}
.experience-insights{padding-top:110px}.experience-insight-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:90px;align-items:start;margin-top:34px}.experience-insight-grid h2{font-size:clamp(34px,4vw,56px);line-height:1.05;margin:0 0 22px}.experience-insight-grid p{color:#6E6A62;line-height:1.8;max-width:650px}.experience-achievement-list{border-top:1px solid rgba(15,23,42,.10)}.experience-achievement-list>div{display:grid;grid-template-columns:44px 1fr;gap:18px;padding:25px 0;border-bottom:1px solid rgba(15,23,42,.10)}.experience-achievement-list b{font-size:12px;color:#9A7A3D;letter-spacing:.08em}.experience-achievement-list span{display:grid;gap:6px;color:#6E6A62;line-height:1.6}.experience-achievement-list strong{color:#0f172a;font-size:17px}
.experience-gallery-section{padding-top:105px;padding-bottom:105px}.experience-photo-grid{display:grid;grid-template-columns:1.35fr .65fr;gap:24px;margin-top:46px}.experience-photo-card{margin:0}.experience-photo-placeholder{min-height:430px;border-radius:24px;position:relative;overflow:hidden;background:linear-gradient(135deg,#dceaf3 0%,#f8fafc 48%,#c9d8e4 100%);display:flex;flex-direction:column;justify-content:flex-end;padding:30px}.experience-photo-large .experience-photo-placeholder{min-height:560px}.experience-photo-alt{background:linear-gradient(150deg,#e7eef3,#d6e3ea 52%,#f8fafc)}.experience-photo-placeholder:before,.experience-photo-placeholder:after{content:"";position:absolute;border:1px solid rgba(11,77,162,.14);border-radius:50%}.experience-photo-placeholder:before{width:360px;height:360px;right:-120px;top:-100px}.experience-photo-placeholder:after{width:190px;height:190px;left:-70px;bottom:-60px}.experience-photo-placeholder span,.experience-photo-placeholder strong,.experience-photo-placeholder small{position:relative;z-index:2}.experience-photo-placeholder span{font-size:10px;letter-spacing:.18em;color:#9A7A3D;font-weight:800}.experience-photo-placeholder strong{font-size:28px;line-height:1.1;margin:9px 0}.experience-photo-placeholder small{color:#6E6A62}.experience-photo-card figcaption{font-size:13px;color:#6E6A62;padding:14px 4px}.client-wall-four{grid-template-columns:repeat(4,1fr)!important}.client-wall-four .client-chip{min-height:140px;display:flex;flex-direction:column;align-items:flex-start;justify-content:center;gap:7px}.client-wall-four .client-chip span{font-size:11px;color:#7A746A}
@media(max-width:900px){.solution-flow-wrap,.experience-insight-grid{grid-template-columns:1fr;gap:34px}.solution-flow-visual{position:relative;top:auto}.solution-flow-frame{height:500px}.experience-photo-grid{grid-template-columns:1fr}.experience-photo-large .experience-photo-placeholder{min-height:430px}.client-wall-four{grid-template-columns:repeat(2,1fr)!important}}
@media(max-width:600px){.solution-flow-frame{height:390px;border-radius:20px}.flow-step{min-height:180px}.experience-insights{padding-top:75px}.experience-gallery-section{padding-top:70px;padding-bottom:70px}.client-wall-four{grid-template-columns:1fr!important}.experience-photo-placeholder,.experience-photo-large .experience-photo-placeholder{min-height:330px}}
@media(prefers-reduced-motion:reduce){.flow-step{transition:none}.solution-flow-frame{box-shadow:none}}

/* Final Experience gallery refinement */
.experience-gallery-section{background:#fff;}
.experience-gallery-mosaic{display:grid;grid-template-columns:1.35fr .65fr;grid-template-rows:320px 320px 260px;gap:18px;margin-top:48px;}
.experience-gallery-mosaic .experience-photo-card{margin:0;position:relative;overflow:hidden;border-radius:22px;background:#eef3f7;border:1px solid #dce6ee;min-height:0;}
.experience-gallery-mosaic img{width:100%;height:100%;display:block;object-fit:cover;transition:transform .8s cubic-bezier(.22,.61,.36,1);}
.experience-gallery-mosaic .experience-photo-card:hover img{transform:scale(1.035);}
.experience-gallery-mosaic figcaption{position:absolute;left:0;right:0;bottom:0;padding:52px 24px 22px;background:linear-gradient(to top,rgba(8,23,40,.86),rgba(8,23,40,0));color:#fff;display:flex;flex-direction:column;gap:5px;}
.experience-gallery-mosaic figcaption strong{font-family:'Poppins',sans-serif;font-size:18px;}
.experience-gallery-mosaic figcaption span{font-size:12px;line-height:1.5;color:rgba(255,255,255,.78);}
.gallery-main{grid-row:span 2;}
.gallery-tall{grid-row:span 2;}
.gallery-wide{grid-column:1;}
.gallery-sign{grid-column:2;}
.gallery-placeholder{display:flex;align-items:flex-end;padding:24px;background:linear-gradient(135deg,#f7fafc,#e8eff5);}
.gallery-placeholder div{display:flex;flex-direction:column;gap:6px;}
.gallery-placeholder span{font-size:10px;letter-spacing:.16em;color:#9A7A3D;font-weight:800;}
.gallery-placeholder strong{font-family:'Poppins',sans-serif;font-size:19px;color:#17304c;}
.gallery-placeholder small{font-size:12px;color:#8B867D;max-width:280px;line-height:1.5;}

/* Compliance 3D story: strong focal panel without a full-page dark ambience */
.compliance-immersive{background:transparent;color:#14263f;padding:42px 0 0;overflow:visible;}
.compliance-immersive::before{display:none;}
.compliance-immersive .experience-stage-wrap{gap:64px;}
.compliance-immersive .experience-copy-column{padding-top:8px;}
.compliance-immersive .experience-3d-column{top:60px;min-height:900px;}
.compliance-immersive .experience-3d-frame{height:min(96vh,980px);min-height:700px;border-radius:0;background:transparent;border:0;box-shadow:none;overflow:visible;}
.compliance-immersive .experience-3d-frame::after{display:none;}
.compliance-immersive .experience-3d-label{z-index:4;}
.compliance-immersive .experience-3d-caption{z-index:4;}
.compliance-immersive .exp-story-step{min-height:72vh;padding:80px 0;}
.compliance-immersive .exp-story-step h3{max-width:620px;}
.compliance-immersive .experience-story-footer{color:#6E6A62;border-top-color:#d9e5ef;}
.compliance-story{padding-bottom:110px;}

@media(max-width:900px){
  .experience-gallery-mosaic{grid-template-columns:1fr 1fr;grid-template-rows:300px 300px 260px 260px;}
  .gallery-main,.gallery-tall{grid-row:span 1;}
  .gallery-wide,.gallery-sign{grid-column:auto;}
  .compliance-immersive .experience-stage-wrap{gap:34px;}
  .compliance-immersive .experience-3d-column{position:sticky;top:80px;min-height:520px;}
  .compliance-immersive .experience-3d-frame{height:520px;min-height:500px;}
  .compliance-immersive .exp-story-step{min-height:58vh;padding:60px 0;}
}
@media(max-width:600px){
  .experience-gallery-mosaic{grid-template-columns:1fr;grid-template-rows:auto;}
  .experience-gallery-mosaic .experience-photo-card{min-height:310px;}
  .compliance-immersive .experience-3d-column{position:sticky;top:70px;min-height:400px;}
  .compliance-immersive .experience-3d-frame{height:410px;min-height:390px;border-radius:22px;}
  .compliance-immersive .exp-story-step{min-height:52vh;padding:52px 0;}
}

/* Client testimonials — visible rolling track */
.testi-carousel{display:block!important;visibility:visible!important;opacity:1!important;overflow:hidden;position:relative;width:100%;max-width:740px;margin:28px auto 0;}
.testi-track{display:flex;align-items:stretch;width:100%;}
.testi-slide{min-width:100%;width:100%;flex:0 0 100%;}
.testi-nav button.testi-dot{display:block;appearance:none;-webkit-appearance:none;cursor:pointer;outline:none;}
.testi-nav button.testi-dot:focus-visible{outline:2px solid var(--secondary);outline-offset:4px;}


/* =========================================================
   COMPLETE SITE ADDITIONS — kept from the final website
   ========================================================= */
.brand-logo{width:46px;height:46px;object-fit:cover;border-radius:10px;display:block;flex-shrink:0;box-shadow:0 8px 22px rgba(15,23,42,.12),0 0 18px rgba(10,77,162,.08);}
.logo{display:flex;align-items:center;gap:12px;color:#0F172A;font-family:'Poppins','Inter',sans-serif;font-size:21px;letter-spacing:.01em;min-width:250px;}
.logo .brand-logo{width:44px;height:44px;border:1px solid rgba(10,77,162,.18);}
.footer-logo{display:flex;align-items:center;gap:12px;color:#0F172A;}
.footer-logo .brand-logo{width:48px;height:48px;border:1px solid rgba(10,77,162,.18);}
.preloader-mark{display:flex;align-items:center;justify-content:center;background:transparent!important;color:transparent!important;}
.preloader-logo{width:82px;height:82px;border-radius:18px;border:1px solid rgba(10,77,162,.22);box-shadow:0 0 40px rgba(10,77,162,.12);}
.brand-wordmark{display:flex;flex-direction:column;justify-content:center;line-height:1;white-space:nowrap;}
.brand-wordmark strong{font-family:'Poppins',sans-serif;font-size:17px;letter-spacing:.045em;color:#0F172A;font-weight:700;}
.brand-wordmark small{margin-top:5px;font-family:'Inter',sans-serif;font-size:8px;letter-spacing:.24em;color:#9A7A3D;font-weight:700;}
header{background:rgba(255,255,255,.86);border-bottom:1px solid rgba(10,77,162,.10);backdrop-filter:blur(18px) saturate(120%);-webkit-backdrop-filter:blur(18px) saturate(120%);}
header.scrolled{background:rgba(255,255,255,.96);box-shadow:0 12px 40px rgba(15,23,42,.08);}
.nav-links a{color:#6E6A62;}
.nav-links a:hover,.nav-links a.active{color:#9A7A3D;}
.nav-links a::after{background:linear-gradient(90deg,#C5A059,#9A7A3D);height:2px;}
.menu-toggle{color:#9A7A3D;}
.mobile-menu{background:rgba(255,255,255,.98);}
.mobile-menu a{color:#0F172A;border-color:rgba(10,77,162,.10);}
.experience-gallery-mosaic{display:grid;grid-template-columns:1.35fr .65fr;grid-template-rows:320px 320px 260px;gap:18px;margin-top:48px;}
.experience-gallery-mosaic .experience-photo-card{margin:0;position:relative;overflow:hidden;border-radius:22px;background:#eef3f7;border:1px solid #dce6ee;min-height:0;}
.experience-gallery-mosaic img{width:100%;height:100%;display:block;object-fit:cover;transition:transform .8s cubic-bezier(.22,.61,.36,1);}
.experience-gallery-mosaic .experience-photo-card:hover img{transform:scale(1.035);}
.experience-gallery-mosaic figcaption{position:absolute;left:0;right:0;bottom:0;padding:52px 24px 22px;background:linear-gradient(to top,rgba(8,23,40,.86),rgba(8,23,40,0));color:#fff;display:flex;flex-direction:column;gap:5px;}
.experience-gallery-mosaic figcaption strong{font-family:'Poppins',sans-serif;font-size:18px;}
.experience-gallery-mosaic figcaption span{font-size:12px;line-height:1.5;color:rgba(255,255,255,.78);}
.gallery-main{grid-row:span 2}.gallery-tall{grid-row:span 2}.gallery-wide{grid-column:1}.gallery-sign{grid-column:2;}
.client-image-wall{align-items:stretch;}
.client-image-card{min-height:210px!important;display:flex!important;flex-direction:column!important;align-items:stretch!important;justify-content:space-between!important;padding:14px!important;gap:10px!important;text-align:left!important;}
.client-image-box{height:132px;width:100%;display:flex;align-items:center;justify-content:center;overflow:hidden;border-radius:12px;background:#f8fafc;border:1px solid #dce7f1;}
.client-image-box img{width:100%;height:100%;object-fit:contain;display:block;transition:transform .55s var(--ease);}
.client-image-card:hover .client-image-box img{transform:scale(1.035);}
.client-image-card figcaption{position:relative;z-index:2;display:flex;align-items:center;justify-content:space-between;gap:10px;padding:4px 2px 0;}
.client-image-card figcaption strong{font-family:'Poppins',sans-serif;font-size:14px;line-height:1.2;}
.client-image-card figcaption span{font-size:10px;color:#6E6A62;white-space:nowrap;}
@media(max-width:900px){.experience-gallery-mosaic{grid-template-columns:1fr 1fr;grid-template-rows:300px 300px 260px 260px}.gallery-main,.gallery-tall{grid-row:span 1}.gallery-wide,.gallery-sign{grid-column:auto}.logo{min-width:0;gap:9px}.brand-logo{width:40px;height:40px}.brand-wordmark strong{font-size:14px}.brand-wordmark small{font-size:6px;letter-spacing:.2em}}
@media(max-width:600px){.experience-gallery-mosaic{grid-template-columns:1fr;grid-template-rows:auto}.experience-gallery-mosaic .experience-photo-card{min-height:310px}.logo{font-size:18px}.logo .brand-logo{width:39px;height:39px}.preloader-logo{width:70px;height:70px}.client-image-card{min-height:190px!important}.client-image-box{height:112px}.client-image-card figcaption{display:block}.client-image-card figcaption span{display:block;margin-top:3px}}

/* =========================================================
   JPM NEXUS — LIGHT-DOMINANT LUXE INVERSION
   Final theme override
   ========================================================= */
:root{
  --primary:#A98945;
  --primary-dark:#80662F;
  --secondary:#C5A059;
  --accent:#D7C28A;
  --success:#7B8A6B;
  --bg:#F4F0E8;
  --bg-light:#EEE9DF;
  --text-dark:#1E1D1A;
  --text-grey:#6E6A62;
  --border:#D8D2C7;
  --radius:16px;
  --shadow-sm:0 8px 24px rgba(54,48,37,.06);
  --shadow-md:0 18px 48px rgba(54,48,37,.10);
  --shadow-lg:0 28px 80px rgba(54,48,37,.14);
}
body{background:var(--bg);color:var(--text-dark);}
.section-light{background:var(--bg-light);}
.section-story-dark,.experience-immersive,.experience-hero{background:var(--bg)!important;color:var(--text-dark)!important;}
.section-story-dark::before,.experience-immersive::before{display:none!important;}
h1,h2,h3,h4{font-family:'Playfair Display',serif;color:#201F1B;}
.section-title{color:#201F1B;}
.section-sub,.experience-intro p,.experience-step p{color:var(--text-grey)!important;}
.eyebrow{color:#8C7138;background:rgba(197,160,89,.12);}
.eyebrow::before{background:#C5A059;}
.heading-underline::after{background:linear-gradient(90deg,#C5A059,#E2D2A4);}
.btn{border-radius:999px;}
.btn-primary{background:linear-gradient(135deg,#D8BF7C,#B9954D);color:#211F1A;box-shadow:0 10px 28px rgba(160,125,55,.18);}
.btn-primary:hover{box-shadow:0 16px 36px rgba(160,125,55,.24);}
.btn-outline{background:rgba(255,255,255,.72);color:#80662F;border-color:#CFC6B7;}
.btn-outline:hover{border-color:#B9954D;background:#F8F4EA;}
header{background:rgba(244,240,232,.84)!important;border-bottom:1px solid rgba(104,96,82,.14)!important;backdrop-filter:blur(18px) saturate(120%);}
header.scrolled{background:rgba(244,240,232,.96)!important;box-shadow:0 12px 40px rgba(54,48,37,.08)!important;}
.logo,.brand-wordmark strong{color:#201F1B!important;}
.brand-wordmark small{color:#9A7A3D!important;}
.logo-mark{background:linear-gradient(135deg,#C5A059,#E5D29B)!important;color:#2A251A;box-shadow:0 8px 18px rgba(160,125,55,.18)!important;}
.nav-links a{color:#3E3B34;}
.nav-links a:hover,.nav-links a.active{color:#8C7138!important;}
.nav-links a::after{background:linear-gradient(90deg,#C5A059,#E2D2A4)!important;}
.menu-toggle{color:#8C7138!important;}
.mobile-menu{background:rgba(244,240,232,.98)!important;}
.mobile-menu a{color:#2E2C27;border-color:#D8D2C7;}
.card,.blog-card{background:#FFFDF9!important;border:1px solid #D9D3C8;box-shadow:0 10px 28px rgba(54,48,37,.06);}
.gcard{background:linear-gradient(135deg,#D9D3C8,#E8E2D8);}
.gcard::before{background:conic-gradient(from var(--angle,0deg),#C5A059,#E6D7AD,#A98945,#C5A059);}
.card-icon{background:linear-gradient(135deg,rgba(197,160,89,.12),rgba(229,210,155,.18));color:#80662F;}
.glass-shape{background:rgba(255,253,249,.55);border-color:rgba(197,160,89,.22);box-shadow:0 8px 32px rgba(54,48,37,.08);}
.mesh-gradient{background:radial-gradient(at 20% 20%,rgba(197,160,89,.09) 0,transparent 50%),radial-gradient(at 80% 15%,rgba(229,210,155,.11) 0,transparent 50%),radial-gradient(at 50% 80%,rgba(145,124,82,.06) 0,transparent 55%);}
.orb-gold,.orb-gold2,.orb-gold-accent{background:radial-gradient(circle,#D8C28B,transparent 70%)!important;opacity:.16!important;}
.glow-follow{background:radial-gradient(circle,rgba(197,160,89,.12),transparent 65%);}
footer{background:#24231F!important;color:#D8D2C7!important;}
footer .footer-logo,.footer-logo{color:#F4F0E8!important;}
footer .brand-wordmark strong{color:#F4F0E8!important;}
footer .brand-wordmark small{color:#D6BC79!important;}
.social-icons a{background:rgba(255,255,255,.06);border:1px solid rgba(216,210,199,.14);}
.social-icons a:hover{background:rgba(197,160,89,.16);color:#F3E5AB;}

/* Light SaaS dashboard */
.dashboard-card{background:#FFFDF9!important;border:1px solid #D8D2C7!important;box-shadow:0 24px 60px rgba(54,48,37,.10)!important;color:#2B2924!important;}
.dashboard-card::before{background:#D8C27F!important;opacity:.16!important;}
.dashboard-top{color:#514B40!important;}
.live{background:#8A9A72!important;}
.circle{background:conic-gradient(#C5A059 98%,#E7E0D4 0)!important;}
.circle span{background:#F3EEE4!important;color:#302D27!important;}
.score-details h2{color:#2C2924!important;}
.score-details p{color:#756F65!important;}
.status{background:#F7F3EA!important;border:1px solid #E0D9CD;}
.status h4{color:#625C52!important;}
.success p{color:#758A64!important;}.warning p{color:#A98748!important;}
.dashboard-stats h2{color:#A98945!important;}
.dashboard-stats p{color:#6A645A!important;}
#dashboardChart{filter:saturate(.55);}

/* 3D / visual panels: keep depth, remove blue cast */
.home-3d-wrap{background:radial-gradient(circle at 50% 48%,rgba(197,160,89,.10),transparent 34%),linear-gradient(180deg,transparent,rgba(238,233,223,.55))!important;}
.home-3d-kicker,.experience-3d-label span,.experience-kicker,.experience-year,.exp-step-no,.exp-metric strong{color:#9A7A3D!important;}
.home-3d-stat{background:rgba(255,253,249,.88)!important;border-color:rgba(197,160,89,.18)!important;box-shadow:0 14px 35px rgba(54,48,37,.08)!important;}
.home-3d-stat strong{color:#9A7A3D!important;}
.experience-hero{border-bottom:1px solid #DDD6CA;}
.experience-hero .breadcrumb a,.experience-hero .experience-kicker{color:#9A7A3D!important;}
.experience-hero .breadcrumb,.experience-hero .page-hero p,.experience-hero p{color:#756F65!important;}
.experience-proof-row{border-color:#D8D2C7!important;}
.experience-proof-row div{border-color:#D8D2C7!important;}
.experience-proof-row strong{color:#9A7A3D!important;}
.experience-proof-row span{color:#7A746A!important;}
.experience-immersive{padding-top:110px;}
.experience-intro .eyebrow{color:#8C7138!important;}
.experience-intro h2,.exp-story-step h3{color:#25231F!important;}
.exp-story-step p{color:#6E6A62!important;}
.exp-tags span{background:#F6F1E8!important;color:#6F5B32!important;border-color:#DCCFAF!important;}
.experience-3d-label,.experience-3d-caption{color:#756F65!important;}
.experience-visual-photo,.experience-gallery-section{background:transparent!important;}
.experience-photo-placeholder{background:linear-gradient(135deg,#E9E1D4,#FBF8F2,#E2D8C7)!important;border-color:#D6CEC0!important;}
.experience-photo-copy{background:#FFFDF9!important;border-color:#D8D2C7!important;color:#6E6A62!important;}
.experience-photo-copy strong{color:#292721!important;}
.experience-gallery-mosaic .experience-photo-card{background:#FFFDF9!important;border-color:#D8D2C7!important;box-shadow:0 14px 32px rgba(54,48,37,.06);}
.experience-gallery-mosaic figcaption{background:linear-gradient(to top,rgba(35,32,26,.78),rgba(35,32,26,0));}

/* Team */
.team-owner{background:#FFFDF9!important;color:#26231E!important;border-color:#D8D2C7!important;box-shadow:0 24px 70px rgba(54,48,37,.09)!important;}
.owner-photo-frame{background:linear-gradient(145deg,#E6DCCB,#F8F3E9)!important;border-color:rgba(197,160,89,.32)!important;box-shadow:inset 0 0 50px rgba(197,160,89,.08),0 25px 55px rgba(54,48,37,.12)!important;}
.owner-fallback{color:#A98945!important;background:radial-gradient(circle at 50% 40%,rgba(197,160,89,.16),rgba(248,244,235,.96))!important;}
.team-row{color:#28251F!important;border-bottom-color:#D8D2C7!important;}
.team-row:hover,.team-row.is-active{background:#F8F4EB!important;}
.team-row:hover .team-row-name,.team-row.is-active .team-row-name,.team-row:hover .team-row-action,.team-row.is-active .team-row-action{color:#9A7A3D!important;}
.team-identity{color:#A98945!important;}
.team-tags span{border-color:rgba(197,160,89,.25)!important;background:rgba(197,160,89,.07)!important;color:#80662F!important;}

/* Compliance light treatment */
.cube-label{color:#4A4439!important;text-shadow:none!important;background:rgba(255,253,249,.82)!important;border-color:rgba(197,160,89,.28)!important;}
.node-icon{background:linear-gradient(145deg,rgba(197,160,89,.18),rgba(255,253,249,.55))!important;border-color:rgba(197,160,89,.35)!important;box-shadow:0 8px 20px rgba(54,48,37,.08)!important;}
.beam{background:linear-gradient(90deg,rgba(197,160,89,.8),rgba(197,160,89,.12))!important;box-shadow:0 0 8px 1px rgba(197,160,89,.28)!important;}
.compliance-scene,.hero-img.compliance-scene{background:radial-gradient(circle at center,#FBF8F1 0%,#F0E9DD 68%,#E7DED0 100%)!important;}
.ambient-glow{background:radial-gradient(circle,rgba(197,160,89,.16),transparent 68%)!important;}
.particle{background:#C5A059!important;box-shadow:0 0 6px 2px rgba(197,160,89,.35)!important;}

/* Remove remaining blue UI traces */
[class*="legacy-blue"].ui-element{color:#9A7A3D!important;}

@media(max-width:900px){
  .experience-proof-row{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:640px){
  .experience-proof-row{grid-template-columns:1fr 1fr;}
  .btn{padding:13px 24px;}
}


/* =========================================================
   FINAL LUXE NEUTRAL OVERRIDE — remove ALL pastel/blue UI traces
   Palette: warm ivory + white + champagne gold + brushed silver
   ========================================================= */
:root{
  --primary:#A98945;
  --primary-dark:#80662F;
  --secondary:#C5A059;
  --accent:#D8BF7C;
  --success:#7B8A6B;
  --bg:#F4F0E8;
  --bg-light:#EEE9DF;
  --text-dark:#201F1B;
  --text-grey:#6E6A62;
  --border:#D8D2C7;
}

/* Global neutralize for legacy blue components */
.orb-gold,.orb-gold2,.orb-gold-accent{background:radial-gradient(circle,#D8BF7C,transparent 70%)!important;opacity:.14!important;}
.dashboard-card::before{background:#D8BF7C!important;}
.dashboard-stats h2{color:#A98945!important;}
.dashboard-stats p{color:#5D584F!important;}
.circle{background:conic-gradient(#C5A059 98%,#E5DED2 0)!important;}
.circle span{background:#F4F0E8!important;color:#29261F!important;}
.dashboard-top{color:#403B33!important;}

/* About hero / glass cube — absolutely no blue */
.section-story-dark{
  background:linear-gradient(145deg,#F4F0E8 0%,#EEE9DF 52%,#E6DED0 100%)!important;
  color:#201F1B!important;
}
.section-story-dark .eyebrow{background:rgba(197,160,89,.10)!important;color:#80662F!important;}
.section-story-dark .eyebrow::before{background:#C5A059!important;}
.section-story-dark .section-title,
.section-story-dark h1,.section-story-dark h2,.section-story-dark h3{color:#201F1B!important;}
.section-story-dark p,.section-story-dark .section-sub{color:#5F5A52!important;}
.compliance-scene,.hero-img.compliance-scene{
  background:radial-gradient(circle at center,#FBF8F1 0%,#F1EBE0 65%,#E6DED0 100%)!important;
}
.ambient-glow{background:radial-gradient(circle,rgba(197,160,89,.18),transparent 68%)!important;}
.cube-face{border-color:rgba(197,160,89,.28)!important;box-shadow:0 0 22px rgba(197,160,89,.14),inset 0 0 24px rgba(255,255,255,.18),inset 0 0 70px rgba(197,160,89,.06)!important;}
.node-icon{background:linear-gradient(145deg,rgba(197,160,89,.16),rgba(255,255,255,.62))!important;border-color:rgba(197,160,89,.34)!important;box-shadow:inset 0 0 12px rgba(197,160,89,.12),0 0 18px rgba(197,160,89,.12)!important;}
.core-platform{background:linear-gradient(135deg,rgba(197,160,89,.18),rgba(255,255,255,.70))!important;border-color:rgba(197,160,89,.32)!important;box-shadow:0 0 34px rgba(197,160,89,.18)!important;color:#29261F!important;}
.beam{background:linear-gradient(90deg,rgba(197,160,89,.82),rgba(197,160,89,.10))!important;box-shadow:0 0 8px 1px rgba(197,160,89,.24)!important;}
.cube-label{color:#403B33!important;text-shadow:none!important;background:rgba(255,253,249,.90)!important;border-color:rgba(197,160,89,.30)!important;}
.particle{background:#C5A059!important;box-shadow:0 0 6px 2px rgba(197,160,89,.30)!important;}

/* Meet the Team — replace all pastel-blue identity accents */
.team-section{background:#F3EFE7!important;}
.team-owner{background:#FFFDF9!important;color:#26231E!important;border-color:#D8D2C7!important;box-shadow:0 24px 70px rgba(54,48,37,.09)!important;}
.team-owner::before{border-color:rgba(197,160,89,.12)!important;box-shadow:0 0 0 70px rgba(197,160,89,.018),0 0 0 140px rgba(197,160,89,.012)!important;}
.owner-meta,.owner-kicker,.owner-arrow{color:#9A7A3D!important;}
.owner-meta span{color:#8B867D!important;}
.owner-orbit{border-color:rgba(197,160,89,.20)!important;}
.owner-orbit.orbit-two{border-color:rgba(197,160,89,.11)!important;}
.owner-photo-frame{background:linear-gradient(145deg,#E6DCCB,#F8F3E9)!important;border-color:rgba(197,160,89,.38)!important;box-shadow:inset 0 0 50px rgba(197,160,89,.08),0 25px 55px rgba(54,48,37,.12)!important;}
.owner-fallback{color:#A98945!important;background:radial-gradient(circle at 50% 40%,rgba(197,160,89,.16),rgba(248,244,235,.96))!important;}
.owner-role,.owner-description{color:#625C52!important;}
.team-list-head{color:#7A746A!important;border-bottom-color:#D8D2C7!important;}
.team-row{color:#28251F!important;border-bottom-color:#D8D2C7!important;}
.team-row:hover,.team-row.is-active{background:#F8F4EB!important;}
.team-row:hover .team-row-name,.team-row.is-active .team-row-name,.team-row:hover .team-row-action,.team-row.is-active .team-row-action{color:#9A7A3D!important;}
.team-identity,.team-identity.teal,.team-identity.slate,.team-identity.indigo,.team-identity.cyan{color:#A98945!important;}
.team-tags span{border-color:rgba(197,160,89,.25)!important;background:rgba(197,160,89,.07)!important;color:#80662F!important;}

/* Experience and all remaining blue labels */
.experience-hero,.experience-immersive{background:#F4F0E8!important;color:#201F1B!important;}
.experience-kicker,.experience-hero .breadcrumb a,.experience-hero .experience-kicker,.experience-intro .eyebrow,.experience-3d-label span,.exp-step-no,.exp-metric strong,.home-3d-kicker,.home-3d-stat strong{color:#9A7A3D!important;}
.experience-kicker::before{background:#C5A059!important;}
.experience-hero .breadcrumb,.experience-hero .page-hero p,.experience-hero p,.experience-intro p,.exp-story-step p,.experience-3d-label,.experience-3d-caption{color:#6E6A62!important;}
.experience-intro h2,.exp-story-step h3{color:#25231F!important;}
.experience-proof-row,.experience-proof-row div{border-color:#D8D2C7!important;}
.experience-proof-row strong{color:#9A7A3D!important;}
.experience-proof-row span{color:#7A746A!important;}
.exp-tags span{background:#F6F1E8!important;color:#6F5B32!important;border-color:#DCCFAF!important;}
.experience-timeline::before{background:linear-gradient(#C5A059,rgba(197,160,89,.08))!important;}

/* Navigation / links / buttons */
.nav-links a:hover,.nav-links a.active{color:#8C7138!important;}
.nav-links a::after{background:linear-gradient(90deg,#C5A059,#E2D2A4)!important;}
.menu-toggle{color:#8C7138!important;}

/* Any legacy utility classes that used blue */
.gallery-placeholder span,[class*="legacy-blue"],.home-3d-kicker,.home-3d-stat strong{ }

/* Mobile */
@media(max-width:900px){
  .team-owner{grid-template-columns:1fr;min-height:auto;padding:34px 30px 40px;}
  .owner-visual{width:300px;height:300px;margin:40px auto 0;}
}

/* Experience — selected organisations */
.experience-organisations-section{background:#F7F4ED;padding-top:96px;padding-bottom:96px;}
.experience-organisation-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:42px;}
.experience-organisation-card{background:#fff;border:1px solid rgba(93,86,72,.16);border-radius:22px;padding:14px;box-shadow:0 14px 34px rgba(54,48,37,.06);transition:transform .45s cubic-bezier(.22,.61,.36,1),box-shadow .45s,border-color .45s;overflow:hidden;}
.experience-organisation-card:hover{transform:translateY(-6px);border-color:rgba(197,160,89,.55);box-shadow:0 20px 44px rgba(54,48,37,.10);}
.experience-organisation-image{height:155px;border-radius:15px;background:#FBFAF6;border:1px solid #E2DDD2;display:flex;align-items:center;justify-content:center;overflow:hidden;position:relative;}
.experience-organisation-image:after{content:"";position:absolute;inset:0;background:linear-gradient(135deg,rgba(212,175,55,.06),transparent 48%,rgba(197,160,89,.04));pointer-events:none;}
.experience-organisation-image img{width:100%;height:100%;object-fit:contain;display:block;transition:transform .6s cubic-bezier(.22,.61,.36,1);padding:10px;}
.experience-organisation-card:hover .experience-organisation-image img{transform:scale(1.035);}
.experience-organisation-meta{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:14px 3px 3px;color:#24231F;}
.experience-organisation-meta span{font-size:10px;letter-spacing:.16em;color:#B08B43;font-weight:800;}
.experience-organisation-meta strong{font-family:'Poppins',sans-serif;font-size:13px;letter-spacing:.01em;color:#24231F;text-align:right;}
@media(max-width:900px){.experience-organisation-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:600px){.experience-organisations-section{padding-top:70px;padding-bottom:70px;}.experience-organisation-grid{grid-template-columns:1fr 1fr;gap:12px;}.experience-organisation-image{height:125px;}.experience-organisation-meta{display:block;}.experience-organisation-meta strong{display:block;text-align:left;margin-top:5px;font-size:12px;}}

/* Experience team/company photo gallery — restored real photographs */
.experience-team-gallery{grid-template-columns:1.18fr .82fr;grid-template-rows:320px 320px;gap:18px;margin-top:48px;}
.experience-team-gallery .experience-photo-card{margin:0;position:relative;overflow:hidden;border-radius:22px;background:#fffdf9;border:1px solid #d8d2c7;box-shadow:0 18px 42px rgba(54,48,37,.08);min-height:0;}
.experience-team-gallery .gallery-main,.experience-team-gallery .gallery-tall,.experience-team-gallery .gallery-wide,.experience-team-gallery .gallery-sign{grid-column:auto;grid-row:auto;display:block;}
.experience-team-gallery img{width:100%;height:100%;display:block;object-fit:cover;transition:transform .8s cubic-bezier(.22,.61,.36,1);}
.experience-team-gallery .experience-photo-card:hover img{transform:scale(1.035);}
.experience-team-gallery .gallery-main img{object-position:center 48%;}
.experience-team-gallery .gallery-sign img{object-fit:contain;background:#f7f3ea;padding:18px;}
.experience-team-gallery figcaption{position:absolute;left:0;right:0;bottom:0;padding:54px 24px 22px;background:linear-gradient(to top,rgba(32,31,27,.84),rgba(32,31,27,0));color:#fffdf9;display:flex;flex-direction:column;gap:5px;}
.experience-team-gallery figcaption strong{font-family:'Poppins',sans-serif;font-size:18px;color:#fffdf9;}
.experience-team-gallery figcaption span{font-size:12px;line-height:1.5;color:rgba(255,253,249,.78);}
@media(max-width:900px){
  .experience-team-gallery{grid-template-columns:1fr 1fr;grid-template-rows:300px 300px;}
}
@media(max-width:600px){
  .experience-team-gallery{grid-template-columns:1fr;grid-template-rows:auto;}
  .experience-team-gallery .experience-photo-card{min-height:310px;}
}


/* FINAL HOSTING-READY NEUTRAL TEAM PALETTE */
.team-identity.team-gold,.team-identity.team-brass,.team-identity.team-silver,.team-identity.team-champagne,.team-identity.team-stone{color:#A98945!important;}
.team-identity.team-silver{color:#8B867D!important;}
.team-identity.team-champagne{color:#C5A059!important;}
.team-identity.team-stone{color:#6E6A62!important;}

/* =========================================================
   EXPERIENCE PAGE — CLEAN CLIENT PRESENTATION
   One client section, consistent card geometry, no duplicate logo rail.
   ========================================================= */
.experience-proof-row{
  grid-template-columns:repeat(4,minmax(0,1fr));
  align-items:stretch;
}
.experience-proof-row div{
  min-height:92px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:20px 18px;
}
.experience-proof-row strong,
.experience-proof-row span{width:100%;text-align:center;}

.experience-client-grid{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:18px;
  margin-top:42px;
}
.experience-client-card{
  flex:0 0 calc((100% - 54px) / 4);
  background:#fff;
  border:1px solid rgba(93,86,72,.16);
  border-radius:22px;
  padding:14px;
  box-shadow:0 14px 34px rgba(54,48,37,.06);
  transition:transform .45s cubic-bezier(.22,.61,.36,1),box-shadow .45s,border-color .45s;
  overflow:hidden;
}
.experience-client-card:hover{
  transform:translateY(-6px);
  border-color:rgba(197,160,89,.55);
  box-shadow:0 20px 44px rgba(54,48,37,.10);
}
.experience-client-image{
  height:155px;
  border-radius:15px;
  background:#FBFAF6;
  border:1px solid #E2DDD2;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.experience-client-image img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
  padding:10px;
  transition:transform .6s cubic-bezier(.22,.61,.36,1);
}
.experience-client-card:hover .experience-client-image img{transform:scale(1.035);}
.experience-client-meta{
  min-height:42px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 3px 3px;
}
.experience-client-meta span{
  font-size:10px;
  letter-spacing:.16em;
  color:#B08B43;
  font-weight:800;
}
.experience-client-meta strong{
  font-family:'Poppins',sans-serif;
  font-size:13px;
  color:#24231F;
  text-align:right;
}

/* Seven cards: four on the first row, three centred on the second. */

.experience-testimonials{
  padding-top:96px;
  padding-bottom:96px;
}
.experience-testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
  margin-top:42px;
}
.experience-testimonial-card{
  background:#FFFDF9;
  border:1px solid #D8D2C7;
  border-radius:20px;
  padding:30px;
  min-height:245px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  box-shadow:0 12px 30px rgba(54,48,37,.05);
}
.experience-testimonial-stars{
  color:#B08B43;
  letter-spacing:.18em;
  font-size:13px;
  margin-bottom:18px;
}
.experience-testimonial-card p{
  margin:0 0 26px;
  color:#4F4A42;
  line-height:1.75;
  font-size:15px;
}
.experience-testimonial-card strong{
  display:block;
  color:#24231F;
  font-size:14px;
  margin-bottom:4px;
}
.experience-testimonial-card span{
  display:block;
  color:#7A746A;
  font-size:12px;
  line-height:1.5;
}

@media(max-width:900px){
  .experience-proof-row{grid-template-columns:repeat(2,minmax(0,1fr));}
  .experience-client-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));}
  .experience-client-card{flex:initial;}
  .experience-testimonial-grid{grid-template-columns:1fr;}
}
@media(max-width:600px){
  .experience-proof-row{grid-template-columns:1fr 1fr;}
  .experience-proof-row div{min-height:82px;padding:16px 10px;}
  .experience-client-grid{grid-template-columns:1fr 1fr;gap:12px;}
  .experience-client-card{padding:10px;border-radius:17px;}
  .experience-client-image{height:125px;}
  .experience-client-meta{display:block;padding-top:10px;}
  .experience-client-meta span{display:block;margin-bottom:5px;}
  .experience-client-meta strong{display:block;text-align:left;font-size:12px;}
  .experience-testimonials{padding-top:70px;padding-bottom:70px;}
  .experience-testimonial-card{min-height:0;padding:24px;}
}

/* =========================================================
   MOBILE RESPONSIVE REPAIR — preserve desktop composition,
   recompose narrow screens instead of shrinking desktop UI.
   ========================================================= */
@media (max-width: 768px){
  /* Header: mobile should be logo + menu, not a squeezed desktop CTA. */
  header{height:72px;}
  .navbar{height:72px;padding:10px 18px;gap:12px;}
  .logo{min-width:0;max-width:calc(100% - 52px);gap:9px;}
  .logo .brand-logo{width:38px;height:38px;flex:0 0 38px;}
  .brand-wordmark{min-width:0;}
  .brand-wordmark strong{font-size:13px;letter-spacing:.04em;}
  .brand-wordmark small{font-size:6px;letter-spacing:.20em;margin-top:4px;}
  .nav-cta{margin-left:auto;gap:0;}
  .nav-cta .btn-primary{display:none;}
  .menu-toggle{display:flex;align-items:center;justify-content:center;width:42px;height:42px;font-size:0;border:1px solid rgba(154,122,61,.22);border-radius:12px;background:rgba(255,253,249,.86);}
  .menu-toggle::before{content:'☰';font-size:22px;line-height:1;}
  .mobile-menu{top:72px;padding:18px 20px 28px;height:calc(100dvh - 72px);overflow-y:auto;}
  .mobile-menu a{padding:15px 2px;font-size:17px;}

  /* Never allow the menu layer to interfere with the page when it is closed. */
  .mobile-menu:not(.open){display:none!important;}

  /* General mobile readability. */
  .container{padding-left:20px;padding-right:20px;}
  .section{padding:72px 0;}
  .section-sub{font-size:15px;line-height:1.7;margin-bottom:38px;}

  /* Homepage 3D dashboard: reduce decorative overlap and keep cards readable. */
  .home-3d-wrap{min-height:360px;height:390px;border-radius:20px;overflow:hidden;}
  .home-3d-stat{background:#FFFDF9!important;backdrop-filter:none!important;-webkit-backdrop-filter:none!important;padding:10px 11px;max-width:112px;}
  .home-3d-stat.stat-a{left:8px;top:18%;}
  .home-3d-stat.stat-b{right:8px;bottom:18%;}
  .home-3d-points{right:8px;top:22px;}
  .home-3d-points span{font-size:8px;}

  /* About: the desktop two-column composition becomes a clean vertical flow.
     The inline grid declaration in about.html is intentionally overridden. */
  .section-story-dark .grid.grid-3{grid-template-columns:1fr!important;gap:34px!important;align-items:start!important;}
  .section-story-dark .grid.grid-3 > .reveal:first-child{width:100%;}
  .section-story-dark .grid.grid-3 > .gcard{width:100%;margin:0;}
  .section-story-dark .gcard .card{height:auto!important;min-height:0!important;padding:0!important;overflow:hidden;border-radius:18px;}
  .section-story-dark .hero-img.compliance-scene,
  .section-story-dark .compliance-scene{height:clamp(320px,88vw,390px)!important;min-height:0!important;}
  .section-story-dark .cube-wrapper{width:300px;height:300px;transform:scale(.78);}
  .section-story-dark .cube-face{width:245px;height:245px;margin-left:-122.5px;margin-top:-122.5px;}
  .section-story-dark .front{transform:translateZ(122.5px);}
  .section-story-dark .back{transform:rotateY(180deg) translateZ(122.5px);}
  .section-story-dark .left{transform:rotateY(-90deg) translateZ(122.5px);}
  .section-story-dark .right{transform:rotateY(90deg) translateZ(122.5px);}
  .section-story-dark .top{transform:rotateX(90deg) translateZ(122.5px);}
  .section-story-dark .bottom{transform:rotateX(-90deg) translateZ(122.5px);}
  .section-story-dark .cube-label{font-size:10px;padding:3px 7px;backdrop-filter:none!important;-webkit-backdrop-filter:none!important;background:#FFFDF9!important;}
  .section-story-dark .node-icon{width:38px;height:38px;}
  .section-story-dark .core-platform{width:112px;height:112px;}
  .section-story-dark .ambient-glow{width:360px;height:360px;filter:blur(38px);}

  /* Any glass/dashboard card that contains reading-heavy content should become
     opaque on narrow screens. */
  .dashboard-card,.glass-shape,.status,.home-3d-stat{backdrop-filter:none!important;-webkit-backdrop-filter:none!important;}

  /* Experience page: proof cards, client cards and testimonials form predictable
     grids with no stretched/stranded items. */
  .experience-hero{padding-top:72px;min-height:auto;}
  .experience-hero-copy{padding:64px 0 48px;}
  .experience-hero-copy h1{font-size:clamp(38px,11vw,48px);line-height:1.03;}
  .experience-proof-row{grid-template-columns:1fr 1fr!important;gap:0;margin-top:30px;}
  .experience-proof-row div{min-height:92px;padding:16px 10px!important;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;border-right:1px solid #D8D2C7!important;border-bottom:1px solid #D8D2C7!important;}
  .experience-proof-row div:nth-child(2n){border-right:0!important;}
  .experience-proof-row div:nth-last-child(-n+2){border-bottom:0!important;}
  .experience-proof-row strong{font-size:23px;}
  .experience-proof-row span{font-size:9px;line-height:1.35;}

  .experience-insights{padding-top:68px;}
  .experience-insight-grid{grid-template-columns:1fr!important;gap:34px!important;}
  .experience-achievement-list>div{grid-template-columns:34px 1fr;gap:12px;padding:20px 0;}

  .experience-organisations-section{padding-top:68px;padding-bottom:72px;}
  .experience-client-grid{display:grid!important;grid-template-columns:1fr 1fr!important;gap:12px!important;}
  .experience-client-card{width:auto;min-width:0;padding:10px!important;border-radius:16px;}
  .experience-client-image{height:112px!important;border-radius:12px;}
  .experience-client-meta{min-height:48px;display:block!important;padding:9px 2px 1px!important;}
  .experience-client-meta span{display:block;margin-bottom:4px;}
  .experience-client-meta strong{display:block;text-align:left;font-size:11px;line-height:1.25;}

  .experience-testimonials{padding-top:68px;padding-bottom:72px;}
  .experience-testimonial-grid{grid-template-columns:1fr!important;gap:14px!important;}
  .experience-testimonial-card{min-height:0!important;padding:22px!important;border-radius:17px;}

  /* Immersive experience/3D content should scroll normally on phones. Sticky
     desktop storytelling creates awkward jumps and overlaps on narrow screens. */
  .experience-immersive{padding-top:70px;overflow:visible;}
  .experience-shell{padding:0 20px;}
  .experience-stage-wrap{grid-template-columns:1fr!important;gap:24px!important;}
  .experience-3d-column{position:relative!important;top:auto!important;height:350px!important;min-height:350px!important;order:-1;}
  .experience-3d-frame{height:350px!important;min-height:350px!important;}
  .exp-story-step{min-height:0!important;padding:42px 0 54px!important;opacity:1!important;transform:none!important;}
  .experience-copy-column{margin-top:0!important;}

  /* Galleries: one card at a time on phones. */
  .experience-gallery-mosaic,
  .experience-team-gallery{grid-template-columns:1fr!important;grid-template-rows:auto!important;gap:14px!important;}
  .experience-gallery-mosaic .experience-photo-card,
  .experience-team-gallery .experience-photo-card{min-height:280px!important;}

  /* Floating controls must stay clear of content and each other. */
  .whatsapp-float{right:16px!important;bottom:76px!important;}
  .totop{right:16px!important;bottom:132px!important;}
}

@media (max-width:380px){
  .navbar{padding-left:14px;padding-right:14px;}
  .brand-wordmark strong{font-size:12px;}
  .experience-client-grid{gap:9px!important;}
  .experience-client-image{height:100px!important;}
  .experience-proof-row strong{font-size:21px;}
}
