
  :root{
    --dark:#0b1512;
    --dark-2:#12211d;
    --dark-3:#182e28;
    --teal:#2f7d72;
    --teal-light:#4fa294;
    --teal-pale:#e7f1ef;
    --offwhite:#eef1ef;
    --paper:#f6f7f6;
    --grey:#6b7370;
    --white:#ffffff;
    --black:#0f1210;
    --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth; overflow-x:hidden; width:100%;}
  body{font-family:var(--sans); color:var(--black); line-height:1.6; background:var(--white); overflow-x:hidden; width:100%;}
  a{text-decoration:none; color:inherit;}
  ul{list-style:none;}
  img{max-width:100%; display:block;}
  .wrap{max-width:1280px; margin:0 auto; padding:0 40px;}
  h1,h2,h3,h4{font-weight:700; letter-spacing:-.2px;}
  .eyebrow{
    display:inline-flex; align-items:center; gap:8px; text-transform:uppercase; letter-spacing:1.4px; font-size:13px;
    font-weight:700; color:var(--teal); background:var(--teal-pale); padding:8px 16px; border-radius:999px; margin-bottom:20px;
  }
  .eyebrow.on-dark{ background:rgba(255,255,255,.08); color:var(--teal-light); }
  .pill{
    display:inline-flex; align-items:center; gap:14px; padding:6px 6px 6px 26px; border-radius:999px; font-size:15px;
    font-weight:600; transition:all .25s ease; cursor:pointer; border:none;
  }
  .pill .circ{ width:40px; height:40px; border-radius:50%; display:flex; align-items:center; justify-content:center; flex:none; }
  .pill-teal{ background:var(--teal); color:var(--white); }
  .pill-teal .circ{ background:var(--dark); color:var(--white); }
  .pill-teal:hover{ background:var(--teal-light); }
  .pill-outline{ background:transparent; border:1.5px solid rgba(255,255,255,.4); color:var(--white); }
  .pill-outline .circ{ background:rgba(255,255,255,.15); }
  .pill-outline:hover{ border-color:var(--white); }
  .pill-dark{ background:var(--dark); color:var(--white); }
  .pill-dark .circ{ background:var(--teal); }
  .pill-dark:hover{ background:var(--dark-3); }
  .link-circle{ display:inline-flex; align-items:center; gap:10px; font-size:13.5px; font-weight:700; color:var(--black); }
  .link-circle .circ{ width:30px; height:30px; border-radius:50%; background:var(--dark); color:var(--white); display:flex; align-items:center; justify-content:center; transition:transform .3s ease; }
  .link-circle:hover .circ{ transform:rotate(45deg); }
  .pill .circ{ transition:transform .35s cubic-bezier(.2,.8,.2,1); }
  .pill:hover .circ{ transform:rotate(45deg); }
  .pill{ transition:background .25s ease, transform .25s ease, box-shadow .25s ease; }
  .pill:hover{ transform:translateY(-2px); box-shadow:0 14px 30px rgba(15,18,16,.16); }
  .pill-outline:hover{ transform:translateY(-2px); }

  /* ===== Header ===== */
  header{ position:sticky; top:0; z-index:1000; background:var(--white); box-shadow:0 1px 0 #ececee; }
  header .wrap{ display:flex; align-items:center; justify-content:space-between; height:84px; }
  .logo{ display:flex; align-items:center; gap:10px; font-size:20px; font-weight:800; color:var(--dark); }
  .logo .cube{ width:30px; height:30px; }
  nav.mainnav{ display:flex; align-items:center; gap:34px; }
  nav.mainnav > ul{ display:flex; gap:30px; align-items:center; }
  nav.mainnav > ul > li{ position:relative; }
  nav.mainnav > ul > li > a{ font-size:14px; font-weight:600; color:#28312d; display:flex; align-items:center; gap:5px; padding:10px 0; position:relative; }
  nav.mainnav > ul > li > a::after{ content:""; position:absolute; left:0; bottom:4px; width:0; height:2px; background:var(--teal); transition:width .3s cubic-bezier(.2,.8,.2,1); }
  nav.mainnav > ul > li > a:hover{ color:var(--teal); }
  nav.mainnav > ul > li > a:hover::after{ width:100%; }
  .caret{ font-size:9px; color:var(--teal); transition:transform .25s ease; }
  nav.mainnav > ul > li:hover .caret{ transform:rotate(180deg); }
  .dropdown-simple{
    position:absolute; top:100%; left:50%; transform:translateX(-50%) translateY(6px);
    background:var(--white); min-width:250px; padding:12px; border-radius:10px;
    box-shadow:0 20px 46px rgba(15,18,16,.16); opacity:0; visibility:hidden; transition:all .2s ease;
  }
  nav.mainnav > ul > li:hover .dropdown-simple{ opacity:1; visibility:visible; transform:translateX(-50%) translateY(0); }
  .dropdown-simple a{ display:block; padding:10px 14px; font-size:13.5px; font-weight:600; color:#28312d; border-radius:6px; }
  .dropdown-simple a:hover{ background:var(--paper); color:var(--teal); }
  .header-right{ display:flex; align-items:center; gap:16px; }
  .icon-btn{ width:42px; height:42px; border-radius:50%; border:1px solid #e2e4e2; display:flex; align-items:center; justify-content:center; color:var(--dark); background:none; cursor:pointer; transition:background .2s ease, transform .2s ease; }
  .icon-btn:hover{ background:var(--paper); transform:scale(1.06); }
  .hamburger{ display:flex; flex-direction:column; gap:5px; cursor:pointer; padding:8px; margin:-8px; }
  .hamburger span{ width:22px; height:2px; background:var(--dark); display:block; transition:transform .3s ease, opacity .3s ease; }
  .hamburger.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2){ transform:translateY(-7px) rotate(-45deg); }

  /* ===== Mobile nav drawer ===== */
  .mobile-nav{ position:fixed; inset:0; z-index:1500; visibility:hidden; pointer-events:none; }
  .mobile-nav .scrim{ position:absolute; inset:0; background:rgba(11,21,18,.55); opacity:0; transition:opacity .35s ease; }
  .mobile-nav .panel{
    position:absolute; top:0; right:0; bottom:0; width:min(360px,86vw); background:var(--white);
    transform:translateX(100%); transition:transform .4s cubic-bezier(.2,.8,.2,1); padding:28px 26px; overflow-y:auto;
  }
  .mobile-nav.open{ visibility:visible; pointer-events:all; }
  .mobile-nav.open .scrim{ opacity:1; }
  .mobile-nav.open .panel{ transform:translateX(0); }
  .mobile-nav .mn-top{ display:flex; align-items:center; justify-content:space-between; margin-bottom:30px; }
  .mobile-nav .mn-close{ width:38px; height:38px; border-radius:50%; border:1px solid #e2e4e2; display:flex; align-items:center; justify-content:center; cursor:pointer; }
  .mobile-nav details{ border-bottom:1px solid #ececee; padding:14px 0; }
  .mobile-nav summary{ font-size:15px; font-weight:700; color:var(--dark); cursor:pointer; list-style:none; display:flex; justify-content:space-between; align-items:center; }
  .mobile-nav summary::-webkit-details-marker{ display:none; }
  .mobile-nav summary::after{ content:"+"; color:var(--teal); font-size:18px; transition:transform .25s ease; }
  .mobile-nav details[open] summary::after{ transform:rotate(45deg); }
  .mobile-nav .mn-sub{ padding:10px 0 4px 4px; display:flex; flex-direction:column; gap:10px; }
  .mobile-nav .mn-sub a{ font-size:13.5px; color:var(--grey); }
  .mobile-nav .mn-sub a:hover{ color:var(--teal); }
  .mobile-nav .mn-cta{ margin-top:22px; }
  @media(min-width:1081px){ .mobile-nav{ display:none; } }

  /* ===== Hero ===== */
  .hero{ position:relative; height:88vh; min-height:600px; overflow:hidden; color:var(--white); }
  .hero-slide{
    position:absolute; inset:0; background-size:cover; background-position:center; opacity:0;
    transform:scale(1.06); transition:opacity 1.1s ease, transform 6s linear; z-index:0;
  }
  .hero-slide.active{ opacity:1; transform:scale(1); z-index:1; }
  .hero::after{ content:""; position:absolute; inset:0; z-index:1; background:linear-gradient(100deg, rgba(11,21,18,.88) 20%, rgba(11,21,18,.45) 70%); }
  .hero .wrap{ position:relative; z-index:2; height:100%; display:flex; flex-direction:column; justify-content:center; align-items:flex-start; }
  .hero h1{ font-size:84px; font-weight:800; line-height:1.02; letter-spacing:-2px; max-width:780px; }
  .hero h1 .fade{ color:#aab3af; }
  .hero p{ font-size:17px; color:#cdd4d0; max-width:480px; margin:26px 0 34px; font-weight:400; }
  .pill{ align-self:flex-start; flex:none; }
  .hero-arrows{ position:absolute; top:50%; left:0; right:0; transform:translateY(-50%); display:flex; justify-content:space-between; padding:0 40px; z-index:3; pointer-events:none; }
  .hero-arrows .circ{ pointer-events:all; width:52px; height:52px; border-radius:50%; border:1px solid rgba(255,255,255,.3); display:flex; align-items:center; justify-content:center; color:#fff; cursor:pointer; transition:background .25s ease, transform .25s ease; user-select:none; }
  .hero-arrows .circ:hover{ background:rgba(255,255,255,.12); transform:scale(1.08); }
  .hero-thumbs{ position:absolute; bottom:40px; left:40px; display:flex; gap:10px; z-index:3; }
  .hero-thumbs img{ width:70px; height:70px; border-radius:8px; object-fit:cover; border:2px solid rgba(255,255,255,.35); cursor:pointer; opacity:.6; transition:border-color .3s ease, opacity .3s ease, transform .3s ease; }
  .hero-thumbs img:hover{ opacity:.9; transform:translateY(-2px); }
  .hero-thumbs img.active{ border-color:var(--teal-light); opacity:1; }
  .explore-badge{ position:absolute; bottom:34px; right:40px; z-index:3; width:118px; height:118px; }
  .explore-badge svg text{ font-size:9.6px; letter-spacing:2.4px; fill:#fff; text-transform:uppercase; font-weight:700; }
  .explore-badge .spin{ animation:spin 14s linear infinite; }
  .explore-badge .arrow{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; color:#fff; }
  @keyframes spin{ from{ transform:rotate(0deg); } to{ transform:rotate(360deg); } }

  /* ===== Triptych banner ===== */
  .triptych{ position:relative; padding:70px 0 100px; background:var(--white); overflow:hidden; }
  .triptych .ghost{ position:absolute; top:14px; left:0; right:0; text-align:center; font-size:96px; font-weight:800; color:transparent; -webkit-text-stroke:1.5px #e3e6e3; white-space:nowrap; z-index:0; letter-spacing:-1px; }
  .triptych .row{ position:relative; z-index:2; display:grid; grid-template-columns:1fr 1.3fr 1fr; gap:20px; margin-top:120px; }
  .triptych .row img{ width:100%; height:300px; object-fit:cover; border-radius:6px; }
  .triptych .row div:nth-child(2) img{ height:340px; margin-top:-40px; }

  /* ===== Divisions badge strip ===== */
  .badge-strip{ background:var(--paper); padding:56px 0; }
  .badge-strip .head{ text-align:center; margin-bottom:34px; }
  .badge-strip h3{ font-size:22px; color:var(--dark); font-weight:700; }
  .badge-row{ display:flex; flex-wrap:wrap; justify-content:center; gap:14px; }
  .badge-row span{ background:var(--white); border:1px solid #e2e4e2; padding:12px 22px; border-radius:999px; font-size:13.5px; font-weight:700; color:var(--dark); transition:background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease; }
  .badge-row-mask{ overflow:hidden; }
  .badge-row-mask .badge-row{ flex-wrap:nowrap; width:max-content; justify-content:flex-start; animation:badgeScroll 26s linear infinite; }
  .badge-row-mask:hover .badge-row{ animation-play-state:paused; }
  .badge-row span:hover{ background:var(--teal); color:var(--white); border-color:var(--teal); transform:translateY(-3px); }
  @keyframes badgeScroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

  /* ===== Stats / Excellence ===== */
  .excellence{ padding:110px 0 60px; }
  .excellence .grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:60px; align-items:center; }
  .stat-card{ position:relative; background:var(--white); border:1px solid #e2e4e2; border-radius:16px; padding:34px; box-shadow:0 24px 50px rgba(15,18,16,.06); transition:transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease; }
  .stat-card:hover{ transform:translateY(-6px); box-shadow:0 30px 60px rgba(15,18,16,.12); }
  .stat-card .check{ width:52px; height:52px; border-radius:50%; background:var(--teal-pale); color:var(--teal); display:flex; align-items:center; justify-content:center; margin-bottom:70px; perspective:300px; }
  .stat-card .check svg{ transition:transform .55s cubic-bezier(.3,1.4,.5,1); }
  .stat-card:hover .check svg{ transform:rotateY(180deg); }
  .stat-card .sparkle{ position:absolute; top:30px; right:30px; color:var(--teal-light); opacity:.8; animation:sparkle 2.6s ease-in-out infinite; }
  @keyframes sparkle{ 0%,100%{ opacity:.35; transform:scale(.85) rotate(0deg);} 50%{ opacity:1; transform:scale(1.08) rotate(12deg);} }
  .stat-card .num{ font-size:15px; color:var(--grey); font-weight:700; }
  .stat-card .big{ font-size:72px; font-weight:800; color:var(--dark); line-height:1; margin:8px 0; letter-spacing:-1.5px; }
  .excellence-content h2{ font-size:46px; font-weight:800; letter-spacing:-1px; color:var(--dark); margin-bottom:18px; max-width:560px; line-height:1.12; }
  .sw-word{ display:inline-block; }
  .excellence-content h2 .sw-ch{ color:#ccd1ce; transition:color .15s linear; }
  .excellence-content h2 .sw-ch.sw-lit{ color:var(--dark); }
  .excellence-content p{ color:var(--grey); font-size:15.5px; max-width:520px; margin-bottom:22px; }
  .video-card{ position:relative; border-radius:16px; overflow:hidden; margin-top:60px; cursor:pointer; }
  .video-card img{ width:100%; height:320px; object-fit:cover; transition:transform .6s cubic-bezier(.2,.8,.2,1); }
  .video-card:hover img{ transform:scale(1.05); }
  .video-card .play{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; }
  .video-card .play span{ width:76px; height:76px; border-radius:50%; background:rgba(255,255,255,.92); display:flex; align-items:center; justify-content:center; color:var(--dark); transition:transform .3s cubic-bezier(.2,.8,.2,1), background .3s ease; }
  .video-card:hover .play span{ transform:scale(1.12); background:var(--teal); color:var(--white); }
  .mini-row{ display:grid; grid-template-columns:1fr 1fr; gap:30px; margin-top:50px; }
  .mini-item{ display:flex; gap:16px; transition:transform .3s ease; }
  .mini-item:hover{ transform:translateX(4px); }
  .mini-item .n{ font-size:13px; color:var(--teal); font-weight:800; }
  .mini-item .ic{ width:48px; height:48px; border-radius:12px; background:var(--teal-pale); color:var(--teal); display:flex; align-items:center; justify-content:center; flex:none; transition:background .3s ease, color .3s ease; perspective:300px; }
  .mini-item .ic svg{ transition:transform .55s cubic-bezier(.3,1.4,.5,1); }
  .mini-item:hover .ic svg{ transform:rotateY(180deg); }
  .mini-item:hover .ic{ background:var(--teal); color:var(--white); }
  .mini-item h4{ font-size:15px; color:var(--dark); margin-bottom:4px; }
  .mini-item p{ font-size:13px; color:var(--grey); }

  /* ===== Diagonal line texture (used behind dark sections) ===== */
  .tex-lines{ position:absolute; inset:0; pointer-events:none; opacity:.5; z-index:0;
    background-image:repeating-linear-gradient(58deg, rgba(255,255,255,.05) 0 1px, transparent 1px 34px);
    -webkit-mask-image:linear-gradient(120deg, #000 0%, transparent 55%);
            mask-image:linear-gradient(120deg, #000 0%, transparent 55%);
  }
  .footer-cta, .footer-main, .marquee, .footer-legal{ position:relative; z-index:1; }

  /* ===== Dark solutions ===== */
  .solutions{ position:relative; background:var(--dark); color:var(--white); padding:120px 0; margin-top:60px; overflow:hidden; }
  .solutions .grid{ position:relative; z-index:2; display:grid; grid-template-columns:.8fr 1.2fr; gap:50px; }
  .solutions h2{ font-size:46px; font-weight:800; letter-spacing:-1px; margin:14px 0 30px; max-width:440px; line-height:1.12; }
  .solutions h2 .sw-ch{ color:rgba(255,255,255,.28); transition:color .15s linear; }
  .solutions h2 .sw-ch.sw-lit{ color:#fff; }
  .sol-card{ border:1px dashed rgba(255,255,255,.18); border-radius:14px; padding:30px; margin-bottom:20px; transition:transform .5s cubic-bezier(.2,.8,.2,1), opacity .6s ease, border-color .35s ease, background .35s ease; }
  .sol-card:hover{ transform:translateY(-6px); border-color:rgba(255,255,255,.4); }
  .sol-card.slide-left{ opacity:0; transform:translateX(-56px); }
  .sol-card.slide-left.in{ opacity:1; transform:translateX(0); }
  .sol-card.slide-left.in:hover{ transform:translateY(-6px); }
  .sol-card.on{ background:var(--teal); border-style:solid; border-color:var(--teal); }
  .sol-card.on:hover{ border-color:var(--white); }
  .sol-icon{
    width:52px; height:52px; border-radius:50%; background:rgba(255,255,255,.08); color:var(--teal-light);
    display:flex; align-items:center; justify-content:center; margin-bottom:20px; perspective:400px;
  }
  .sol-icon svg{ transition:transform .55s cubic-bezier(.3,1.4,.5,1); transform-style:preserve-3d; }
  .sol-card:hover .sol-icon svg{ transform:rotateY(180deg); }
  .sol-card.on .sol-icon{ background:rgba(255,255,255,.16); color:var(--white); }
  .sol-card h3{ font-size:19px; margin-bottom:12px; }
  .sol-card p{ font-size:14px; color:#c8ceca; margin-bottom:14px; }
  .sol-card.on p{ color:rgba(255,255,255,.92); }
  .sol-card ul li{ font-size:13.5px; color:#c8ceca; padding:5px 0 5px 20px; position:relative; transition:padding-left .25s ease; }
  .sol-card ul li:hover{ padding-left:26px; }
  .sol-card.on ul li{ color:rgba(255,255,255,.95); }
  .sol-card ul li::before{ content:"»"; position:absolute; left:0; color:var(--teal-light); font-weight:700; }
  .sol-card.on ul li::before{ color:var(--white); }

  /* ===== Process ===== */
  .process{ padding:120px 0; }
  .process .head-row{ display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:60px; flex-wrap:wrap; gap:20px; }
  .process h2{ font-size:44px; font-weight:800; letter-spacing:-1px; color:var(--dark); max-width:480px; line-height:1.14; }
  .process .head-row p{ color:var(--grey); font-size:15px; max-width:360px; }
  .steps{ display:grid; grid-template-columns:1fr auto 1fr auto 1fr; align-items:center; gap:0; }
  .step{ position:relative; background:var(--paper); border-radius:16px; padding:36px 30px; transition:transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease; }
  .step:hover{ transform:translateY(-6px); box-shadow:0 24px 46px rgba(15,18,16,.1); }
  .step .digit{
    font-size:56px; font-weight:800; margin-bottom:14px; line-height:1;
    background:linear-gradient(180deg, var(--teal-light) 0%, rgba(47,125,114,.15) 100%);
    -webkit-background-clip:text; background-clip:text; color:transparent;
  }
  .step h4{ font-size:19px; color:var(--dark); margin-bottom:10px; }
  .step p{ font-size:14px; color:var(--grey); }
  .step-arrow{ position:relative; z-index:2; width:44px; height:44px; border-radius:50%; background:var(--paper); border:1px solid #dfe2df; display:flex; align-items:center; justify-content:center; color:var(--dark); margin:0 auto; }

  /* ===== Testimonial ===== */
  .testimonial{ background:var(--paper); padding:110px 0; }
  .testimonial .grid{ display:grid; grid-template-columns:1fr 1.1fr; gap:0; background:var(--white); border-radius:20px; overflow:hidden; box-shadow:0 30px 60px rgba(15,18,16,.08); }
  .testimonial .photo{ position:relative; }
  .testimonial .photo img{ width:100%; height:100%; object-fit:cover; min-height:340px; }
  .testimonial .rating-card{
    position:absolute; bottom:26px; right:-26px; background:var(--teal); color:var(--white); border-radius:14px;
    padding:26px 30px; width:190px;
  }
  .testimonial .rating-card .n{ font-size:36px; font-weight:800; }
  .testimonial .rating-card .stars{ color:rgba(255,255,255,.35); letter-spacing:2px; margin:8px 0; }
  .testimonial .rating-card .l{ font-size:12px; color:rgba(255,255,255,.85); }
  .testimonial .content{ padding:56px 66px 56px 56px; display:flex; flex-direction:column; justify-content:center; }
  .testimonial .quote-mark{ color:var(--teal); font-size:44px; font-weight:800; margin-bottom:14px; }
  .testimonial .content p.quote{ font-size:19px; color:#28312d; line-height:1.6; margin-bottom:24px; }
  .testimonial .attribution{ display:flex; align-items:center; gap:14px; padding-top:20px; border-top:1px dashed #dfe2df; }
  .testimonial .attribution img{ width:48px; height:48px; border-radius:50%; object-fit:cover; }
  .testimonial .attribution h5{ font-size:14.5px; color:var(--dark); }
  .testimonial .attribution span{ font-size:12.5px; color:var(--grey); }
  .sample-tag{ display:inline-block; margin-top:18px; font-size:11px; text-transform:uppercase; letter-spacing:1px; font-weight:700; color:var(--grey); background:#eceeec; padding:5px 12px; border-radius:999px; }

  /* ===== Leadership grid ===== */
  .leadership{ padding:120px 0; }
  .leadership .head{ text-align:center; max-width:640px; margin:0 auto 60px; }
  .leadership h2{ font-size:44px; font-weight:800; letter-spacing:-1px; color:var(--dark); }
  .leadership .note{ font-size:13px; color:var(--grey); margin-top:10px; }
  .team-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:26px; }
  .team-card{ position:relative; border-radius:16px; overflow:hidden; background:var(--teal-pale); }
  .team-card img{ width:100%; height:340px; object-fit:cover; filter:grayscale(85%) contrast(1.02); transition:filter .5s ease, transform .5s cubic-bezier(.2,.8,.2,1); }
  .team-card:hover img{ filter:grayscale(0%); transform:scale(1.04); }
  .team-card .info{ margin-top:16px; padding:0 18px 18px; display:flex; justify-content:space-between; align-items:center; gap:10px; }
  .team-card h4{ font-size:16px; color:var(--dark); }
  .team-card span{ font-size:12.5px; color:var(--grey); }
  .team-card .at{ width:30px; height:30px; border-radius:50%; border:1px solid #dfe2df; display:flex; align-items:center; justify-content:center; font-size:12px; color:var(--grey); transition:background .25s ease, color .25s ease, transform .25s ease; }
  .team-card:hover .at{ background:var(--teal); color:var(--white); border-color:var(--teal); transform:rotate(45deg); }
  .team-card.dark{ background:var(--dark); }
  .team-card.dark img{ filter:grayscale(70%) brightness(.55); }
  .team-card.dark:hover img{ filter:grayscale(20%) brightness(.6); }
  .team-card.dark .socials{ position:absolute; top:44%; left:50%; transform:translate(-50%,-50%); display:flex; gap:10px; opacity:0; transition:opacity .35s ease, transform .35s ease; }
  .team-card.dark:hover .socials{ opacity:1; transform:translate(-50%,-50%) scale(1.05); }
  .team-card.dark .socials a{ width:34px; height:34px; border-radius:50%; background:rgba(255,255,255,.14); display:flex; align-items:center; justify-content:center; color:#fff; transition:background .25s ease; }
  .team-card.dark .socials a:hover{ background:var(--teal); }

  /* ===== News ===== */
  .news{ background:var(--paper); padding:110px 0; }
  .news .head-row{ display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:50px; flex-wrap:wrap; gap:20px; }
  .news h2{ font-size:40px; font-weight:800; letter-spacing:-.5px; color:var(--dark); max-width:580px; }
  .news .head-row .nav-arrows{ display:flex; gap:10px; }
  .news .head-row .nav-arrows .circ{ width:44px; height:44px; border-radius:50%; border:1px solid #dfe2df; display:flex; align-items:center; justify-content:center; color:var(--dark); }
  .news-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
  .news-card{ display:block; background:var(--white); border-radius:14px; overflow:hidden; transition:transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease; }
  .news-card:hover{ transform:translateY(-6px); box-shadow:0 26px 50px rgba(15,18,16,.1); }
  .news-card .thumb{ position:relative; height:190px; overflow:hidden; }
  .news-card .thumb img{ width:100%; height:100%; object-fit:cover; transition:transform .6s cubic-bezier(.2,.8,.2,1); }
  .news-card:hover .thumb img{ transform:scale(1.08); }
  .news-card .date{ position:absolute; top:14px; left:14px; background:rgba(15,18,16,.75); color:#fff; padding:8px 12px; border-radius:8px; text-align:center; font-size:11px; line-height:1.2; }
  .news-card .date strong{ display:block; font-size:16px; }
  .news-card .body{ padding:22px 20px 26px; }
  .news-card .meta{ display:flex; gap:10px; align-items:center; margin-bottom:12px; }
  .news-card .tag{ font-size:10.5px; text-transform:uppercase; letter-spacing:.5px; font-weight:700; color:var(--teal); background:var(--teal-pale); padding:4px 10px; border-radius:999px; }
  .news-card .by{ font-size:12px; color:var(--grey); }
  .news-card h4{ font-size:16px; color:var(--dark); line-height:1.4; margin-bottom:16px; }

  /* ===== Footer ===== */
  footer{ background:var(--dark); color:#a9b1ad; padding:0 0 0; position:relative; overflow:hidden; }
  .footer-cta{ padding:90px 40px 0; }
  .footer-cta .panel{
    background:var(--dark-2); border-radius:18px; padding:40px 46px; display:flex; align-items:center; justify-content:space-between;
    gap:30px; flex-wrap:wrap;
  }
  .footer-cta .panel .flogo{ display:flex; align-items:center; gap:12px; font-size:24px; font-weight:800; color:#fff; }
  .footer-cta .panel .flogo .cube{ width:34px; height:34px; }
  .footer-cta .email-row{ display:flex; align-items:center; background:rgba(255,255,255,.06); border-radius:999px; padding:6px; gap:6px; flex:1; max-width:560px; min-width:280px; }
  .footer-cta .email-row input{ background:none; border:none; outline:none; color:#fff; padding:10px 16px; flex:1; font-size:14px; }
  .footer-cta .email-row input::placeholder{ color:#8890a0; }

  .footer-main{ padding:70px 40px 40px; }
  .footer-grid{ display:grid; grid-template-columns:1.2fr 1fr 1fr 1fr 1fr; gap:32px; }
  .footer-grid h5{ color:#fff; font-size:16px; font-weight:800; margin-bottom:22px; }
  .footer-grid ul li{ margin-bottom:13px; font-size:13.5px; }
  .footer-grid ul li a:hover{ color:var(--teal-light); }
  .footer-grid p.tagline{ font-size:13.5px; max-width:270px; color:#8890a0; margin:16px 0 22px; }
  .footer-badges{ display:flex; gap:10px; flex-wrap:wrap; }
  .footer-badges span{ border:1px solid rgba(255,255,255,.16); border-radius:999px; padding:9px 16px; font-size:12px; font-weight:700; color:#cfd4d0; }
  .footer-grid .office p{ font-size:13.5px; margin-bottom:14px; color:#a9b1ad; }
  .footer-grid .office strong{ color:#fff; }

  .marquee{ position:relative; padding:60px 0; border-top:1px solid rgba(255,255,255,.06); overflow:hidden; }
  .marquee .track{ display:flex; align-items:center; gap:40px; white-space:nowrap; animation:scroll 22s linear infinite; }
  .marquee:hover .track{ animation-play-state:paused; }
  .marquee .track span{ font-size:96px; font-weight:800; color:transparent; -webkit-text-stroke:1px rgba(255,255,255,.28); transition:-webkit-text-stroke-color .3s ease; }
  .marquee .track span:hover{ -webkit-text-stroke-color:var(--teal-light); }
  .marquee .track img{ width:90px; height:64px; border-radius:8px; object-fit:cover; display:inline-block; transition:transform .3s ease; }
  .marquee .track img:hover{ transform:scale(1.08) rotate(-2deg); }
  @keyframes scroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

  .news .head-row .nav-arrows .circ{ transition:background .25s ease, color .25s ease, transform .25s ease; cursor:pointer; }
  .news .head-row .nav-arrows .circ:hover{ background:var(--dark); color:var(--white); transform:scale(1.06); }
  .footer-badges span{ transition:border-color .25s ease, color .25s ease; }
  .footer-badges span:hover{ border-color:var(--teal-light); color:#fff; }
  .footer-grid ul li a{ transition:padding-left .25s ease; display:inline-block; }
  .footer-grid ul li a:hover{ padding-left:5px; }

  .footer-legal{ border-top:1px solid rgba(255,255,255,.08); padding:22px 40px 30px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:12px; }
  .footer-legal .links{ display:flex; gap:20px; flex-wrap:wrap; }
  .footer-legal a:hover{ color:var(--teal-light); }

  .reveal{ opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
  .reveal.in{ opacity:1; transform:translateY(0); }


  /* ===== Inner-page components (About / Divisions / Verticals / Contact / etc.) ===== */

  .page-hero{
    position:relative; height:46vh; min-height:380px; overflow:hidden; color:var(--white);
    background-size:cover; background-position:center;
  }
  .page-hero::after{ content:""; position:absolute; inset:0; z-index:1; background:linear-gradient(100deg, rgba(11,21,18,.9) 25%, rgba(11,21,18,.55) 80%); }
  .page-hero .wrap{ position:relative; z-index:2; height:100%; display:flex; flex-direction:column; justify-content:center; align-items:flex-start; }
  .page-hero .breadcrumb{ display:flex; align-items:center; gap:8px; font-size:13px; color:#cdd4d0; margin-bottom:18px; letter-spacing:.2px; }
  .page-hero .breadcrumb a{ color:#cdd4d0; transition:color .2s ease; }
  .page-hero .breadcrumb a:hover{ color:var(--teal-light); }
  .page-hero .breadcrumb span{ opacity:.5; }
  .page-hero .breadcrumb .current{ color:var(--white); opacity:1; font-weight:600; }
  .page-hero h1{ font-size:56px; font-weight:800; line-height:1.05; letter-spacing:-1.5px; max-width:760px; }
  .page-hero p{ font-size:17px; color:#cdd4d0; max-width:600px; margin-top:20px; font-weight:400; }

  .prose-section{ padding:100px 0; }
  .prose-section.tight{ padding:60px 0; }
  .prose-section .head{ max-width:720px; margin-bottom:48px; }
  .prose-section h2{ font-size:40px; font-weight:800; letter-spacing:-1px; line-height:1.14; margin-bottom:18px; }
  .prose-section p.lead{ font-size:18px; color:var(--grey); line-height:1.7; max-width:760px; }
  .prose-section .cols{ display:grid; grid-template-columns:1fr 1fr; gap:60px; margin-top:20px; }
  .prose-section .cols p{ color:var(--grey); font-size:15.5px; line-height:1.8; margin-bottom:16px; }
  .prose-section.on-dark{ background:var(--dark); color:var(--white); }
  .prose-section.on-dark p.lead, .prose-section.on-dark .cols p{ color:#b9c0bc; }
  .prose-section.paper{ background:var(--paper); }

  .value-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:18px; margin-top:44px; }
  .value-card{ background:var(--white); border:1px solid #e7e9e7; border-radius:16px; padding:26px 20px; transition:transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease; }
  .value-card:hover{ transform:translateY(-6px); box-shadow:0 16px 32px rgba(15,18,16,.08); }
  .value-card .vi{ width:44px; height:44px; border-radius:50%; background:var(--teal-pale); color:var(--teal); display:flex; align-items:center; justify-content:center; margin-bottom:16px; }
  .value-card h4{ font-size:15.5px; margin-bottom:8px; }
  .value-card p{ font-size:13.5px; color:var(--grey); line-height:1.6; }

  .content-note{
    background:#fff8e8; border:1px solid #f0dfa8; border-radius:12px; padding:20px 24px; margin-top:32px;
    font-size:14px; color:#8a6d00; line-height:1.65; max-width:760px;
  }
  .content-note strong{ color:#6e5600; }

  .divisions-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:20px; margin-top:20px; }
  .division-tile{
    position:relative; border-radius:18px; overflow:hidden; height:280px; display:flex; align-items:flex-end;
    padding:28px; color:var(--white); background-size:cover; background-position:center;
    transition:transform .5s cubic-bezier(.2,.8,.2,1);
  }
  .division-tile::after{ content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(11,21,18,.1) 30%, rgba(11,21,18,.92) 100%); }
  .division-tile:hover{ transform:translateY(-6px); }
  .division-tile .dt-inner{ position:relative; z-index:2; width:100%; }
  .division-tile .dt-eyebrow{ font-size:12px; text-transform:uppercase; letter-spacing:1.2px; color:var(--teal-light); font-weight:700; margin-bottom:8px; display:block; }
  .division-tile h3{ font-size:22px; margin-bottom:8px; letter-spacing:-.3px; }
  .division-tile p{ font-size:13.5px; color:#cdd4d0; max-width:340px; margin-bottom:14px; }
  .division-tile .link-circle{ color:var(--white); }

  .breadcrumb-strip{ background:var(--paper); border-bottom:1px solid #e7e9e7; padding:14px 0; }
  .breadcrumb-strip .wrap{ display:flex; align-items:center; gap:8px; font-size:13px; color:var(--grey); }
  .breadcrumb-strip a{ color:var(--grey); transition:color .2s ease; }
  .breadcrumb-strip a:hover{ color:var(--teal); }
  .breadcrumb-strip .current{ color:var(--dark); font-weight:600; }

  .clients-wall{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:20px; }
  .client-tile{
    background:var(--white); border:1px solid #e7e9e7; border-radius:14px; height:120px;
    display:flex; align-items:center; justify-content:center; color:var(--grey); font-weight:700;
    font-size:14px; letter-spacing:.3px; text-align:center; padding:16px; transition:box-shadow .3s ease, transform .3s ease;
  }
  .client-tile:hover{ box-shadow:0 12px 26px rgba(15,18,16,.08); transform:translateY(-4px); color:var(--teal); }

  .contact-grid{ display:grid; grid-template-columns:1.1fr 1fr; gap:64px; margin-top:20px; }
  .contact-info-card{ background:var(--dark); color:var(--white); border-radius:20px; padding:44px; }
  .contact-info-card h3{ font-size:22px; margin-bottom:24px; }
  .contact-info-row{ display:flex; gap:16px; padding:18px 0; border-top:1px solid rgba(255,255,255,.1); }
  .contact-info-row:first-of-type{ border-top:none; }
  .contact-info-row .ic{ width:40px; height:40px; border-radius:50%; background:rgba(255,255,255,.08); color:var(--teal-light); display:flex; align-items:center; justify-content:center; flex:none; }
  .contact-info-row .lbl{ font-size:12px; text-transform:uppercase; letter-spacing:1px; color:#9aa39e; margin-bottom:4px; }
  .contact-info-row .val{ font-size:15px; color:var(--white); }
  .contact-info-row em{ opacity:.6; font-style:normal; }

  .form-card{ background:var(--white); border:1px solid #e7e9e7; border-radius:20px; padding:44px; }
  .form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-bottom:18px; }
  .form-field{ display:flex; flex-direction:column; gap:8px; margin-bottom:18px; }
  .form-field label{ font-size:13px; font-weight:600; color:var(--dark); }
  .form-field input, .form-field select, .form-field textarea{
    border:1px solid #dfe2df; border-radius:10px; padding:13px 16px; font-size:14.5px; font-family:var(--sans);
    color:var(--dark); background:var(--paper); transition:border-color .2s ease, background .2s ease;
  }
  .form-field input:focus, .form-field select:focus, .form-field textarea:focus{ outline:none; border-color:var(--teal); background:var(--white); }
  .form-field textarea{ resize:vertical; min-height:120px; }
  .form-submit{ width:100%; justify-content:center; margin-top:6px; }

  .news-listing-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; margin-top:20px; }
  .filter-row{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:40px; }
  .filter-chip{ padding:9px 18px; border-radius:999px; border:1px solid #dfe2df; font-size:13.5px; font-weight:600; color:var(--grey); cursor:pointer; transition:all .2s ease; }
  .filter-chip.active, .filter-chip:hover{ background:var(--dark); color:var(--white); border-color:var(--dark); }

  .approach-list{ margin-top:20px; }
  .approach-row{ display:grid; grid-template-columns:80px 1fr; gap:28px; padding:32px 0; border-top:1px solid #e7e9e7; align-items:start; }
  .approach-row:first-child{ border-top:none; }
  .approach-row .an{ font-size:32px; font-weight:800; color:var(--teal-pale); -webkit-text-stroke:1.5px var(--teal); -webkit-text-fill-color:transparent; }
  .approach-row h4{ font-size:19px; margin-bottom:8px; }
  .approach-row p{ color:var(--grey); font-size:15px; line-height:1.7; max-width:640px; }

  .cta-band{ background:var(--dark); color:var(--white); border-radius:24px; padding:56px; margin:0 auto; max-width:1280px; text-align:center; position:relative; overflow:hidden; }
  .cta-band h3{ font-size:32px; margin-bottom:14px; letter-spacing:-.5px; }
  .cta-band p{ color:#b9c0bc; max-width:520px; margin:0 auto 28px; font-size:15.5px; }
  .cta-band-wrap{ padding:0 40px 100px; }

  @media(max-width:1080px){
    nav.mainnav > ul{ display:none; }
    .hero h1{ font-size:42px; }
    .hero-arrows{ display:none; }
    .hero-thumbs{ display:none; }
    .hero p{ max-width:420px; }
    .triptych .row{ grid-template-columns:1fr; }
    .excellence .grid{ grid-template-columns:1fr; }
    .mini-row{ grid-template-columns:1fr; }
    .solutions .grid{ grid-template-columns:1fr; }
    .steps{ grid-template-columns:1fr; }
    .step-arrow{ transform:rotate(90deg); margin:10px auto; }
    .testimonial .grid{ grid-template-columns:1fr; }
    .testimonial .photo{ min-height:220px; }
    .testimonial .rating-card{ position:absolute; bottom:16px; right:16px; width:150px; padding:16px 18px; }
    .testimonial .rating-card .n{ font-size:26px; }
    .testimonial .rating-card .l{ font-size:11px; }
    .testimonial .content{ padding:36px 24px; }
    .team-grid{ grid-template-columns:repeat(2,1fr); }
    .news-grid{ grid-template-columns:1fr; }
    .footer-grid{ grid-template-columns:1fr 1fr; }
    .page-hero h1{ font-size:36px; }
    .prose-section .cols{ grid-template-columns:1fr; gap:0; }
    .value-grid{ grid-template-columns:repeat(2,1fr); }
    .divisions-grid{ grid-template-columns:1fr; }
    .clients-wall{ grid-template-columns:repeat(2,1fr); }
    .contact-grid{ grid-template-columns:1fr; gap:32px; }
    .form-row{ grid-template-columns:1fr; }
    .news-listing-grid{ grid-template-columns:1fr; }
    .approach-row{ grid-template-columns:1fr; gap:8px; }
  }

  /* ===== Tablet ===== */
  @media(max-width:900px){
    .wrap{ padding:0 28px; }
    .footer-cta{ padding:70px 28px 0; }
    .footer-main{ padding:56px 28px 34px; }
    .footer-legal{ padding:20px 28px 28px; }
    .footer-grid{ grid-template-columns:1fr 1fr; gap:34px 28px; }
    .footer-cta .panel{ padding:34px 28px; }
    .prose-section{ padding:72px 0; }
    .cta-band{ padding:44px 30px; }
    .cta-band-wrap{ padding:0 28px 72px; }
    .clients-wall{ grid-template-columns:repeat(3,1fr); }
  }

  /* ===== Mobile ===== */
  @media(max-width:640px){
    .wrap{ padding:0 20px; }
    .footer-cta{ padding:56px 20px 0; }
    .footer-main{ padding:46px 20px 30px; }
    .footer-legal{ padding:18px 20px 26px; flex-direction:column; align-items:flex-start; gap:14px; text-align:left; }
    .footer-legal .links{ gap:14px; }
    .footer-grid{ grid-template-columns:1fr; gap:32px; }
    .footer-cta .panel{ padding:28px 20px; }
    .footer-grid p.tagline{ max-width:100%; }
    .page-hero h1{ font-size:30px; }
    .page-hero{ min-height:320px; height:auto; padding:96px 0 56px; }
    .prose-section{ padding:56px 0; }
    .prose-section.tight{ padding:40px 0; }
    .prose-section h2{ font-size:28px; }
    .prose-section p.lead{ font-size:16px; }
    .value-grid{ grid-template-columns:1fr; }
    .clients-wall{ grid-template-columns:repeat(2,1fr); }
    .contact-info-card, .form-card{ padding:28px 22px; }
    .cta-band{ padding:36px 22px; border-radius:18px; }
    .cta-band h3{ font-size:24px; }
    .cta-band-wrap{ padding:0 20px 56px; }
    .team-grid{ grid-template-columns:1fr; }
    .division-tile{ height:240px; padding:22px; }
    .marquee .track span{ font-size:56px; }
    .marquee{ padding:40px 0; }
  }
