:root{
  --navy:#10302e;
  --blue:#0d9488;
  --blue2:#0f766e;
  --orange:#d97706;
  --orange2:#b45309;
  --bg:#f6faf9;
  --white:#ffffff;
  --gray:#f1f8f6;
  --border:#dcebe7;
  --text:#10302e;
  --text2:#4a5568;
  --text3:#718096;
  --rad:12px;
  --sh:0 2px 16px rgba(16,48,46,.08);
  --sh2:0 8px 40px rgba(16,48,46,.14);
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:"Google Sans",sans-serif;background:var(--white);color:var(--text);font-size:15px;line-height:1.6}
a{text-decoration:none;color:inherit}
img{max-width:100%;height:auto}
.container{max-width:1180px;margin:0 auto;padding:0 24px}

/* ── TOPBAR ── */
.topbar{background:var(--navy);padding:8px 0}
.topbar-inner{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:8px}
.topbar-left{display:flex;gap:20px;align-items:center}
.topbar-left a{color:rgba(255,255,255,.75);font-size:12.5px;display:flex;align-items:center;gap:5px}
.topbar-left a svg{width:13px;height:13px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round}
.topbar-left a:hover{color:#fff}
.topbar-right{display:flex;gap:10px;align-items:center}
.topbar-right a{color:rgba(255,255,255,.7);font-size:13px}
.topbar-right a:hover{color:var(--orange)}
.topbar-social svg{width:15px;height:15px;fill:currentColor}

/* ── NAVBAR ── */
.navbar{background:#fff;border-bottom:1.5px solid var(--border);position:sticky;top:0;z-index:1000;box-shadow:var(--sh)}
.nav-inner{display:flex;align-items:center;gap:20px;height:70px}
.nav-logo{display:flex;align-items:center;gap:12px;margin-right:auto}
.logo-mark{width:44px;height:44px;background:linear-gradient(135deg,var(--blue),var(--blue2));border-radius:10px;display:flex;align-items:center;justify-content:center;flex-shrink:0;box-shadow:0 3px 10px rgba(13,148,136,.3)}
.logo-mark svg{width:22px;height:22px;fill:#fff}
.logo-text-main{font-family:"Nunito Sans",sans-serif;font-size:16px;font-weight:800;color:var(--navy);line-height:1.1}
.logo-text-sub{font-size:10.5px;color:var(--text3);font-weight:500;letter-spacing:.03em}
.nav-links{display:flex;gap:4px;align-items:center}
.nav-links a{padding:8px 14px;border-radius:8px;font-size:16px;font-weight:500;color:var(--text2);transition:.15s;white-space:nowrap}
.nav-links a:hover{background:var(--bg);color:var(--blue)}
.nav-links a.active{color:var(--blue);font-weight:600}
.nav-cta{display:inline-flex;align-items:center;gap:6px;padding:9px 20px;background:linear-gradient(135deg,var(--orange),var(--orange2));color:#fff;border-radius:9px;font-size:13.5px;font-weight:700;box-shadow:0 3px 10px rgba(217,119,6,.3);white-space:nowrap}
.nav-cta svg{width:14px;height:14px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round}
.nav-cta:hover{background:linear-gradient(135deg,var(--orange2),#92400e)}
.hamburger{display:none;flex-direction:column;gap:4px;cursor:poGoogle Sans;padding:4px}
.hamburger span{display:block;width:22px;height:2.5px;background:var(--navy);border-radius:2px}

/* ── SCREENS ── */
.page{display:none}.page.active{display:block}

/* ── HERO ── */
/* ══════════════════════════ HERO SLIDER (Revolution-style) ══════════════════════════ */
.hero-slider{position:relative;min-height:640px;overflow:hidden;background:var(--navy)}
.hero-slide{position:absolute;inset:0;opacity:0;z-index:0;background-size:cover;background-position:center;transform:scale(1);transition:opacity 1.1s ease}
.hero-slide.active{opacity:1;z-index:1;animation:heroKenBurns 7s ease-in-out forwards}
@keyframes heroKenBurns{0%{transform:scale(1)}100%}
.hero-slide-overlay{position:absolute;inset:0;background:linear-gradient(100deg,rgba(16,48,46,.92) 0%,rgba(16,48,46,.72) 42%,rgba(16,48,46,.35) 75%,rgba(16,48,46,.15) 100%)}
.hero-slider .container{position:relative;height:100%;z-index:2}
.hero-slide-content{position:absolute;top:50%;left:24px;right:24px;max-width:640px;transform:translateY(-50%);opacity:0;transition:opacity .6s ease .25s, transform .6s ease .25s}
.hero-slide.active .hero-slide-content{opacity:1;transform:translateY(-58%)}
.hs-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,.12);backdrop-filter:blur(6px);border:1px solid rgba(255,255,255,.25);color:#fff;font-size:12.5px;font-weight:700;letter-spacing:.04em;padding:8px 16px;border-radius:30px;margin-bottom:20px}
.hs-badge svg{width:14px;height:14px;fill:none;stroke:var(--orange);stroke-width:2.5;stroke-linecap:round}
.hero-slide-content h1{font-family:"Plus Jakarta Sans",sans-serif;font-size:46px;font-weight:800;line-height:1.15;color:#fff;margin-bottom:18px}
.hero-slide-content h1 span{color:var(--orange)}
.hero-slide-content h1 em{font-style:normal;text-decoration:underline;text-decoration-color:rgba(217,119,6,.5);text-underline-offset:6px}
.hero-slide-content .hs-desc{font-size:15.5px;color:rgba(255,255,255,.82);line-height:1.7;margin-bottom:30px;max-width:520px}
.hs-cta-row{display:flex;gap:14px;flex-wrap:wrap}
.hs-cta-row .btn-primary,.hs-cta-row .btn-outline{cursor:pointer}
.hs-cta-row .btn-outline{background:transparent;border:1.5px solid rgba(255,255,255,.4);color:#fff}
.hs-cta-row .btn-outline:hover{background:#fff;color:var(--navy);border-color:#fff}

.hero-dots{position:absolute;bottom:26px;left:50%;transform:translateX(-50%);display:flex;gap:10px;z-index:3}
.hero-dot{width:9px;height:9px;border-radius:50%;background:rgba(255,255,255,.4);cursor:pointer;transition:.25s;border:none;padding:0}
.hero-dot.active{background:var(--orange);width:28px;border-radius:6px}

.hero-arrows{position:absolute;top:50%;left:0;right:0;display:flex;justify-content:space-between;padding:0 22px;transform:translateY(-50%);z-index:3;pointer-events:none}
.hero-arrow{pointer-events:all;width:46px;height:46px;border-radius:50%;background:rgba(255,255,255,.12);backdrop-filter:blur(6px);border:1.5px solid rgba(255,255,255,.3);color:#fff;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:.2s}
.hero-arrow svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round}
.hero-arrow:hover{background:var(--orange);border-color:var(--orange)}

@media(max-width:768px){
  .hero-slider{min-height:560px}
  .hero-slide-content h1{font-size:30px}
  .hero-arrows{display:none}
}

.btn-primary{display:inline-flex;align-items:center;gap:7px;padding:13px 28px;background:linear-gradient(135deg,var(--blue),var(--blue2));color:#fff;border-radius:10px;font-size:14px;font-weight:700;box-shadow:0 4px 14px rgba(13,148,136,.3)}
.btn-primary:hover{background:linear-gradient(135deg,var(--blue2),#0b5c53)}
.btn-primary svg{width:15px;height:15px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round}
.btn-outline{display:inline-flex;align-items:center;gap:7px;padding:13px 28px;border:2px solid var(--navy);color:var(--navy);border-radius:10px;font-size:14px;font-weight:700}
.btn-outline:hover{background:var(--navy);color:#fff}
.btn-outline svg{width:15px;height:15px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round}
.hero-stats{display:flex;gap:28px;flex-wrap:wrap}
.hero-stat .num{font-family:"Nunito Sans",sans-serif;font-size:28px;font-weight:800;color:var(--navy)}
.hero-stat .num span{color:var(--blue)}
.hero-stat .lbl{font-size:12px;color:var(--text3);margin-top:2px}
.stat-divider{width:1px;background:var(--border)}
.hero-visual{position:relative;z-index:1}
.hero-card{background:#fff;border-radius:20px;box-shadow:var(--sh2);padding:28px;border:1.5px solid var(--border)}
.hero-card-title{font-family:"Nunito Sans",sans-serif;font-size:15px;font-weight:700;color:var(--navy);margin-bottom:18px;display:flex;align-items:center;gap:8px}
.hero-card-title svg{width:18px;height:18px;fill:none;stroke:var(--blue);stroke-width:2;stroke-linecap:round}
.service-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.svc-card{background:var(--bg);border:1.5px solid var(--border);border-radius:10px;padding:14px;transition:.15s}
.svc-card:hover{border-color:var(--blue);background:#e8f5f3}
.svc-icon{width:36px;height:36px;border-radius:8px;display:flex;align-items:center;justify-content:center;margin-bottom:8px}
.svc-icon svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round}
.svc-title{font-size:12.5px;font-weight:700;color:var(--navy);margin-bottom:3px}
.svc-desc{font-size:11px;color:var(--text3);line-height:1.5}
.float-badge{position:absolute;background:#fff;border-radius:12px;box-shadow:var(--sh2);padding:10px 14px;display:flex;align-items:center;gap:8px;font-size:12.5px;font-weight:600;color:var(--navy);border:1.5px solid var(--border)}
.float-badge svg{width:16px;height:16px;fill:none;stroke:var(--blue);stroke-width:2;stroke-linecap:round;flex-shrink:0}
.fb1{top:-20px;left:-20px}
.fb2{bottom:-16px;right:-16px}

/* ── SECTION COMMONS ── */
.section{padding:70px 0;position:relative;overflow:hidden}
.section-alt{background:var(--bg)}
.section>.container{position:relative;z-index:1}
.sec-watermark{position:absolute;top:90%;left:30%;transform:translate(-50%,-50%);font-family: 'Outfit',sans-serif;font-weight:800;font-size:clamp(90px,8vw,220px);line-height:1;color:var(--blue);opacity:.05;white-space:nowrap;letter-spacing:2px;poGoogle Sans-events:none;z-index:0;user-select:none}
.sec-watermark.wm-alt{color:var(--orange)}
@media(max-width:768px){.sec-watermark{font-size:clamp(60px,20vw,120px)}}
.sec-label{display:inline-flex;align-items:center;gap:6px;background:rgba(217,119,6,.1);color:var(--orange);font-size:11.5px;font-weight:700;padding:5px 12px;border-radius:20px;margin-bottom:14px;letter-spacing:.06em;text-transform:uppercase}
.sec-label svg{width:12px;height:12px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round}
.sec-title{font-family:"Nunito Sans",sans-serif;font-size:36px;font-weight:800;color:var(--navy);line-height:1.2;margin-bottom:14px}
.sec-title span{color:var(--blue)}
.sec-title em{color:var(--orange);font-style:normal}
.sec-desc{font-size:16px;color:var(--text2);max-width:620px;line-height:1.7;margin-bottom:40px}
.sec-center{text-align:center}
.sec-center .sec-desc{margin:0 auto 40px}

/* ── ABOUT SECTION ── */
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.about-img-wrap{position:relative}
.about-img-main{width:100%;border-radius:20px;object-fit:cover;height:440px;box-shadow:var(--sh2)}
.about-img-badge{position:absolute;bottom:24px;left:-24px;background:#fff;border-radius:14px;box-shadow:var(--sh2);padding:16px 20px;border:1.5px solid var(--border)}
.about-img-badge .big{font-family:"Nunito Sans",sans-serif;font-size:32px;font-weight:800;color:var(--blue);line-height:1}
.about-img-badge .txt{font-size:11.5px;color:var(--text3);margin-top:3px;line-height:1.4}
.about-img-badge2{position:absolute;top:24px;right:-20px;background:linear-gradient(135deg,var(--orange),var(--orange2));border-radius:12px;padding:12px 16px;color:#fff}
.about-img-badge2 .big2{font-family:"Nunito Sans",sans-serif;font-size:22px;font-weight:800;line-height:1}
.about-img-badge2 .txt2{font-size:11px;opacity:.9;margin-top:2px}
.about-list{display:flex;flex-direction:column;gap:14px;margin:24px 0 32px}
.about-list-item{display:flex;gap:12px;align-items:flex-start}
.al-icon{width:36px;height:36px;border-radius:9px;background:var(--bg);border:1.5px solid var(--border);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.al-icon svg{width:17px;height:17px;fill:none;stroke:var(--blue);stroke-width:2;stroke-linecap:round}
.al-title{font-size:14px;font-weight:700;color:var(--navy);margin-bottom:3px}
.al-desc{font-size:13px;color:var(--text3);line-height:1.5}

/* ── SERVICES ── */
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.serv-card{background:#fff;border:1.5px solid var(--border);border-radius:16px;padding:28px;box-shadow:var(--sh);transition:.2s;position:relative;overflow:hidden}
.serv-card::before{content:"";position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,var(--blue),var(--blue2))}
.serv-card:hover{transform:translateY(-4px);box-shadow:var(--sh2);border-color:rgba(13,148,136,.2)}
.serv-card.orange::before{background:linear-gradient(90deg,var(--orange),var(--orange2))}
.serv-icon{width:52px;height:52px;border-radius:13px;display:flex;align-items:center;justify-content:center;margin-bottom:18px}
.serv-icon svg{width:26px;height:26px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.serv-title{font-family:"Nunito Sans",sans-serif;font-size:17px;font-weight:700;color:var(--navy);margin-bottom:10px}
.serv-desc{font-size:13.5px;color:var(--text2);line-height:1.7;margin-bottom:18px}
.serv-link{display:inline-flex;align-items:center;gap:5px;font-size:13px;font-weight:700;color:var(--blue)}
.serv-link svg{width:14px;height:14px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round}
.serv-link:hover{color:var(--blue2)}

/* ── INDUSTRIES ── */
.industries-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.ind-card{background:#fff;border:1.5px solid var(--border);border-radius:14px;padding:22px;text-align:center;transition:.2s;box-shadow:var(--sh)}
.ind-card:hover{transform:translateY(-3px);box-shadow:var(--sh2);border-color:rgba(13,148,136,.2)}
.ind-icon{width:54px;height:54px;border-radius:50%;margin:0 auto 14px;display:flex;align-items:center;justify-content:center}
.ind-icon svg{width:26px;height:26px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round}
.ind-title{font-size:13.5px;font-weight:700;color:var(--navy);margin-bottom:7px}
.ind-desc{font-size:12px;color:var(--text3);line-height:1.6}

/* ── STATS BANNER (editorial strip, no boxes) ── */
.stats-banner{background:linear-gradient(135deg,var(--navy),#184e46);padding:56px 0;position:relative;overflow:hidden}
.stats-banner::before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;background-image:linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px);background-size:100% 28px;poGoogle Sans-events:none}
.stats-strip{display:flex;align-items:center;justify-content:space-between;position:relative;z-index:1}
.stat-unit{flex:1;text-align:center;padding:0 20px;position:relative}
.stat-unit:not(:last-child)::after{content:"";position:absolute;right:0;top:8px;bottom:8px;width:1px;background:rgba(255,255,255,.14)}
.stat-unit .snum{font-family:"Nunito Sans",sans-serif;font-size:48px;font-weight:800;color:#fff;line-height:1;letter-spacing:-.01em}
.stat-unit .snum span{color:var(--orange)}
.stat-unit .stxt{font-size:12.5px;color:rgba(255,255,255,.6);margin-top:8px;text-transform:uppercase;letter-spacing:.06em;font-weight:600}
@media(max-width:768px){.stats-strip{flex-wrap:wrap;gap:24px 0}.stat-unit{flex:1 1 50%;padding:10px 12px}.stat-unit:nth-child(odd)::after{display:none}.stat-unit .snum{font-size:34px}}

/* ── SERVICES: home teaser as feature list ── */
.feat-list{display:flex;flex-direction:column;border-top:1.5px solid var(--border)}
.feat-row{display:grid;grid-template-columns:64px 1fr auto;align-items:center;gap:22px;padding:22px 8px;border-bottom:1.5px solid var(--border);transition:.2s}
.feat-row:hover{background:var(--bg)}
.feat-num{font-family:"Nunito Sans",sans-serif;font-size:15px;font-weight:800;color:var(--border);transition:.2s}
.feat-row:hover .feat-num{color:var(--blue)}
.feat-icon{width:52px;height:52px;border-radius:13px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.feat-icon svg{width:24px;height:24px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.feat-body-row{display:flex;align-items:center;gap:22px;min-width:0}
.feat-title{font-family:"Nunito Sans",sans-serif;font-size:17px;font-weight:700;color:var(--navy);margin-bottom:4px}
.feat-desc{font-size:13.5px;color:var(--text3);line-height:1.6}
.feat-arrow{width:38px;height:38px;border-radius:50%;border:1.5px solid var(--border);display:flex;align-items:center;justify-content:center;color:var(--text3);transition:.2s;flex-shrink:0}
.feat-arrow svg{width:15px;height:15px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round}
.feat-row:hover .feat-arrow{background:var(--blue);border-color:var(--blue);color:#fff;transform:rotate(45deg)}
@media(max-width:640px){.feat-row{grid-template-columns:48px 1fr;gap:14px}.feat-arrow{display:none}.feat-icon{width:44px;height:44px}}

/* ── INDUSTRIES: home preview as pill cloud ── */
.ind-pillwrap{display:flex;flex-wrap:wrap;gap:12px;justify-content:center}
.ind-pill{display:flex;align-items:center;gap:10px;background:#fff;border:1.5px solid var(--border);border-radius:40px;padding:10px 20px 10px 12px;box-shadow:var(--sh);transition:.2s}
.ind-pill:hover{border-color:var(--blue);transform:translateY(-2px);box-shadow:var(--sh2)}
.ind-pill .ip-icon{width:32px;height:32px;border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.ind-pill .ip-icon svg{width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round}
.ind-pill span{font-size:13.5px;font-weight:700;color:var(--navy);white-space:nowrap}

/* ── TESTIMONIALS: spotlight asymmetric layout ── */
.testi-spotlight{display:grid;grid-template-columns: repeat(3, 1fr);gap:28px;align-items:stretch}
.testi-main{background:var(--navy);border-radius:22px;padding:44px;position:relative;overflow:hidden;display:flex;flex-direction:column;justify-content:center}
.testi-main::before{content:"\201C";position:absolute;top:-10px;left:24px;font-family:Georgia,serif;font-size:180px;color:rgba(255,255,255,.06);line-height:1}
.testi-main .testi-stars{margin-bottom:18px;position:relative;z-index:1}
.testi-main .testi-text{color:rgba(255,255,255,.9);font-size:16px;line-height:1.6;font-style:normal;margin-bottom:26px;position:relative;z-index:1}
.testi-main .testi-name{color:#fff}
.testi-main .testi-role{color:rgba(255,255,255,.55)}
.testi-side{background:#fff;border:1.5px solid var(--border);border-radius:22px;padding:32px;display:flex;flex-direction:column;justify-content:center;box-shadow:var(--sh)}
.testi-side .testi-text{font-size:14.5px}

/* ── SERVICES full page: zigzag rows ── */
.svc-zigzag{display:flex;flex-direction:column;gap:0}
.svc-row{display:grid;grid-template-columns:280px 1fr;gap:50px;align-items:center;padding:44px 0;border-bottom:1.5px solid var(--border)}
.svc-row:first-child{padding-top:0}
.svc-row:last-child{border-bottom:none}
.svc-row.rev{grid-template-columns:1fr 280px}
.svc-row.rev .svc-visual{order:2}
.svc-visual{border-radius:20px;height:200px;display:flex;align-items:center;justify-content:center;position:relative}
.svc-visual .svc-big-icon{width:84px;height:84px}
.svc-visual .svc-big-icon svg{width:100%;height:100%;fill:none;stroke:currentColor;stroke-width:1.3;stroke-linecap:round;stroke-linejoin:round}
.svc-visual .svc-tag{position:absolute;bottom:14px;right:14px;background:rgba(255,255,255,.85);border-radius:20px;padding:5px 12px;font-size:11px;font-weight:800;letter-spacing:.05em;text-transform:uppercase}
.svc-row-title{font-family:"Nunito Sans",sans-serif;font-size:24px;font-weight:800;color:var(--navy);margin-bottom:12px}
.svc-row-desc{font-size:15px;color:var(--text2);line-height:1.75;margin-bottom:16px;max-width:640px}
.svc-row-tags{display:flex;flex-wrap:wrap;gap:8px}
.svc-row-tags span{font-size:12px;font-weight:700;color:var(--navy);background:var(--bg);border:1px solid var(--border);padding:5px 12px;border-radius:20px}
@media(max-width:800px){.svc-row,.svc-row.rev{grid-template-columns:1fr;gap:20px}.svc-row.rev .svc-visual{order:0}.svc-visual{height:140px}}

/* ── INDUSTRIES full page: numbered list ── */
.ind-numlist{display:flex;flex-direction:column}
.ind-numrow{display:grid;grid-template-columns:70px 60px 1fr;gap:24px;align-items:flex-start;padding:28px 20px;border-radius:14px;transition:.2s}
.ind-numrow:nth-child(even){background:var(--bg)}
.ind-numrow:hover{background:#e8f5f3}
.ind-numstr{font-family:"Nunito Sans",sans-serif;font-size:32px;font-weight:800;color:var(--border)}
.ind-numicon{width:52px;height:52px;border-radius:13px;display:flex;align-items:center;justify-content:center}
.ind-numicon svg{width:24px;height:24px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round}
.ind-numtitle{font-family:"Nunito Sans",sans-serif;font-size:17px;font-weight:700;color:var(--navy);margin-bottom:5px}
.ind-numdesc{font-size:13.5px;color:var(--text2);line-height:1.65}
@media(max-width:640px){.ind-numrow{grid-template-columns:40px 44px 1fr;gap:14px;padding:20px 12px}.ind-numstr{font-size:22px}.ind-numicon{width:40px;height:40px}}

/* ── CAREER: list-row layout ── */
.job-list{display:flex;flex-direction:column;border-top:1.5px solid var(--border)}
.job-row{display:grid;grid-template-columns:1fr auto auto;align-items:center;gap:24px;padding:24px 14px;border-bottom:1.5px solid var(--border);transition:.2s}
.job-row:hover{background:var(--bg)}
.job-row-main{min-width:0}
.job-row-title{font-family:"Nunito Sans",sans-serif;font-size:16.5px;font-weight:700;color:var(--navy);margin-bottom:6px;display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.job-row-meta{font-size:12.5px;color:var(--text3);display:flex;align-items:center;gap:16px;flex-wrap:wrap}
.job-row-meta span{display:flex;align-items:center;gap:5px}
.job-row-meta svg{width:13px;height:13px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round}
.job-row-pay{font-size:13.5px;font-weight:700;color:var(--navy);white-space:nowrap;text-align:right}
.job-row-pay small{display:block;font-size:10.5px;font-weight:600;color:var(--text3);text-transform:uppercase;letter-spacing:.05em}
@media(max-width:700px){.job-row{grid-template-columns:1fr;gap:10px}.job-row-pay{text-align:left}.job-apply{width:100%;justify-content:center}}

/* ── CLIENTS: sector strip ── */
.sector-strip{display:flex;flex-direction:column;border-top:1.5px solid var(--border);margin-top:40px}
.sector-strow{display:grid;grid-template-columns:56px 1fr;gap:20px;align-items:flex-start;padding:26px 6px;border-bottom:1.5px solid var(--border)}
.sector-sicon{width:48px;height:48px;border-radius:12px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.sector-sicon svg{width:22px;height:22px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round}

/* ── TESTIMONIALS ── */
.testi-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.testi-card{background:#fff;border:1.5px solid var(--border);border-radius:16px;padding:30px;box-shadow:var(--sh)}
.testi-stars{display:flex;gap:3px;margin-bottom:16px}
.testi-stars svg{width:16px;height:16px;fill:var(--orange)}
.testi-text{font-size:14.5px;color:var(--text2);line-height:1.75;font-style:italic;margin-bottom:20px}
.testi-author{display:flex;align-items:center;gap:12px}
.testi-av{width:44px;height:44px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:16px;font-weight:700;color:#fff;flex-shrink:0}
.testi-name{font-size:14px;font-weight:700;color:var(--navy)}
.testi-role{font-size:12px;color:var(--text3);margin-top:2px}

/* ── CTA BAND ── */
.cta-band{background:linear-gradient(135deg,#e8f5f3,#fef3e2);padding:70px 0;border-top:1.5px solid var(--border);border-bottom:1.5px solid var(--border)}
.cta-inner{display:grid;grid-template-columns:1fr auto;gap:40px;align-items:center}
.cta-title{font-family:"Nunito Sans",sans-serif;font-size:32px;font-weight:800;color:var(--navy);margin-bottom:10px}
.cta-title span{color:var(--blue)}
.cta-desc{font-size:15px;color:var(--text2)}
.cta-actions{display:flex;gap:12px;flex-wrap:wrap}

/* ── CAREER ── */
.career-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:22px}
.job-card{background:#fff;border:1.5px solid var(--border);border-radius:14px;padding:24px;box-shadow:var(--sh);transition:.2s}
.job-card:hover{border-color:var(--blue);box-shadow:var(--sh2)}
.job-hd{display:flex;align-items:flex-start;justify-content:space-between;margin-bottom:12px;gap:10px}
.job-title{font-family:"Nunito Sans",sans-serif;font-size:16px;font-weight:700;color:var(--navy)}
.job-badge{display:inline-flex;padding:3px 10px;border-radius:20px;font-size:11px;font-weight:700;white-space:nowrap}
.job-full{background:#d1fae5;color:#065f46}
.job-part{background:#dbeafe;color:#1e40af}
.job-contract{background:#fef3c7;color:#92400e}
.job-dept{font-size:12.5px;color:var(--text3);margin-bottom:10px;display:flex;align-items:center;gap:5px}
.job-dept svg{width:13px;height:13px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round}
.job-tags{display:flex;gap:6px;flex-wrap:wrap;margin-bottom:16px}
.job-tag{background:var(--bg);border:1px solid var(--border);color:var(--text2);font-size:11.5px;padding:3px 9px;border-radius:6px}
.job-apply{display:inline-flex;align-items:center;gap:5px;padding:8px 18px;background:var(--blue);color:#fff;border-radius:8px;font-size:13px;font-weight:700}
.job-apply:hover{background:var(--blue2)}
.job-apply svg{width:13px;height:13px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round}

/* ── CONTACT ── */
.contact-grid{display:grid;grid-template-columns:1.2fr 1fr;gap:50px}
.contact-form{background:#fff;border:1.5px solid var(--border);border-radius:18px;padding:36px;box-shadow:var(--sh)}
.contact-form h3{font-family:"Nunito Sans",sans-serif;font-size:22px;font-weight:800;color:var(--navy);margin-bottom:24px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-bottom:14px}
.form-group{margin-bottom:14px}
.form-group label{display:block;font-size:11.5px;font-weight:700;text-transform:uppercase;letter-spacing:.05em;color:var(--text3);margin-bottom:6px}
.form-group input,.form-group select,.form-group textarea{width:100%;border:1.5px solid var(--border);border-radius:9px;padding:10px 14px;font-size:14px;color:var(--text);background:var(--bg);outline:none;font-family:"Google Sans",sans-serif;transition:.15s}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:var(--blue);background:#fff}
.form-group textarea{height:120px;resize:vertical;line-height:1.6}
.form-submit{width:100%;padding:13px;background:linear-gradient(135deg,var(--blue),var(--blue2));color:#fff;border:none;border-radius:10px;font-size:15px;font-weight:700;cursor:poGoogle Sans;font-family:"Google Sans",sans-serif}
.form-submit:hover{background:linear-gradient(135deg,var(--blue2),#0b5c53)}
.contact-info{display:flex;flex-direction:column;gap:18px}
.ci-box{background:#fff;border:1.5px solid var(--border);border-radius:14px;padding:22px;box-shadow:var(--sh);display:flex;gap:14px;align-items:flex-start}
.ci-icon{width:44px;height:44px;border-radius:11px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.ci-icon svg{width:21px;height:21px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round}
.ci-title{font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.05em;color:var(--text3);margin-bottom:4px}
.ci-val{font-size:14.5px;font-weight:600;color:var(--navy)}
.ci-sub{font-size:12.5px;color:var(--text3);margin-top:2px}
.map-box{background:var(--bg);border:1.5px solid var(--border);border-radius:14px;overflow:hidden;height:200px;display:flex;align-items:center;justify-content:center;color:var(--text3);font-size:13px;margin-top:18px}

/* ── PAGE HERO (inner pages) ── */
.page-hero{background:linear-gradient(135deg,var(--navy) 0%,#184e46 100%);padding:60px 0;margin-bottom:0}
.page-hero-title{font-family:"Nunito Sans",sans-serif;font-size:40px;font-weight:800;color:#fff;margin-bottom:12px}
.page-hero-bread{display:flex;align-items:center;gap:8px;font-size:13.5px;color:rgba(255,255,255,.6)}
.page-hero-bread a{color:rgba(255,255,255,.8)}
.page-hero-bread a:hover{color:#fff}
.page-hero-bread svg{width:13px;height:13px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round}

/* ── CLIENTS ── */
.clients-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:16px;margin-bottom:40px}
.client-box{background:#fff;border:1.5px solid var(--border);border-radius:12px;padding:24px;display:flex;align-items:center;justify-content:center;box-shadow:var(--sh);transition:.2s}
.client-box:hover{border-color:var(--blue);box-shadow:var(--sh2)}
.client-box span{font-family:"Nunito Sans",sans-serif;font-size:14px;font-weight:800;color:var(--navy);text-align:center}
.client-sectors{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:40px}
.sector-card{background:#fff;border:1.5px solid var(--border);border-radius:14px;padding:24px;box-shadow:var(--sh)}
.sector-title{font-size:14px;font-weight:700;color:var(--navy);margin-bottom:8px;display:flex;align-items:center;gap:8px}
.sector-title svg{width:17px;height:17px;fill:none;stroke:var(--blue);stroke-width:2;stroke-linecap:round}
.sector-desc{font-size:13px;color:var(--text3);line-height:1.6}

/* ── FOOTER ── */
footer{background:var(--navy);padding:60px 0 0}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1.5fr;gap:40px;padding-bottom:50px;border-bottom:1px solid rgba(255,255,255,.08)}
.footer-brand{margin-bottom:0}
.footer-logo{display:flex;align-items:center;gap:10px;margin-bottom:18px}
.footer-logo-mark{width:40px;height:40px;background:linear-gradient(135deg,var(--blue),var(--blue2));border-radius:9px;display:flex;align-items:center;justify-content:center}
.footer-logo-mark svg{width:20px;height:20px;fill:#fff}
.footer-logo-text{font-family:"Nunito Sans",sans-serif;font-size:14.5px;font-weight:800;color:#fff;line-height:1.2}
.footer-logo-text small{display:block;font-size:10px;color:rgba(255,255,255,.45);font-weight:400;font-family:"Google Sans",sans-serif}
.footer-desc{font-size:16px;color:rgba(255,255,255,.55);line-height:1.75;margin-bottom:20px}
.footer-socials{display:flex;gap:10px}
.footer-social{width:36px;height:36px;border-radius:8px;background:rgba(255,255,255,.08);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.6);transition:.15s}
.footer-social:hover{background:var(--blue);color:#fff}
.footer-social svg{width:16px;height:16px;fill:currentColor}
.footer-col h4{font-size:13px;font-weight:700;color:#fff;text-transform:uppercase;letter-spacing:.08em;margin-bottom:18px}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:10px}
.footer-col ul li a{font-size:16px;color:rgba(255,255,255,.55);display:flex;align-items:center;gap:5px}
.footer-col ul li a svg{width:12px;height:12px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;flex-shrink:0}
.footer-col ul li a:hover{color:#fff}
.footer-contact-item{display:flex;gap:10px;align-items:flex-start;margin-bottom:14px}
.footer-contact-item svg{width:16px;height:16px;fill:none;stroke:rgba(255,255,255,.5);stroke-width:2;stroke-linecap:round;flex-shrink:0;margin-top:2px}
.footer-contact-item span{font-size:13.5px;color:rgba(255,255,255,.55);line-height:1.5}
.footer-contact-item a{color:rgba(255,255,255,.7);font-size:16px}
.footer-contact-item a:hover{color:var(--orange)}
.footer-newsletter{margin-top:20px}
.footer-newsletter h5{font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.06em;color:rgba(255,255,255,.5);margin-bottom:10px}
.newsletter-row{display:flex;gap:8px}
.newsletter-row input{flex:1;border:1.5px solid rgba(255,255,255,.12);background:rgba(255,255,255,.06);border-radius:8px;padding:9px 13px;font-size:13px;color:#fff;outline:none;font-family:"Google Sans",sans-serif}
.newsletter-row input::placeholder{color:rgba(255,255,255,.3)}
.newsletter-row input:focus{border-color:var(--blue)}
.newsletter-row button{padding:9px 16px;background:var(--orange);color:#fff;border:none;border-radius:8px;font-size:13px;font-weight:700;cursor:poGoogle Sans;white-space:nowrap;font-family:"Google Sans",sans-serif}
.newsletter-row button:hover{background:var(--orange2)}
.footer-bottom{display:flex;align-items:center;justify-content:space-between;padding:20px 0;flex-wrap:wrap;gap:10px}
.footer-bottom p{font-size:16px;color:rgba(255,255,255,.4)}
.footer-bottom a{color:rgba(255,255,255,.5);font-size:16px}
.footer-bottom a:hover{color:#fff}
.footer-bottom-links{display:flex;gap:20px}

/* ── MOBILE NAV ── */
.mobile-nav{position:fixed;top:0;left:-100%;width:80%;max-width:320px;height:100vh;background:#fff;z-index:2000;box-shadow:var(--sh2);transition:left .28s ease;overflow-y:auto}
.mobile-nav.open{left:0}
.mobile-nav-hd{padding:20px;border-bottom:1.5px solid var(--border);display:flex;align-items:center;justify-content:space-between}
.mobile-close{width:34px;height:34px;border-radius:8px;border:1.5px solid var(--border);background:#fff;display:flex;align-items:center;justify-content:center;cursor:poGoogle Sans;color:var(--text)}
.mobile-close svg{width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round}
.mobile-links{padding:14px}
.mobile-links a{display:flex;align-items:center;gap:9px;padding:12px 14px;border-radius:10px;font-size:14px;font-weight:500;color:var(--text);margin-bottom:4px}
.mobile-links a:hover,.mobile-links a.active{background:var(--bg);color:var(--blue);font-weight:700}
.mobile-links a svg{width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round}
.mobile-overlay{position:fixed;inset:0;background:rgba(0,0,0,.4);z-index:1999;display:none}
.mobile-overlay.show{display:block}

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  .hero-inner{grid-template-columns:1fr;gap:40px}
  .about-grid{grid-template-columns:1fr;gap:40px}
  .contact-grid{grid-template-columns:1fr;gap:30px}
  .footer-grid{grid-template-columns:1fr 1fr}
  .services-grid{grid-template-columns:1fr 1fr}
  .industries-grid{grid-template-columns:1fr 1fr}
  .cta-inner{grid-template-columns:1fr;text-align:center}
  .cta-actions{justify-content:center}
}
@media(max-width:768px){
  .nav-links,.nav-cta{display:none}
  .hamburger{display:flex}
  .hero h1{font-size:32px}
  .sec-title{font-size:26px}
  .clients-grid{grid-template-columns:repeat(3,1fr)}
  .client-sectors{grid-template-columns:1fr}
  .testi-spotlight{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .topbar-right{display:none}
  .form-row{grid-template-columns:1fr}
  .about-img-badge{left:10px}
  .about-img-badge2{right:10px}
  .page-hero-title{font-size:28px}
}