@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=IBM+Plex+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;600&display=swap');
:root{
  --ink:#12211D;
  --deep:#0B3B36;
  --deep-2:#082B27;
  --mint:#EDF3F0;
  --mint-card:#FFFFFF;
  --coral:#FF6B4A;
  --coral-light:#FFB199;
  --slate:#5C7770;
  --line: rgba(11,59,54,0.14);
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth; overflow-x:clip;}
body{background:var(--mint); color:var(--ink); font-family:'IBM Plex Sans', sans-serif; line-height:1.6; overflow-x:clip;}
h1,h2,h3,h4{font-family:'Space Grotesk', sans-serif; color:var(--deep); line-height:1.08; font-weight:700; letter-spacing:-0.01em;}
a{text-decoration:none; color:inherit;}
ul{list-style:none;}
.mono{font-family:'JetBrains Mono', monospace;}
.eyebrow{font-family:'JetBrains Mono', monospace; font-size:12px; letter-spacing:0.14em; text-transform:uppercase; color:var(--coral); font-weight:600;}
.wrap{max-width:1200px; margin:0 auto; padding:0 30px;}
@media (max-width:640px){ .wrap{padding:0 20px;} }

/* Header */
header{position:sticky; top:0; z-index:100; background:rgba(237,243,240,0.9); backdrop-filter:blur(10px); border-bottom:1px solid var(--line);}
.nav{display:flex; align-items:center; justify-content:space-between; padding-top:28px; padding-bottom:28px;}
.logo{font-family:'Space Grotesk', sans-serif; font-size:20px; font-weight:700; color:var(--deep); display:flex; align-items:center; gap:10px;}
.logo .mark{width:12px; height:12px; background:var(--coral); border-radius:50%; flex-shrink:0;}
.logo .domain{font-family:'JetBrains Mono', monospace; font-size:11px; color:var(--slate); font-weight:400; margin-left:2px;}
.navlinks > ul{display:flex; gap:36px; font-size:14px; font-weight:600; color:var(--deep); list-style:none;}
.navlinks > ul > li{position:relative;}
.navlinks > ul > li > a{position:relative; padding:4px 0; text-decoration:none;}
.navlinks > ul > li > a::before{content:''; position:absolute; left:0; bottom:-3px; width:0; height:2px; background:var(--coral); transition:width .25s ease;}
.navlinks > ul > li.active > a{color:var(--coral) !important;}
.navlinks > ul > li.active > a::before{width:100%;}
.navlinks > ul > li > a:hover{color:inherit;}
.navlinks > ul > li > a:hover::before{width:100%;}
.navcta{background:var(--coral); color:#fff; padding:12px 24px; border-radius:100px; font-size:13.5px; font-weight:700; letter-spacing:0.01em; transition:all .25s ease; white-space:nowrap;}
.navcta:hover{background:var(--deep); color:#fff; text-decoration:none;}
.burger{display:none; flex-direction:column; justify-content:center; align-items:center; width:40px; height:40px; cursor:pointer; background:none; border:none; position:relative; z-index:210;}
.burger span{display:block; width:22px; height:2px; background:var(--deep); border-radius:2px; transition:all .3s ease; position:absolute;}
.burger span:nth-child(1){transform:translateY(-6px);}
.burger span:nth-child(2){transform:translateY(0);}
.burger span:nth-child(3){transform:translateY(6px);}
.burger.open span:nth-child(1){transform:translateY(0) rotate(45deg);}
.burger.open span:nth-child(2){opacity:0;}
.burger.open span:nth-child(3){transform:translateY(0) rotate(-45deg);}
.mobile-menu{position:fixed; top:0; left:0; width:100%; height:100vh; background:var(--mint); z-index:200; transform:translateX(100%); visibility:hidden; transition:transform .35s cubic-bezier(0.4,0,0.2,1), visibility .35s; overflow-y:auto;}
.mobile-menu.open{transform:translateX(0); visibility:visible;}
body.menu-open{overflow:hidden;}
.mob-head{display:flex; align-items:center; justify-content:space-between; padding:16px 24px; border-bottom:1px solid var(--line);}
.mob-logo{border-bottom:none !important;}
.mob-logo img{max-height:32px; width:auto;}
.mob-close{width:36px; height:36px; background:none; border:none; font-size:20px; color:var(--deep); cursor:pointer; display:flex; align-items:center; justify-content:center; border-radius:50%; transition:all .2s;}
.mob-close:hover{background:var(--line);}
.mobile-menu .navlinks-wrap{padding:8px 0;}
.mobile-menu a{padding:14px 28px; font-size:15px; font-weight:600; color:var(--deep); display:block; border-bottom:1px solid var(--line); text-decoration:none;}
.mobile-menu a:hover{background:var(--mint-card); color:var(--coral);}
.mobile-menu .mob-mega-child-link{padding-left:48px; font-size:13px; font-weight:400; color:var(--slate);}
.mobile-menu .mob-mega-child-link:hover{color:var(--coral);}
.mobile-menu .mob-mega-cat-link{padding-left:40px; font-size:13.5px; border-bottom:1px dashed var(--line);}
.mobile-menu .navcta-mob{display:block; margin:24px 28px; background:var(--coral); color:#fff; text-align:center; padding:14px; border-radius:100px; font-weight:700; font-size:14px; border:none;}
.mobile-menu .navcta-mob:hover{background:var(--deep); color:#fff;}
.menu-item-has-children,
li.submenus {
  position: relative;
}
.menu-item-has-children > .sub-menu,
li.submenus > ul {
  position: absolute;
  top: 100%;
  min-width: 280px;
  left: 0;
  background: #fff;
  padding: 10px 0;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transition: all .2s ease;
  z-index: 200;
  display: block;
}
.menu-item-has-children:hover > .sub-menu,
li.submenus:hover > ul,
.menu-item-has-children > .sub-menu.open-click,
li.submenus > ul.open-click {
  opacity: 1;
  visibility: visible;
}
.menu-item-has-children > .sub-menu li,
li.submenus > ul li {
  padding: 0;
  display: block;
  width: 100%;
  border-bottom: 1px solid rgba(11, 59, 54, 0.08);
}
.menu-item-has-children > .sub-menu li:last-child,
li.submenus > ul li:last-child {
  border-bottom: none;
}
.menu-item-has-children > .sub-menu a,
li.submenus > ul a {
  display: block;
  padding: 8px 55px 8px 20px;
  font-size: 13px;
  color: var(--deep);
  white-space: nowrap;
  position: relative;
}
.menu-item-has-children > .sub-menu a::before,
li.submenus > ul a::before {
  display: none !important;
}
.menu-item-has-children > .sub-menu a:hover,
li.submenus > ul a:hover,
.menu-item-has-children > .sub-menu li.active > a,
li.submenus > ul li.active > a {
  background: var(--mint);
  color: var(--coral);
}

/* Parent menu arrow icons */
.navlinks > ul > li.menu-item-has-children > a::after,
.navlinks > ul > li.submenus > a::after {
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  margin-left: 6px;
  font-size: 11px;
  color: var(--slate);
  transition: transform .2s ease, color .2s ease;
  display: inline-block;
  vertical-align: middle;
  background: transparent !important;
  width: auto !important;
  height: auto !important;
}
.navlinks > ul > li.menu-item-has-children:hover > a::after,
.navlinks > ul > li.submenus:hover > a::after {
  transform: rotate(180deg);
  color: var(--coral);
}

/* Nested parent menu right arrow icons */
.navlinks .sub-menu li.menu-item-has-children > a::after,
.navlinks li.submenus > ul li.submenus > a::after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: var(--slate);
  transition: transform .2s ease, color .2s ease;
  background: transparent !important;
  width: auto !important;
  height: auto !important;
}
.navlinks .sub-menu li.menu-item-has-children:hover > a::after,
.navlinks li.submenus > ul li.submenus:hover > a::after {
  color: var(--coral);
  transform: translateY(-50%) translateX(2px);
}

/* Nested sub-menu: fly left instead of below */
.menu-item-has-children > .sub-menu .menu-item-has-children > .sub-menu,
.menu-item-has-children > .sub-menu li.submenus > ul,
li.submenus > ul li.submenus > ul {
  top: 0;
  right: 100%;
  left: auto;
}
@media (max-width:1024px){ .navlinks{display:none;} .navcta{display:none;} .burger{display:flex;} }

/* Hero */
.hero{position:relative; padding:80px 0 0; overflow:hidden; background:var(--deep); color:#fff;}
.hero-shape{position:absolute; inset:0; background:linear-gradient(115deg, var(--deep) 55%, var(--deep-2) 55.5%); z-index:0;}
.hero-inner{position:relative; z-index:2; padding-bottom:70px;}
.hero-grid{display:grid; grid-template-columns:1.2fr 0.8fr; gap:50px; align-items:center;}
@media (max-width:920px){.hero-grid{grid-template-columns:1fr;}}
.hero h1{color:#fff; font-size:clamp(36px,5.2vw,58px); margin:20px 0 22px;}
.hero h1 .accent{color:var(--coral);}
.hero p.lead{max-width:520px; font-size:16.5px; color:rgba(255,255,255,0.72); margin-bottom:32px;}
.btn-row{display:flex; gap:14px; flex-wrap:wrap;}
.btn{display:inline-flex; align-items:center; gap:8px; padding:15px 28px; font-size:14px; font-weight:700; border-radius:100px; letter-spacing:0.01em; transition:all .25s ease;}
.btn-coral{background:var(--coral); color:#fff;}
.btn-coral:hover{background:var(--deep); color:#fff; text-decoration:none;}
.hero .btn-coral:hover{background:#fff; color:var(--deep); text-decoration:none;}
.btn-line{border:1.5px solid rgba(255,255,255,0.35); color:#fff;}
.btn-line:hover{border-color:var(--coral); color:var(--coral-light);}
.btn-deep{background:var(--deep); color:#fff;}
.btn-deep:hover{background:var(--deep-2); color:#fff; text-decoration:none;}

/* Trajectory */
.traj-wrap{position:relative;}
.traj-svg{width:100%; height:auto;}
.traj-path{stroke-dasharray:600; stroke-dashoffset:600; animation:draw 2s ease forwards .3s;}
@keyframes draw{to{stroke-dashoffset:0;}}
.traj-node{opacity:0; animation:pop .4s ease forwards;}
.traj-node.n1{animation-delay:.5s;} .traj-node.n2{animation-delay:.9s;} .traj-node.n3{animation-delay:1.3s;} .traj-node.n4{animation-delay:1.7s;} .traj-node.n5{animation-delay:2.1s;}
@keyframes pop{from{opacity:0; transform:scale(0.4);} to{opacity:1; transform:scale(1);}}
.traj-label{font-family:'JetBrains Mono', monospace; font-size:9.5px; fill:rgba(255,255,255,0.65); letter-spacing:0.04em;}

.hero-stats{display:flex; gap:0; margin-top:44px; padding-top:26px; border-top:1px solid rgba(255,255,255,0.15); position:relative; z-index:2; flex-wrap:wrap;}
.hero-stats .stat{flex:1; min-width:140px; padding-right:20px;}
.hero-stats .stat .num{font-family:'Space Grotesk', sans-serif; font-size:26px; color:var(--coral); font-weight:700;}
.hero-stats .stat .lbl{font-size:12px; color:rgba(255,255,255,0.55); margin-top:4px; font-family:'JetBrains Mono', monospace;}

/* Section base */
section{padding:100px 0;}
.section-head{max-width:620px; margin-bottom:54px;}
.section-head h2{font-size:clamp(28px,3.4vw,40px); margin-top:10px;}
.section-head p{color:var(--slate); margin-top:14px; font-size:15.5px;}
.tick{display:flex; align-items:center; gap:8px;}
.tick svg{width:16px; height:16px;}

/* About */
.about-grid{display:grid; grid-template-columns:0.85fr 1.15fr; gap:64px; align-items:start;}
@media (max-width:920px){.about-grid{grid-template-columns:1fr; gap:36px;}}
.about-copy p{color:#3C4B46; margin-bottom:16px; font-size:15px;}
.pillars{display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-top:10px;}
@media (max-width:500px){.pillars{grid-template-columns:1fr;}}
.pillar{background:var(--mint-card); border:1px solid var(--line); padding:24px 22px; border-radius:14px 14px 14px 2px;}
.pillar h4{font-size:15.5px; margin-bottom:8px; font-weight:700; color:var(--deep);}
.pillar p{font-size:13px; color:var(--slate);}

/* Values */
.values{background:var(--deep); color:#fff;}
.values .section-head h2{color:#fff;}
.values .section-head p{color:rgba(255,255,255,0.6);}
.val-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
@media (max-width:820px){.val-grid{grid-template-columns:1fr;}}
.val-card{background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.1); border-radius:16px; padding:32px 28px;}
.val-card .num{font-family:'JetBrains Mono', monospace; font-size:12px; color:var(--coral);}
.val-card h3{color:#fff; font-size:20px; margin:14px 0 10px;}
.val-card p{color:rgba(255,255,255,0.6); font-size:13.5px;}
.val-list li{font-size:13.5px; color:rgba(255,255,255,0.75); padding:8px 0; display:flex; align-items:center; gap:10px;}
.val-list li::before{content:'→'; color:var(--coral); font-family:'JetBrains Mono', monospace;}

/* Services */
.services{background:var(--mint);}
.svc-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:20px;}
@media (max-width:920px){.svc-grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:600px){.svc-grid{grid-template-columns:1fr;}}
.svc-card{background:#0b3b36; border:1px solid var(--line); border-radius:18px 18px 18px 2px; padding:32px 26px; transition:transform .25s ease, box-shadow .25s ease; overflow:hidden;}
.svc-card:hover{transform:translateY(-4px); box-shadow:0 16px 32px rgba(11,59,54,0.1);}
@media (max-width:600px){.svc-card:nth-child(even){margin-top:0;}}
.svc-num{font-family:'JetBrains Mono', monospace; font-size:11px; color:var(--coral); font-weight:600;}
.svc-card h3{font-size:18px; margin:14px 0 10px; font-weight:700; color:#fff;}
.svc-card p{font-size:13.5px; color:#c9c9c9;}
.svc-icon{width:36px; height:36px; margin-bottom:16px; background:var(--mint); border-radius:10px; display:flex; align-items:center; justify-content:center;}
.svc-icon svg{width:18px; height:18px; stroke:var(--deep); fill:none; stroke-width:1.7;}
.svc-img{width:calc(100% + 52px); height:200px; border-radius:0; overflow:hidden; margin:0 -26px 18px; margin-top:-32px;}
.svc-img img{width:100%; height:100%; object-fit:cover; display:block;}

/* Process */
.process{background:var(--mint-card);}
.trail{position:relative; display:grid; grid-template-columns:repeat(5,1fr); gap:0;}
@media (max-width:980px){.trail{grid-template-columns:repeat(2,1fr); gap:26px;}}
@media (max-width:560px){.trail{grid-template-columns:1fr;}}
.trail-line{position:absolute; top:21px; left:0; right:0; height:2px; background:repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 14px); z-index:0;}
@media (max-width:980px){.trail-line{display:none;}}
.tstep{position:relative; z-index:1; padding-right:20px;}
.tstep .snum{font-family:'Space Grotesk', sans-serif; font-size:15px; color:#fff; background:var(--coral); width:42px; height:42px; border-radius:50%; display:flex; align-items:center; justify-content:center; margin-bottom:16px; font-weight:700;}
.tstep h4{font-size:14.5px; margin-bottom:6px; font-weight:700;}
.tstep p{font-size:12.5px; color:var(--slate);}

/* Industries */
.industries{background:#deefe6c9;}
.ind-wrap{display:flex; flex-wrap:wrap; gap:12px;}
.ind-chip{background:var(--mint-card); border:1px solid var(--line); padding:14px 22px; font-size:13.5px; font-weight:600; color:var(--deep); border-radius:100px;}
.ind-chip .dot{display:inline-block; width:6px; height:6px; background:var(--coral); border-radius:50%; margin-right:8px;}
.ind-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:36px;}
@media (max-width:920px){.ind-grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:600px){.ind-grid{grid-template-columns:1fr;}}
.ind-card{background:#0b3b36; border:1px solid var(--line); border-radius:18px 18px 18px 2px; padding:0; overflow:hidden; transition:transform .25s ease, box-shadow .25s ease; display:flex; flex-direction:column; justify-content:center;}
.ind-card:hover{transform:translateY(-4px); box-shadow:0 16px 32px rgba(11,59,54,0.1);}
.ind-img{width:100%; height:160px; overflow:hidden;}
.ind-img img{width:100%; height:100%; object-fit:cover; display:block;}
.ind-icon{width:48px; height:48px; margin:20px 20px 0; background:var(--mint); border-radius:12px; display:flex; align-items:center; justify-content:center;}
.ind-icon svg{width:24px; height:24px; stroke:var(--deep); fill:none; stroke-width:1.7;}
.ind-card h3{font-size:16px; font-weight:700; margin:20px 20px; color:#fff; text-align:center;}
.ind-card p{font-size:13px; color:#c9c9c9; margin:0 20px 16px; line-height:1.5;}
.ind-flags{display:flex; flex-wrap:wrap; gap:6px; padding:0 20px 20px;}
.ind-flag{font-family:'JetBrains Mono', monospace; font-size:10px; font-weight:600; letter-spacing:0.04em; color:#fff; background:#FF6B4A; padding:4px 10px; border-radius:100px;}

/* Why */
.why-grid{display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center;}
@media (max-width:920px){.why-grid{grid-template-columns:1fr; gap:36px;}}
.why-list li{display:flex; gap:18px; padding:20px 0; border-bottom:1px solid var(--line);}
.why-list li:first-child{padding-top:0;}
.why-index{font-family:'Space Grotesk', sans-serif; font-size:22px; color:var(--coral); font-weight:700; min-width:36px;}
.why-list h4{font-size:15.5px; margin-bottom:4px; font-weight:700;}
.why-list p{font-size:13.5px; color:var(--slate);}
.why-visual{background:var(--deep); border-radius:20px 20px 20px 2px; padding:48px 38px; color:#fff; position:relative; overflow:hidden;}
.why-visual::after{content:''; position:absolute; right:-30px; top:-30px; width:140px; height:140px; background:var(--coral); opacity:0.15; border-radius:50%;}
.why-visual .eyebrow{color:var(--coral-light);}
.why-visual h3{color:#fff; font-size:24px; margin:14px 0 14px;}
.why-visual p{color:rgba(255,255,255,0.65); font-size:14.5px; margin-bottom:24px;}
.why-visual .btn-coral:hover{background:#fff; color:var(--deep); text-decoration:none;}

/* Testimonials */
.testi-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:20px;}
@media (max-width:920px){.testi-grid{grid-template-columns:1fr;}}
.testi-card{background:var(--mint-card); border:1px solid var(--line); padding:28px 24px; border-radius:16px 16px 16px 2px;}
.testi-stars{color:var(--coral); font-size:13px; letter-spacing:2px; margin-bottom:14px;}
.testi-card p{font-size:14px; color:#3C4B46; margin-bottom:16px; font-style:italic;}
.testi-name{font-size:13px; font-weight:700; color:var(--deep);}
.testi-role{font-size:11.5px; color:var(--slate); font-family:'JetBrains Mono', monospace;}
.marquee-wrap{overflow:hidden; padding:10px 0 40px;}
.marquee-track{display:flex; gap:20px; animation:marquee 30s linear infinite; width:max-content;}
.marquee-track:hover{animation-play-state:paused;}
.marquee-item{flex-shrink:0; width:340px; background:#0B3B36; padding:28px 24px; border-radius:14px;}
.marquee-item p{font-size:14px; color:#fff; font-style:italic; margin:0; line-height:1.6;}
@keyframes marquee{0%{transform:translateX(0);}100%{transform:translateX(-50%);}}

/* FAQ */
.faq{background:var(--mint);}
.faq-list{max-width:800px;}
.faq-item{border-bottom:1px solid var(--line);}
.faq-q{display:flex; justify-content:space-between; align-items:center; gap:20px; padding:22px 0; cursor:pointer; font-weight:700; font-size:15px; color:var(--deep);}
.faq-q .plus{font-family:'JetBrains Mono', monospace; font-size:17px; color:var(--coral); transition:transform .25s ease; flex-shrink:0;}
.faq-item.open .faq-q .plus{transform:rotate(45deg);}
.faq-a{max-height:0; overflow:hidden; transition:max-height .3s ease;}
.faq-a p{padding-bottom:22px; font-size:14px; color:var(--slate); max-width:680px;}

/* Page Hero */
.page-hero{background:var(--deep); color:#fff; padding:70px 0 52px; position:relative; overflow:hidden;}
.page-hero::before{content:''; position:absolute; inset:0; background:linear-gradient(115deg, var(--deep) 60%, var(--deep-2) 60.5%); z-index:0;}
.page-hero .inner{position:relative; z-index:2;}
.page-hero .crumb{font-size:13px; color:rgba(255,255,255,0.5); margin-bottom:14px; font-family:'JetBrains Mono', monospace;}
.page-hero h1{color:#fff; font-size:clamp(30px,4.2vw,46px); max-width:720px;}
.page-hero p{color:rgba(255,255,255,0.7); margin-top:16px; max-width:600px; font-size:15px;}

/* Jumpnav */
.jumpnav{background:var(--mint-card); border-bottom:1px solid var(--line); position:sticky; top:69px; z-index:90;}
.jumpnav-inner{display:flex; gap:0; overflow-x:auto; scrollbar-width:none;}
.jumpnav-inner::-webkit-scrollbar{display:none;}
.jumpnav a{font-size:13px; font-weight:600; color:var(--deep); padding:16px 20px; white-space:nowrap; border-bottom:2px solid transparent; font-family:'JetBrains Mono', monospace;}
.jumpnav a:hover{border-bottom-color:var(--coral); color:var(--coral);}

/* Service Groups */
.group-block{padding-top:60px; scroll-margin-top:120px;}
.group-block:first-child{padding-top:0;}
.svc-detail-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:18px; margin-top:30px;}
@media (max-width:800px){.svc-detail-grid{grid-template-columns:1fr;}}
.svc-detail{background:var(--mint-card); border:1px solid var(--line); border-radius:16px 16px 16px 2px; padding:28px 26px; transition:transform .2s ease, box-shadow .2s ease; display:block;}
.svc-detail:hover{transform:translateY(-3px); box-shadow:0 14px 28px rgba(11,59,54,0.08);}
.svc-detail h3{font-size:17px; margin:14px 0 8px;}
.svc-detail p{font-size:13.5px; color:var(--slate);}
.svc-detail .svc-icon{width:36px; height:36px; margin-bottom:6px; background:var(--mint); border-radius:10px; display:flex; align-items:center; justify-content:center;}
.svc-detail .svc-icon svg{width:18px; height:18px; stroke:var(--deep); fill:none; stroke-width:1.7;}
.svc-detail .svc-img{width:calc(100% + 52px); height:180px; border-radius:0; overflow:hidden; margin:0 -26px 16px; margin-top:-28px;}
.svc-detail .svc-img img{width:100%; height:100%; object-fit:cover; display:block;}
.svc-foot{display:flex; align-items:center; justify-content:space-between; margin-top:14px;}
.svc-flag{display:inline-block; font-family:'JetBrains Mono', monospace; font-size:11px; font-weight:700; letter-spacing:0.04em; color:#fff; background:#FF6B4A; padding:4px 10px; border-radius:100px;}
.svc-readmore{font-size:12.5px; font-weight:700; color:#fff; background:#0B3B36; padding:4px 10px; border-radius:100px;}
.svc-detail:hover .svc-readmore{color:#fff; background:var(--deep);}

/* CTA */
.cta-band{background:var(--coral); color:#fff; padding:64px 0;}
.cta-inner{display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap;}
.cta-inner h2{color:#fff; font-size:clamp(24px,3vw,32px); max-width:560px;}
.cta-inner .btn-deep{background:var(--deep);}
.cta-inner:hover .btn-deep{color:#fff;}

/* Contact */
.contact{background:var(--deep-2); color:#fff;}
.contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:64px;}
@media (max-width:920px){.contact-grid{grid-template-columns:1fr; gap:36px;}}
.contact .section-head h2{color:#fff;}
.contact .section-head p{color:rgba(255,255,255,0.6);}
.contact-info{display:flex; flex-direction:column; gap:22px; margin-top:8px;}
.contact-item{display:flex; gap:14px; align-items:flex-start;}
.contact-item .ic{width:38px; height:38px; background:rgba(255,255,255,0.06); border-radius:10px; display:flex; align-items:center; justify-content:center; flex-shrink:0;}
.contact-item .ic svg{width:17px; height:17px; stroke:var(--coral-light); fill:none; stroke-width:1.7;}
.contact-item .label{font-size:11px; text-transform:uppercase; letter-spacing:0.08em; color:rgba(255,255,255,0.4); font-family:'JetBrains Mono', monospace;}
.contact-item .value{font-size:15px; margin-top:3px; color:#fff; font-weight:500;}
.hours-box{margin-top:28px; padding:20px 22px; background:rgba(255,255,255,0.04); border-radius:14px;}
.hours-row{display:flex; justify-content:space-between; font-size:13px; padding:8px 0; border-bottom:1px solid rgba(255,255,255,0.08); color:rgba(255,255,255,0.7);}
.hours-row:last-child{border-bottom:none;}
.hours-row span:last-child{color:var(--coral-light); font-weight:600;}

form.contact-form{background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.1); padding:32px; border-radius:18px;}
.field{margin-bottom:18px;}
.field label{font-size:12px; text-transform:uppercase; letter-spacing:0.06em; color:rgba(255,255,255,0.5); font-family:'JetBrains Mono', monospace;}
#contactForm .field input, #contactForm .field textarea, #contactForm .field select{width:100%; margin-top:8px; padding:13px 14px; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.14); color:#fff; font-family:'IBM Plex Sans'; font-size:14px; border-radius:10px;}
#contactForm .field select option{color:var(--deep); background:#fff;}
#contactForm .field input:focus, #contactForm .field textarea:focus, #contactForm .field select:focus{outline:none; border-color:var(--coral);}
#contactForm .field textarea{resize:vertical; min-height:88px;}
#contactForm .form-row{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
@media (max-width:480px){#contactForm .form-row{grid-template-columns:1fr;}}
#contactForm .submit-btn{width:100%; background:var(--coral); color:#fff; border:none; padding:15px; font-weight:700; font-size:14px; border-radius:100px; cursor:pointer; letter-spacing:0.02em; transition:all .25s ease;}
#contactForm .submit-btn:hover{background:#fff; color:var(--deep);}

/* Footer */
footer{background:var(--deep-2); border-top:1px solid rgba(255,255,255,0.08); padding:50px 0 24px;}
.footer-top{display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:36px; padding-bottom:36px; border-bottom:1px solid rgba(255,255,255,0.08);}
@media (max-width:800px){.footer-top{grid-template-columns:1fr 1fr; gap:28px;}}
.footer-top h5{font-size:11.5px; text-transform:uppercase; letter-spacing:0.08em; color:var(--coral-light); font-family:'JetBrains Mono', monospace; margin-bottom:14px;}
.footer-top .flogo{display:inline-block; max-width:160px; max-height:50px; margin-bottom:10px;}
.footer-top .flogo img{width:100%; height:auto; object-fit:contain; max-height:50px;}
.footer-top p{font-size:13px; color:rgba(255,255,255,0.5); max-width:270px;}
.footer-links li{margin-bottom:9px; color:rgba(255,255,255,0.6); font-size:13px;}
.footer-links a{color:inherit;}
.footer-links a:hover{color:var(--coral-light);}
.footer-inner{display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px; padding-top:20px;}
.footer-inner .fcopy{font-size:12.5px; color:rgba(255,255,255,0.4);}
.footer-social{display:flex; gap:12px;}
.footer-social a{width:32px; height:32px; border:1px solid rgba(255,255,255,0.15); border-radius:50%; display:flex; align-items:center; justify-content:center; text-decoration:none;}
.footer-social a i{font-size:13px; color:rgba(255,255,255,0.65);}
.footer-social a:hover{border-color:var(--coral);}
.footer-social a:hover i{color:var(--coral-light);}

#scroll_up{position:fixed; right:20px; bottom:30px; width:44px; height:44px; line-height:44px; text-align:center; background:var(--coral); color:#fff; border-radius:50%; font-size:18px; cursor:pointer; display:none; z-index:337; transition:all .25s ease;}
#scroll_up:hover{background:var(--deep); color:#fff;}

/* Contact hub (bottom-right) */
.contact-hub{position:fixed;bottom:26px;right:26px;z-index:200;display:flex;flex-direction:column;align-items:flex-end;gap:10px;}
.hub-options{display:flex;flex-direction:column;align-items:flex-end;gap:10px;transition:opacity .35s cubic-bezier(0.4, 0, 0.2, 1), transform .35s cubic-bezier(0.4, 0, 0.2, 1), visibility .35s;}
.contact-hub.collapsed .hub-options{opacity:0;transform:translateY(22px);visibility:hidden;pointer-events:none;}

.hub-option{display:flex;align-items:center;gap:10px;background:#fff;border:1px solid var(--line);border-radius:100px;padding:10px 18px 10px 10px;box-shadow:0 8px 20px rgba(11,59,54,0.12);font-size:13px;font-weight:700;color:var(--deep);opacity:0;transform:translateY(8px);animation:popIn .35s ease forwards;text-decoration:none;}
.hub-option:hover{color:var(--deep);text-decoration:none;}
.hub-option .oicon{width:34px;height:34px;border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.hub-option.wa .oicon{background:#25D366;}
.hub-option.call .oicon{background:var(--deep);}
.hub-option.mail .oicon{background:var(--coral);}
.hub-option .oicon svg{width:16px;height:16px;fill:#fff;}
.hub-option .oicon svg.stroke{fill:none;stroke:#fff;stroke-width:1.8;}
.hub-options .hub-option:nth-child(2){animation-delay:.05s;}
.hub-options .hub-option:nth-child(3){animation-delay:.15s;}
.hub-options .hub-option:nth-child(4){animation-delay:.25s;}
.hub-label{font-family:'JetBrains Mono',monospace;font-size:10.5px;letter-spacing:0.06em;color:var(--slate);background:#fff;border:1px solid var(--line);padding:6px 14px;border-radius:100px;margin-bottom:2px;}
@keyframes popIn{to{opacity:1;transform:translateY(0);}}

.hub-toggle-btn{width:46px;height:46px;border-radius:50%;background:var(--deep);color:#fff;border:none;box-shadow:0 8px 24px rgba(11,59,54,0.18);cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .25s ease;z-index:201;outline:none;border:1px solid rgba(11,59,54,0.1);}
.hub-toggle-btn:hover{background:var(--coral);transform:scale(1.06);box-shadow:0 10px 28px rgba(255,107,74,0.25);}
.hub-toggle-btn svg{width:20px;height:20px;}
.contact-hub:not(.collapsed) .hub-toggle-btn .chat-icon { display: none; }
.contact-hub:not(.collapsed) .hub-toggle-btn .close-icon { display: block; }
.contact-hub.collapsed .hub-toggle-btn .chat-icon { display: block; }
.contact-hub.collapsed .hub-toggle-btn .close-icon { display: none; }

/* Side quote tab */
.side-quote{position:fixed;top:50%;right:0;transform:translateY(-50%);z-index:180;background:var(--coral);color:#fff;writing-mode:vertical-rl;text-orientation:mixed;padding:22px 12px;border-radius:10px 0 0 10px;font-size:13.5px;font-weight:700;letter-spacing:0.04em;box-shadow:-4px 4px 16px rgba(0,0,0,0.12);display:flex;align-items:center;gap:8px;transition:padding .2s ease, background .2s ease;text-decoration:none;}
.side-quote:hover{background:var(--deep);padding-right:18px;color:#fff;text-decoration:none;}
.side-quote svg{width:16px;height:16px;transform:rotate(90deg);}
.reveal{opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease;}
.reveal.in{opacity:1; transform:translateY(0);}
.contact .reveal.in h2{color:#29cbba !important;}
@media (prefers-reduced-motion: reduce){ .reveal, .traj-path, .traj-node{transition:none; animation:none; opacity:1; transform:none; stroke-dashoffset:0;} }

/* Top utility bar */
.topbar{background:var(--deep-2);color:rgba(255,255,255,0.85);font-size:12.5px;}
.topbar-inner{display:flex;justify-content:space-between;align-items:center;padding-top:9px;padding-bottom:9px;}
.topbar-left{display:flex;gap:22px;flex-wrap:wrap;}
.topbar-left a{display:flex;align-items:center;gap:7px;color:rgba(255,255,255,0.85);}
.topbar-left a:hover{color:var(--coral-light);}
.topbar-left svg{width:13px;height:13px;stroke:var(--coral-light);fill:none;stroke-width:1.8;flex-shrink:0;}
.topbar-right{display:flex;gap:16px;align-items:center;}
.topbar-right span{font-family:'JetBrains Mono',monospace;font-size:11px;color:rgba(255,255,255,0.5);}
.topbar-social{display:flex;gap:10px;}
.topbar-social a{width:24px;height:24px;border-radius:50%;background:rgba(255,255,255,0.08);display:flex;align-items:center;justify-content:center;text-decoration:none;}
.topbar-social a i{font-size:11px;color:rgba(255,255,255,0.75);}
.topbar-social a:hover{background:var(--coral);}
.topbar-social a:hover i{color:#fff;}
@media (max-width:920px){.topbar{display:none;}}