/* ============================= */
/* CSS Variables                  */
/* ============================= */
:root{
  --ink:#0C1E21;
  --ink-soft:#12282C;
  --paper:#FFFFFF;
  --paper-dim:#EAF4F3;
  --surface:#FFFFFF;
  --accent:#1E8A8A;
  --accent-dark:#146868;
  --accent-2:#2FB6AC;
  --text:#0C1E21;
  --muted:#4E6668;
  --muted-soft:#82999B;
  --line:#DCEAEA;
  --line-dark:#1C3A3D;
  --radius-s:8px;
  --radius-m:14px;
  --radius-l:26px;
  --shadow-s: 0 2px 10px rgba(10,22,40,0.06);
  --shadow-m: 0 12px 36px rgba(10,22,40,0.10);
  --shadow-l: 0 24px 64px rgba(10,22,40,0.18);
  --ease: cubic-bezier(.16,.84,.44,1);
}

/* ============================= */
/* Reset                         */
/* ============================= */
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
ul{list-style:none;}
button{font-family:inherit; cursor:pointer; border:none; background:none;}

/* ============================= */
/* Base Styles                   */
/* ============================= */
body{
  font-family:'Inter', sans-serif;
  color:var(--text);
  background:var(--paper);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
.container{
  width:100%;
  max-width:1240px;
  margin:0 auto;
  padding:0 32px;
}

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

/* ============================= */
/* Typography                    */
/* ============================= */
h1,h2,h3,h4{font-family:'Sora', sans-serif; color:var(--ink); letter-spacing:-0.01em;}
.mono{font-family:'IBM Plex Mono', monospace;}

/* Eyebrow label */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:'IBM Plex Mono', monospace;
  font-size:12.5px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--accent);
  font-weight:600;
  margin-bottom:16px;
}
.eyebrow::before{
  content:"";
  width:22px; height:1px;
  background:var(--accent);
  display:inline-block;
}

/* ============================= */
/* Layout                        */
/* ============================= */
.section{ padding:120px 0;}
.section-tight{ padding:90px 0;}
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:40px;
  margin-bottom:56px;
  flex-wrap:wrap;
}
.section-head h2{
  font-size:clamp(30px, 3.6vw, 44px);
  font-weight:700;
  line-height:1.15;
  max-width:640px;
}
.section-head p{ color:var(--muted); max-width:420px; font-size:15.5px;}
.on-dark .section-head h2{ color:#fff;}

/* ============================= */
/* Header / Page Header          */
/* ============================= */
.page-header{
  position:relative;
  background:var(--ink);
  color:#fff;
  padding-top:170px;
  padding-bottom:80px;
  overflow:hidden;
}
.page-header::after{
  content:"";
  position:absolute; inset:0;
  background:radial-gradient(ellipse 70% 55% at 30% 20%, rgba(30,138,138,0.28), transparent 60%),
             radial-gradient(ellipse 60% 50% at 85% 80%, rgba(47,182,172,0.18), transparent 60%),
             linear-gradient(180deg, rgba(10,22,40,0.2), var(--ink) 92%);
  z-index:0;
}
.page-header .container{ position:relative; z-index:2;}
.page-header .eyebrow{ color:var(--accent-2);}
.page-header h1{ color:#fff; font-size:clamp(34px,5vw,56px); margin-bottom:16px;}
.breadcrumb{
  display:flex; align-items:center; gap:10px;
  font-family:'IBM Plex Mono', monospace;
  font-size:13px;
  color:rgba(255,255,255,0.55);
}
.breadcrumb a{ color:rgba(255,255,255,0.85); transition:color .2s;}
.breadcrumb a:hover{ color:var(--accent-2);}
.breadcrumb i{ font-size:10px; color:rgba(255,255,255,0.35);}

/* Page header modifier for contact page (extra padding for card overlap) */
.page-header--overlap{ padding-bottom:200px;}

/* ============================= */
/* Navigation / Navbar           */
/* ============================= */
.navbar{
  position:fixed;
  top:0; left:0; right:0;
  z-index:1000;
  padding:20px 0;
  transition:padding .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
}
.navbar.scrolled{
  padding:12px 0;
  background:rgba(10,22,40,0.92);
  backdrop-filter:blur(14px);
  box-shadow:0 8px 30px rgba(10,22,40,0.18);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-family:'Sora', sans-serif;
  font-weight:700;
  font-size:21px;
  color:#fff;
  letter-spacing:-0.02em;
}
.logo .mark img{
  width:100%;
  height:100%;
  object-fit:contain;
}
.logo .mark svg{width:100%; height:100%;}
.logo .dot{color:var(--accent-2);}

.nav-links{
  display:flex;
  align-items:center;
  gap:2px;
}
.nav-links a{
  color:rgba(255,255,255,0.78);
  font-size:14.5px;
  font-weight:500;
  padding:10px 16px;
  border-radius:999px;
  transition:color .25s, background .25s;
  position:relative;
}
.nav-links a:hover{ color:#fff; background:rgba(255,255,255,0.08);}
.nav-links a.active{ color:#fff; background:rgba(30,138,138,0.22);}
.nav-links a.active::after{
  content:"";
  position:absolute;
  bottom:5px; left:16px; right:16px;
  height:2px;
  background:var(--accent-2);
  border-radius:2px;
}
.nav-cta{ display:flex; align-items:center; gap:14px;}
.nav-cta .btn{ padding:11px 22px; font-size:14px;}

.nav-toggle{
  display:none;
  width:40px; height:40px;
  border-radius:10px;
  align-items:center; justify-content:center;
  background:rgba(255,255,255,0.08);
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:"";
  display:block;
  width:18px; height:2px;
  background:#fff;
  position:relative;
  transition:transform .3s, opacity .3s;
}
.nav-toggle span::before{ position:absolute; top:-6px;}
.nav-toggle span::after{ position:absolute; top:6px;}
.nav-toggle.open span{ background:transparent;}
.nav-toggle.open span::before{ transform:rotate(45deg); top:0;}
.nav-toggle.open span::after{ transform:rotate(-45deg); top:0;}

/* ============================= */
/* Showcase link "Coming Soon"   */
/* ============================= */
.nav-links a[data-tooltip]{
  position:relative;
}
.nav-links a[data-tooltip]::after{
  content:attr(data-tooltip);
  position:absolute;
  bottom:calc(100% + 3px);
  left:50%;
  transform:translateX(-50%) translateY(4px);
  background:var(--ink-soft);
  color:var(--accent-2);
  font-family:'IBM Plex Mono', monospace;
  font-size:11px;
  font-weight:500;
  letter-spacing:0.04em;
  padding:2px 12px;
  border-radius:6px;
  white-space:nowrap;
  opacity:0;
  pointer-events:none;
  transition:opacity .25s var(--ease), transform .25s var(--ease);
  box-shadow:0 4px 12px rgba(0,0,0,0.25);
  border:1px solid rgba(47,182,172,0.2);
  z-index:1100;
}
.nav-links a[data-tooltip]::before{
  content:"";
  position:absolute;
  bottom:calc(100% + 4px);
  left:50%;
  transform:translateX(-50%) translateY(4px);
  border:5px solid transparent;
  border-top-color:var(--ink-soft);
  opacity:0;
  pointer-events:none;
  transition:opacity .25s var(--ease), transform .25s var(--ease);
  z-index:1100;
}
.nav-links a[data-tooltip]:hover::after,
.nav-links a[data-tooltip]:hover::before{
  opacity:1;
  transform:translateX(-50%) translateY(0);
}

/* ============================= */
/* Hero                          */
/* ============================= */
.hero{
  position:relative;
  min-height:100vh;
  background:var(--ink);
  color:#fff;
  display:flex;
  align-items:center;
  overflow:hidden;
  padding-top:110px;
  padding-bottom:70px;
}
.hero-bg{
  position:absolute; inset:0;
  z-index:0;
}
.hero-bg svg{ width:100%; height:100%;}
.hero-bg::after{
  content:"";
  position:absolute; inset:0;
  background:radial-gradient(ellipse 70% 55% at 30% 30%, rgba(30,138,138,0.28), transparent 60%),
             radial-gradient(ellipse 60% 50% at 85% 80%, rgba(47,182,172,0.18), transparent 60%),
             linear-gradient(180deg, rgba(10,22,40,0.2), var(--ink) 92%);
}
.hero-inner{
  position:relative;
  z-index:2;
  width:100%;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  gap:48px;
  align-items:center;
}
.hero-slides{ position:relative; min-height:300px;}
.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transform:translateY(18px);
  transition:opacity .7s var(--ease), transform .7s var(--ease);
  pointer-events:none;
}
.hero-slide.active{ opacity:1; transform:translateY(0); position:relative; pointer-events:auto;}
.hero-slide h1{
  font-size:clamp(38px, 5.4vw, 66px);
  line-height:1.05;
  font-weight:700;
  color:#fff;
  margin-bottom:22px;
}
.hero-slide h1 em{
  font-style:normal;
  background:linear-gradient(100deg, var(--accent-2), var(--accent) 70%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero-slide p{
  font-size:17px;
  color:rgba(255,255,255,0.68);
  max-width:480px;
  margin-bottom:34px;
}
.hero-actions{ display:flex; align-items:center; gap:16px; flex-wrap:wrap;}
.hero-dots{
  display:flex; gap:9px; margin-top:46px;
}
.hero-dots button{
  width:28px; height:3px;
  background:rgba(255,255,255,0.25);
  border-radius:3px;
  transition:background .3s, width .3s;
}
.hero-dots button.active{ background:var(--accent-2); width:44px;}

.hero-panel{
  position:relative;
  border-radius:var(--radius-l);
  border:1px solid rgba(255,255,255,0.14);
  background:linear-gradient(160deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  backdrop-filter:blur(6px);
  padding:34px;
  overflow:hidden;
}
.hero-panel .grid-label{
  font-family:'IBM Plex Mono', monospace;
  font-size:12px;
  color:var(--accent-2);
  letter-spacing:0.1em;
  text-transform:uppercase;
  margin-bottom:18px;
  display:block;
}
.hero-stat-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-bottom:16px;
}
.hero-stat-card{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.09);
  border-radius:var(--radius-m);
  padding:20px;
}
.hero-stat-card .num{
  font-family:'Sora', sans-serif;
  font-size:30px;
  font-weight:700;
  color:#fff;
}
.hero-stat-card .lbl{
  font-size:13px;
  color:rgba(255,255,255,0.55);
  margin-top:4px;
}
.hero-panel-graphic{
  position:relative;
  height:150px;
  margin-top:6px;
  border-radius:var(--radius-m);
  border:1px solid rgba(255,255,255,0.09);
  background:rgba(255,255,255,0.03);
  overflow:hidden;
}
.hero-panel-graphic svg{ width:100%; height:100%;}

.scroll-cue{
  position:absolute;
  bottom:28px; left:32px;
  z-index:2;
  display:flex;
  align-items:center;
  gap:10px;
  color:rgba(255,255,255,0.45);
  font-family:'IBM Plex Mono', monospace;
  font-size:11.5px;
  letter-spacing:0.12em;
  text-transform:uppercase;
}
.scroll-cue .line{ width:1px; height:34px; background:linear-gradient(180deg, rgba(255,255,255,0.6), transparent); animation:scrollcue 2.2s infinite;}
@keyframes scrollcue{ 0%{transform:scaleY(0); transform-origin:top;} 50%{transform:scaleY(1); transform-origin:top;} 50.01%{transform-origin:bottom;} 100%{transform:scaleY(0); transform-origin:bottom;} }

/* ============================= */
/* Sections / About              */
/* ============================= */
.about{ background:var(--surface); position:relative;}
.about-grid{
  display:grid;
  grid-template-columns:0.95fr 1.05fr;
  gap:70px;
  align-items:center;
}
.about-visual{
  position:relative;
  border-radius:var(--radius-l);
  overflow:hidden;
  background:linear-gradient(150deg, var(--ink), var(--ink-soft));
  aspect-ratio:1/1.05;
  padding:36px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.about-visual svg{ position:absolute; inset:0; width:100%; height:100%; opacity:0.6;}
.about-visual-top{ position:relative; z-index:2; color:#fff;}
.about-visual-top .mono{ font-size:12px; letter-spacing:0.14em; color:var(--accent-2); text-transform:uppercase;}
.about-visual-top h3{ color:#fff; font-size:26px; margin-top:12px; max-width:280px; line-height:1.3;}
.about-badge{
  position:relative; z-index:2;
  align-self:flex-start;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.15);
  border-radius:999px;
  padding:10px 18px;
  color:#fff;
  font-size:13px;
  font-family:'IBM Plex Mono', monospace;
  display:flex; align-items:center; gap:8px;
}
.about-badge .pulse{
  width:7px; height:7px; border-radius:50%; background:var(--accent-2);
  box-shadow:0 0 0 0 rgba(47,182,172,0.6);
  animation:pulse 2s infinite;
}
@keyframes pulse{ 0%{box-shadow:0 0 0 0 rgba(47,182,172,0.55);} 70%{box-shadow:0 0 0 12px rgba(47,182,172,0);} 100%{box-shadow:0 0 0 0 rgba(47,182,172,0);} }

.about-copy p{ color:var(--muted); font-size:16.5px; margin-bottom:32px; max-width:520px;}
.about-stats{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:0;
  border-top:1px solid var(--line);
  margin-bottom:36px;
}
.about-stats .stat{
  padding:26px 20px 0 0;
  border-right:1px solid var(--line);
}
.about-stats .stat:last-child{ border-right:none;}
.about-stats .num{
  font-family:'Sora', sans-serif;
  font-size:42px;
  font-weight:700;
  color:var(--ink);
  display:flex;
  align-items:flex-start;
  gap:2px;
}
.about-stats .num .plus{ font-size:22px; color:var(--accent); margin-top:4px;}
.about-stats .lbl{ color:var(--muted); font-size:13.5px; margin-top:6px; line-height:1.4;}

/* ============================= */
/* Cards (general patterns)      */
/* ============================= */
/* Why / Choose the Best cards */
.why{ background:var(--ink); color:#fff; position:relative; overflow:hidden;}
.why-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
  position:relative;
  z-index:2;
}
.why-copy .eyebrow{ color:var(--accent-2);}
.why-copy h2{
  color:#fff;
  font-size:clamp(30px,3.6vw,46px);
  line-height:1.15;
  margin-bottom:20px;
}
.why-copy p{ color:rgba(255,255,255,0.62); font-size:16px; max-width:460px; margin-bottom:30px;}
.why-rating{
  display:flex; align-items:center; gap:14px; margin-bottom:36px;
}
.stars{ display:flex; gap:3px; color:#2FB6AC;}
.stars svg{ width:16px; height:16px; fill:#2FB6AC;}
.why-rating .rtext{ font-size:14px; color:rgba(255,255,255,0.6);}
.why-rating .rtext b{ color:#fff;}

.why-cards{ display:flex; flex-direction:column; gap:18px;}
.why-card{
  display:flex; gap:18px;
  padding:26px;
  border-radius:var(--radius-m);
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  transition:transform .35s var(--ease), background .35s;
}
.why-card:hover{ transform:translateX(6px); background:rgba(255,255,255,0.08);}
.why-card .wc-icon{
  width:48px; height:48px; flex-shrink:0;
  border-radius:13px;
  background:rgba(47,182,172,0.14);
  display:flex; align-items:center; justify-content:center;
}
.why-card .wc-icon svg{ width:22px; height:22px; stroke:var(--accent-2);}
.why-card h4{ color:#fff; font-size:17px; margin-bottom:6px;}
.why-card p{ color:rgba(255,255,255,0.55); font-size:14.5px;}

/* ============================= */
/* About Visual (image variant)  */
/* ============================= */
.about-visual.has-image{
  padding:0;
  background:var(--ink);
}
.about-visual.has-image img.demo-img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  z-index:0;
}
.about-visual.has-image::before{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(12,30,33,0.15) 0%, rgba(12,30,33,0.55) 55%, rgba(12,30,33,0.92) 100%);
  z-index:1;
}
.about-visual.has-image .about-visual-top,
.about-visual.has-image .about-badge{ z-index:2; padding:0 36px;}
.about-visual.has-image .about-visual-top{ padding-top:36px;}
.about-visual.has-image .about-badge{ margin-bottom:36px; align-self:flex-start; margin-left:36px;}

/* ============================= */
/* Progress Bars                 */
/* ============================= */
.progress-block{ margin-top:10px;}
.progress-row{ margin-bottom:26px;}
.progress-row:last-child{ margin-bottom:0;}
.progress-row .p-top{
  display:flex; justify-content:space-between; align-items:baseline;
  margin-bottom:10px;
}
.progress-row .p-top span:first-child{
  font-family:'Sora', sans-serif; font-weight:600; font-size:15px; color:#fff;
}
.progress-row .p-top span:last-child{
  font-family:'IBM Plex Mono', monospace; font-size:14px; color:var(--accent-2);
}
.progress-track{
  width:100%; height:8px;
  background:rgba(255,255,255,0.1);
  border-radius:999px;
  overflow:hidden;
}
.progress-fill{
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg, var(--accent), var(--accent-2));
  width:0;
  transition:width 1.4s var(--ease);
}

/* ============================= */
/* Mission / Vision Cards        */
/* ============================= */
.mv-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
.mv-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-l);
  padding:40px;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease);
}
.mv-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-m);}
.mv-card .mv-icon{
  width:52px; height:52px;
  border-radius:15px;
  background:linear-gradient(145deg, var(--accent), var(--accent-2));
  display:flex; align-items:center; justify-content:center;
  margin-bottom:22px;
}
.mv-card .mv-icon i{ color:#fff; font-size:20px;}
.mv-card h3{ font-size:22px; margin-bottom:12px;}
.mv-card p{ color:var(--muted); font-size:15px; margin-bottom:22px;}
.mv-list{ display:flex; flex-direction:column; gap:12px;}
.mv-list li{
  display:flex; align-items:center; gap:12px;
  font-size:14.5px; color:var(--ink);
  font-weight:500;
}
.mv-list li i{
  width:22px; height:22px; border-radius:50%;
  background:rgba(30,138,138,0.1);
  color:var(--accent);
  display:flex; align-items:center; justify-content:center;
  font-size:11px; flex-shrink:0;
}

/* ============================= */
/* Services (tabbed)             */
/* ============================= */
.services{ background:var(--paper-dim);}
.services-wrap{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:0;
  border:1px solid var(--line);
  border-radius:var(--radius-l);
  overflow:hidden;
  background:var(--surface);
}
.service-list{ border-right:1px solid var(--line);}
.service-item{
  display:flex;
  align-items:center;
  gap:18px;
  padding:22px 30px;
  border-bottom:1px solid var(--line);
  cursor:pointer;
  transition:background .25s;
  position:relative;
}
.service-item:last-child{ border-bottom:none;}
.service-item .si-num{
  font-family:'IBM Plex Mono', monospace;
  font-size:13px;
  color:var(--muted-soft);
  min-width:26px;
}
.service-item .si-title{
  font-family:'Sora', sans-serif;
  font-weight:600;
  font-size:16.5px;
  color:var(--ink);
  transition:color .25s;
}
.service-item .si-arrow{ margin-left:auto; opacity:0; transform:translateX(-6px); transition:all .3s var(--ease); color:var(--accent);}
.service-item:hover{ background:var(--paper-dim);}
.service-item.active{ background:linear-gradient(90deg, rgba(30,138,138,0.06), transparent);}
.service-item.active .si-num{ color:var(--accent);}
.service-item.active .si-title{ color:var(--accent);}
.service-item.active .si-arrow{ opacity:1; transform:translateX(0);}
.service-item.active::before{
  content:"";
  position:absolute; left:0; top:0; bottom:0; width:3px;
  background:var(--accent);
}

.service-detail{
  padding:52px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  position:relative;
  overflow:hidden;
}
.service-detail-panel{ display:none; animation:fadein .5s var(--ease);}
.service-detail-panel.active{ display:block;}
@keyframes fadein{ from{opacity:0; transform:translateY(10px);} to{opacity:1; transform:translateY(0);} }
.service-detail-icon{
  width:56px; height:56px;
  border-radius:16px;
  background:linear-gradient(145deg, var(--accent), var(--accent-2));
  display:flex; align-items:center; justify-content:center;
  margin-bottom:24px;
}
.service-detail-icon svg{ width:26px; height:26px; stroke:#fff;}
.service-detail h3{ font-size:26px; margin-bottom:14px;}
.service-detail p{ color:var(--muted); font-size:15.5px; max-width:460px; margin-bottom:26px;}
.service-detail .tag-row{ display:flex; gap:10px; flex-wrap:wrap;}
.service-detail .tag{
  font-family:'IBM Plex Mono', monospace;
  font-size:11.5px;
  color:var(--accent-dark);
  background:rgba(30,138,138,0.08);
  padding:7px 12px;
  border-radius:999px;
}
.services-foot{
  display:flex; justify-content:center; margin-top:44px;
}

/* ============================= */
/* Solutions Grid                */
/* ============================= */
.solutions-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:24px;
}
.sol-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-l);
  padding:34px 28px;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  position:relative;
  overflow:hidden;
}
.sol-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-m); border-color:var(--accent);}
.sol-card .sc-num{
  font-family:'IBM Plex Mono', monospace;
  font-size:12px;
  color:var(--muted-soft);
  letter-spacing:0.1em;
  margin-bottom:20px;
  display:block;
}
.sol-card .sc-icon{
  width:52px; height:52px;
  border-radius:15px;
  background:linear-gradient(145deg, var(--accent), var(--accent-2));
  display:flex; align-items:center; justify-content:center;
  margin-bottom:22px;
}
.sol-card .sc-icon i{ color:#fff; font-size:20px;}
.sol-card h3{ font-size:18.5px; margin-bottom:12px; line-height:1.3;}
.sol-card p{ color:var(--muted); font-size:14.5px; margin-bottom:0;}

/* ============================= */
/* Process Steps                 */
/* ============================= */
.process-row{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:0;
  border-top:1px solid rgba(255,255,255,0.1);
}
.process-step{
  padding:36px 28px 0 0;
  border-right:1px solid rgba(255,255,255,0.1);
}
.process-step:last-child{ border-right:none;}
.process-step .ps-num{
  font-family:'IBM Plex Mono', monospace;
  color:var(--accent-2);
  font-size:13px;
  letter-spacing:0.1em;
  margin-bottom:14px;
  display:block;
}
.process-step h4{ color:#fff; font-size:17px; margin-bottom:10px;}
.process-step p{ color:rgba(255,255,255,0.55); font-size:14px;}

/* ============================= */
/* Products / Product Slider     */
/* ============================= */
.products{ background:var(--surface);}
.products .section-head{ align-items:center;}
.slider-controls{ display:flex; gap:10px;}
.slider-btn{
  width:46px; height:46px;
  border-radius:50%;
  border:1.5px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  transition:border-color .25s, background .25s, transform .25s;
}
.slider-btn:hover{ border-color:var(--accent); background:var(--accent); color:#fff; transform:translateY(-2px);}
.slider-btn svg{ width:18px; height:18px;}

.product-track-wrap{ overflow:hidden; margin:0 -8px;}
.product-track{
  display:flex;
  gap:24px;
  padding:8px;
  transition:transform .6s var(--ease);
}
.product-card{
  position:relative;
  flex:0 0 320px;
  height:400px;
  border-radius:var(--radius-l);
  overflow:hidden;
  cursor:pointer;
  isolation:isolate;
}
.product-card .pc-bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  background-color:var(--ink);
  transition:transform .7s var(--ease);
}
.product-card:hover .pc-bg{ transform:scale(1.08);}
.product-card .pc-tint{
  position:absolute; inset:0;
  background:linear-gradient(155deg, rgba(30,138,138,0.55), rgba(12,30,33,0.25));
  mix-blend-mode:multiply;
}
.product-card .pc-overlay{
  position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(12,30,33,0.95) 0%, rgba(12,30,33,0.6) 42%, rgba(12,30,33,0.18) 70%, transparent 100%);
}
.product-card .pc-index{
  position:absolute; top:22px; left:24px;
  font-family:'IBM Plex Mono', monospace;
  font-size:12px;
  color:rgba(255,255,255,0.7);
  letter-spacing:0.1em;
}
.product-card .pc-content{
  position:absolute; left:24px; right:24px; bottom:24px;
  color:#fff;
}
.product-card .pc-content h4{ color:#fff; font-size:20px; margin-bottom:8px;}
.product-card .pc-desc{
  font-size:13.5px;
  color:rgba(255,255,255,0.75);
  max-height:0;
  opacity:0;
  overflow:hidden;
  transition:max-height .5s var(--ease), opacity .4s var(--ease), margin .4s;
}
.product-card:hover .pc-desc{ max-height:120px; opacity:1; margin-top:10px;}
.product-card .pc-line{ width:36px; height:2px; background:var(--accent-2);}

/* Product Grid (full cards on product page) */
.products-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}
.product-card.grid-card{
  flex:none;
  height:440px;
}
.product-card.grid-card .pc-desc{
  max-height:120px;
  opacity:1;
  margin-top:10px;
  -webkit-line-clamp:3;
}
.product-card.grid-card .pc-cta{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:16px;
  font-family:'IBM Plex Mono', monospace;
  font-size:12px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--accent-2);
}
.product-card.grid-card .pc-cta svg{ width:14px; height:14px; transition:transform .3s var(--ease);}
.product-card.grid-card:hover .pc-cta svg{ transform:translateX(4px);}



/* Highlight strip */
.highlight-row{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:0;
  border-top:1px solid var(--line);
  margin-top:64px;
}
.highlight-item{
  padding:30px 30px 0 0;
  border-right:1px solid var(--line);
}
.highlight-item:last-child{ border-right:none;}
.highlight-item .hi-icon{
  width:44px; height:44px;
  border-radius:12px;
  background:rgba(30,138,138,0.1);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:16px;
}
.highlight-item .hi-icon i{ color:var(--accent); font-size:18px;}
.highlight-item h4{ font-size:16.5px; margin-bottom:8px;}
.highlight-item p{ color:var(--muted); font-size:14px;}

/* ============================= */
/* Forms                          */
/* ============================= */
.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-family:'IBM Plex Mono', monospace;
  font-size:12px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--muted-soft);
}
.form-field input, .form-field select, .form-field textarea{
  border:1.5px solid var(--line);
  border-radius:var(--radius-s);
  padding:13px 16px;
  font-family:'Inter', sans-serif;
  font-size:14.5px;
  color:var(--text);
  background:var(--paper);
  transition:border-color .25s, box-shadow .25s;
  width:100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{
  outline:none;
  border-color:var(--accent);
  box-shadow:0 0 0 3px rgba(30,138,138,0.12);
}
.form-field textarea{ resize:vertical; min-height:130px;}
.form-submit{ margin-top:6px;}
.form-note{ font-size:12.5px; color:var(--muted-soft); margin-top:14px;}

/* ============================= */
/* Buttons                       */
/* ============================= */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:15px 28px;
  border-radius:999px;
  font-weight:600;
  font-size:15px;
  font-family:'Inter', sans-serif;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
  white-space:nowrap;
}
.btn svg{width:16px; height:16px; transition:transform .35s var(--ease);}
.btn:hover svg{transform:translateX(4px);}
.btn-primary{
  background:var(--accent);
  color:#fff;
  box-shadow:0 10px 24px rgba(30,138,138,0.28);
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 16px 32px rgba(30,138,138,0.36); background:var(--accent-dark);}
.btn-ghost{
  background:transparent;
  color:var(--ink);
  border:1.5px solid var(--line-dark);
}
.btn-ghost:hover{ border-color:var(--accent); color:var(--accent); transform:translateY(-2px);}
.btn-ghost.on-dark{ color:#fff; border-color:rgba(255,255,255,0.28);}
.btn-ghost.on-dark:hover{ border-color:var(--accent-2); color:var(--accent-2);}

/* ============================= */
/* Testimonials                  */
/* ============================= */
.testimonials{ background:var(--paper-dim);}
.t-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
.t-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-l);
  padding:36px;
  display:flex;
  flex-direction:column;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease);
}
.t-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-m);}
.t-card .stars{ margin-bottom:20px;}
.t-card p.quote{
  font-size:16px;
  color:var(--text);
  line-height:1.65;
  margin-bottom:26px;
  flex-grow:1;
}
.t-person{ display:flex; align-items:center; gap:14px;}
.t-avatar{
  width:46px; height:46px;
  border-radius:50%;
  background:linear-gradient(145deg, var(--accent), var(--accent-2));
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-family:'Sora',sans-serif; font-weight:700; font-size:15px;
  flex-shrink:0;
}
.t-person .tp-name{ font-weight:600; font-size:14.5px; color:var(--ink);}
.t-person .tp-role{ font-size:13px; color:var(--muted);}

/* ============================= */
/* Partners                      */
/* ============================= */
.partners{ background:#ecf0f0; padding:80px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line);}
.partners .p-head{ text-align:center; margin-bottom:44px;}
.partners .p-head span{ color:var(--muted); font-size:14px; letter-spacing:0.02em;}
.marquee{
  width:100%;
  overflow:hidden;
  -webkit-mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track{
  display:flex;
  gap:64px;
  width:max-content;
  animation:scroll-left 50s linear infinite;
}
.marquee:hover .marquee-track{ animation-play-state:paused;}
@keyframes scroll-left{ from{transform:translateX(0);} to{transform:translateX(-50%);} }

.p-logo{
  display:flex; align-items:center; justify-content:center;
  height:120px;
  width:250px;
  white-space:nowrap;
  background:white;
  border-radius:var(--radius-m);
}
.p-logo img{
  height:100%;
  width:100%;
  max-width:200px;
  object-fit:contain;
}
.p-logo:hover img{
  filter:grayscale(0) opacity(1);
  transform:translateY(-2px);
}

/* Partners Grid (static) */
.partners-grid-section{ background:var(--surface);}
.partners-grid{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:20px;
}
.partners-grid .p-logo{
  height:110px;
  width:100%;
  border:1px solid var(--line);
  box-shadow:var(--shadow-s);
}

/* Partner Perks */
.perks-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}
.perk-card{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:var(--radius-m);
  padding:30px;
  transition:transform .35s var(--ease), background .35s;
}
.perk-card:hover{ transform:translateY(-6px); background:rgba(255,255,255,0.08);}
.perk-card .pk-icon{
  width:48px; height:48px;
  border-radius:13px;
  background:rgba(47,182,172,0.14);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
}
.perk-card .pk-icon i{ color:var(--accent-2); font-size:19px;}
.perk-card h4{ color:#fff; font-size:17px; margin-bottom:8px;}
.perk-card p{ color:rgba(255,255,255,0.55); font-size:14px;}

/* ============================= */
/* CTA Band                      */
/* ============================= */
.cta-band{
  background:linear-gradient(120deg, var(--accent), var(--accent-dark));
  padding:70px 0;
  position:relative;
  overflow:hidden;
}
.cta-band-inner{
  display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap;
  position:relative; z-index:2;
}
.cta-band h3{ color:#fff; font-size:28px; max-width:480px;}
.cta-band p{ color:rgba(255,255,255,0.8); margin-top:8px; font-size:15px;}
.cta-band .btn-primary{ background:#fff; color:var(--accent-dark); box-shadow:0 12px 28px rgba(0,0,0,0.18);}
.cta-band .btn-primary:hover{ background:var(--ink); color:#fff;}

/* ============================= */
/* Contacts                      */
/* ============================= */
.contact-cards{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
  margin-top:-140px;
  position:relative;
  z-index:5;
  margin-bottom:90px;
}
.contact-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-l);
  padding:32px;
  box-shadow:var(--shadow-m);
  transition:transform .35s var(--ease), box-shadow .35s var(--ease);
}
.contact-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-l);}
.contact-card .cc-icon{
  width:50px; height:50px;
  border-radius:14px;
  background:linear-gradient(145deg, var(--accent), var(--accent-2));
  display:flex; align-items:center; justify-content:center;
  margin-bottom:20px;
}
.contact-card .cc-icon i{ color:#fff; font-size:19px;}
.contact-card h4{ font-size:16.5px; margin-bottom:8px;}
.contact-card p{ color:var(--muted); font-size:14.5px; margin-bottom:4px;}
.contact-card a{ color:var(--accent-dark); font-weight:600;}

.contact-wrap{
  display:grid;
  grid-template-columns:1.1fr;
  gap:56px;
  align-items:flex-start;
  justify-content:space-between;
}
.contact-form-panel{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-l);
  padding:44px;
  box-shadow:var(--shadow-s);
}
.contact-form-panel h3{ font-size:24px; margin-bottom:8px;}
.contact-form-panel > p{ color:var(--muted); font-size:14.5px; margin-bottom:30px;}

/* Office Cards */
.offices-panel{ display:flex; flex-direction:column; gap:22px;}
.office-card{
  background:var(--ink);
  border-radius:var(--radius-l);
  padding:30px;
  color:#fff;
  position:relative;
  overflow:hidden;
}
.office-card .oc-flag{
  font-family:'IBM Plex Mono', monospace;
  font-size:12px;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--accent-2);
  margin-bottom:10px;
  display:block;
}
.office-card h4{ color:#fff; font-size:18px; margin-bottom:10px;}
.office-card p{ color:rgba(255,255,255,0.6); font-size:14px; margin-bottom:6px;}
.office-card a{ color:rgba(255,255,255,0.85); font-size:14px;}

/* Map */
.map-frame{
  width:100%;
  height:420px;
  border:0;
  border-radius:var(--radius-l);
  filter:grayscale(0.15);
}

/* ============================= */
/* Footer                        */
/* ============================= */
.footer{ background:var(--ink); color:rgba(255,255,255,0.65); padding-top:90px;}
.footer-top{
  display:grid;
  grid-template-columns:1.4fr 0.8fr 0.8fr 1fr;
  gap:50px;
  padding-bottom:64px;
  border-bottom:1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo{ margin-bottom:18px;}
.footer-brand p{ font-size:14.5px; max-width:280px; color:rgba(255,255,255,0.5); margin-bottom:24px;}
.footer-social{ display:flex; gap:10px;}
.footer-social a{
  width:38px; height:38px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.15);
  display:flex; align-items:center; justify-content:center;
  transition:background .25s, border-color .25s, transform .25s;
}
.footer-social a:hover{ background:var(--accent); border-color:var(--accent); transform:translateY(-3px);}
.footer-social svg{ width:16px; height:16px;}
.footer-col h5{
  font-family:'IBM Plex Mono', monospace;
  font-size:12px;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.4);
  margin-bottom:20px;
}
.footer-col ul li{ margin-bottom:13px;}
.footer-col a{ font-size:14.5px; color:rgba(255,255,255,0.68); transition:color .2s, padding-left .2s;}
.footer-col a:hover{ color:var(--accent-2); padding-left:4px;}
.footer-contact li{ display:flex; gap:12px; align-items:flex-start; font-size:14.5px; color:rgba(255,255,255,0.68); margin-bottom:16px;}
.footer-contact svg{ width:17px; height:17px; flex-shrink:0; margin-top:2px; stroke:var(--accent-2);}
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px;
  padding:26px 0;
  font-size:13px;
  color:rgba(255,255,255,0.4);
}
.footer-bottom-links{ display:flex; gap:22px;}
.footer-bottom-links a{ color:rgba(255,255,255,0.4); transition:color .2s;}
.footer-bottom-links a:hover{ color:#fff;}

/* ============================= */
/* Utility Classes               */
/* ============================= */
/* Network divider (reserved for future use) */
.net-divider{
  position:relative;
  height:64px;
  width:100%;
  overflow:hidden;
}
.net-divider svg{ width:100%; height:100%; display:block;}

/* Font Awesome base style (defensive) */
.fas {
    --_fa-family: var(--fa-family, var(--fa-style-family, "Font Awesome 7 Free"));
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: var(--fa-display, inline-block);
    font-family: var(--_fa-family);
    font-feature-settings: normal;
    font-style: normal;
    font-synthesis: none;
    font-variant: normal;
    font-weight: var(--fa-style, 900);
    line-height: 1;
    text-align: center;
    text-rendering: auto;
    width: var(--fa-width, 1.25em);
}

/* ============================= */
/* Page-Specific Styles          */
/* ============================= */

/* ----- About Page ----- */

/* ----- Solutions Page ----- */

/* ----- Products Page ----- */

/* ----- Contact Page ----- */

/* ----- Partners Page ----- */

/* ============================= */
/* Responsive Breakpoints        */
/* ============================= */
@media (max-width: 980px){
  .hero-grid, .about-grid, .why-grid{ grid-template-columns:1fr; }
  .hero-panel{ order:-1; }
  .services-wrap{ grid-template-columns:1fr;}
  .service-list{ border-right:none; border-bottom:1px solid var(--line);}
  .t-grid{ grid-template-columns:1fr;}
  .footer-top{ grid-template-columns:1fr 1fr; }

  .solutions-grid{ grid-template-columns:repeat(2, 1fr); }
  .process-row{ grid-template-columns:1fr 1fr; row-gap:32px;}
  .process-step:nth-child(2){ border-right:none;}

  .products-grid{ grid-template-columns:repeat(2, 1fr); }
  .contact-wrap{ grid-template-columns:1fr;}
  .form-row{ grid-template-columns:1fr;}

  .partners-grid{ grid-template-columns:repeat(3, 1fr);}
}

@media (max-width: 900px){
  .contact-cards{ grid-template-columns:1fr; margin-top:-100px;}
}

@media (max-width: 860px){
  .perks-grid{ grid-template-columns:1fr;}
}

@media (max-width: 760px){
  .nav-links, .nav-cta .btn-ghost{ display:none; }
  .nav-toggle{ display:flex; }
  .navbar.mobile-open .nav-links{
    display:flex; position:fixed; top:0; right:0; height:100vh; width:78%; max-width:320px;
    background:var(--ink-soft); flex-direction:column; align-items:flex-start; padding:100px 30px 30px;
    box-shadow:-20px 0 50px rgba(0,0,0,0.3);
  }
  .navbar.mobile-open .nav-links a{ width:100%; padding:14px 16px; font-size:16px;}
  .section{ padding:76px 0;}
  .about-grid{ gap:40px; }
  .about-visual{ aspect-ratio:auto; min-height:380px; padding:24px; }
  .about-visual.has-image .about-visual-top, .about-visual.has-image .about-badge{ padding:0 24px; }
  .about-visual.has-image .about-visual-top{ padding-top:24px; }
  .about-visual.has-image .about-badge{ margin-bottom:24px; margin-left:24px; }
  .about-visual-top h3{ font-size:20px; max-width:100%; }
  .about-copy p{ font-size:15px; }
  .about-stats{ grid-template-columns:1fr 1fr; row-gap:24px;}
  .about-stats .stat:nth-child(2){ border-right:none;}
  .about-stats .num{ font-size:34px; }
  .mv-grid{ grid-template-columns:1fr; gap:18px; }
  .mv-card{ padding:28px; }
  .mv-card h3{ font-size:19px; }
  .footer-top{ grid-template-columns:1fr; }
  .cta-band-inner{ flex-direction:column; align-items:flex-start;}
  .highlight-row{ grid-template-columns:1fr; }
  .highlight-item{ border-right:none; border-bottom:1px solid var(--line); padding-bottom:24px; margin-bottom:24px;}
}

@media (max-width: 480px){
  .container{ padding:0 20px; }
  .about-grid{ gap:28px; }
  .about-visual{ min-height:280px; padding:18px; }
  .about-visual.has-image .about-visual-top, .about-visual.has-image .about-badge{ padding:0 18px; }
  .about-visual.has-image .about-visual-top{ padding-top:18px; }
  .about-visual.has-image .about-badge{ margin-bottom:18px; margin-left:18px; }
  .about-visual-top h3{ font-size:17px; }
  .about-copy h2{ font-size:24px; }
  .about-copy p{ font-size:14px; margin-bottom:22px; }
  .about-stats{ grid-template-columns:1fr; gap:0; }
  .about-stats .stat{ border-right:none; border-bottom:1px solid var(--line); padding:20px 0; }
  .about-stats .stat:last-child{ border-bottom:none; padding-bottom:0; }
  .about-stats .num{ font-size:30px; }
  .about-badge{ font-size:11px; padding:7px 14px; }
  .mv-card{ padding:24px; }
  .mv-card p{ font-size:14px; }
  .mv-list li{ font-size:13.5px; }
  .why-grid{ gap:36px; }
  .why-card{ padding:20px; flex-direction:column; }
  .why-card h4{ font-size:15.5px; }
  .why-card p{ font-size:13.5px; }
  .page-header{ padding-top:140px; padding-bottom:50px; }
}

@media (max-width: 640px){
  .products-grid{ grid-template-columns:1fr; }
}

@media (max-width: 620px){
  .partners-grid{ grid-template-columns:repeat(2, 1fr);}
}

@media (max-width: 560px){
  .solutions-grid{ grid-template-columns:1fr; }
  .process-row{ grid-template-columns:1fr;}
  .process-step{ border-right:none; border-bottom:1px solid rgba(255,255,255,0.1); padding-bottom:28px;}
}