@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Noto+Sans+KR:wght@300;400;500;700;800&family=Titillium+Web:wght@400;600;700&display=swap');
/* ===================================================================
   DogWoodAI — Site Clone Stylesheet
   Corporate AI / industrial autonomous-plant aesthetic
   =================================================================== */

/* ---------- Design Tokens ---------- */
:root{
  --navy-900:#06122e;
  --navy-800:#0a1f44;
  --navy-700:#102a5c;
  --navy-600:#173a78;
  --blue-500:#1f6feb;
  --blue-400:#3b82f6;
  --cyan-400:#38bdf8;
  --teal-400:#2dd4bf;
  --coral:#ff6b6b;          /* subtle dogwood accent */
  --ink:#0f172a;
  --slate:#475569;
  --muted:#64748b;
  --line:#e3e9f2;
  --bg:#ffffff;
  --bg-soft:#f5f8fc;
  --bg-softer:#eef3fb;
  --white:#ffffff;

  --radius:14px;
  --radius-sm:10px;
  --radius-lg:22px;
  --shadow-sm:0 1px 3px rgba(16,42,92,.06),0 1px 2px rgba(16,42,92,.04);
  --shadow:0 8px 30px rgba(13,33,73,.08);
  --shadow-lg:0 24px 60px rgba(13,33,73,.16);
  --maxw:1200px;
  --nav-h:64px;

  --ff-sans:"Poppins","Noto Sans KR",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  --black:#05080d;
  --grad-hero:radial-gradient(1200px 600px at 70% -10%,rgba(56,189,248,.25),transparent 60%),
              radial-gradient(900px 500px at 10% 20%,rgba(31,111,235,.28),transparent 55%),
              linear-gradient(160deg,#06122e 0%,#0a1f44 45%,#102a5c 100%);
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:var(--ff-sans);
  color:var(--ink);
  background:var(--bg);
  line-height:1.65;
  font-size:16px;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
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}
:lang(ko),[lang="ko"]{word-break:keep-all}

.container{width:100%;max-width:var(--maxw);margin:0 auto;padding:0 12px}
body:has(.page-hero) .container{max-width:1400px}
.section{padding:96px 0}
.section--soft{background:var(--bg-soft)}
.section--navy{background:var(--navy-800);color:#dce6f7}
.center{text-align:center}

/* ---------- Typography helpers ---------- */
h1,h2,h3,h4{line-height:1.2;font-weight:800;letter-spacing:-.02em;color:var(--ink)}
.section--navy h1,.section--navy h2,.section--navy h3{color:#fff}
.eyebrow{
  display:inline-block;font-size:.78rem;font-weight:700;letter-spacing:.18em;
  text-transform:uppercase;color:var(--blue-500);margin-bottom:0px;
}
.section--navy .eyebrow{color:var(--cyan-400)}
.h-xl{font-size:clamp(2.2rem,5vw,3.6rem)}
.h-lg{font-size:clamp(1.8rem,3.6vw,2.7rem)}
.h-md{font-size:clamp(1.3rem,2.4vw,1.7rem)}
.lead{font-size:1.12rem;color:var(--slate)}
.section--navy .lead{color:#aebfe0}
.muted{color:var(--muted)}
.section-head{max-width:900px;margin:0 auto 40px;text-align:center}
.section-head.left{margin-left:0;text-align:left}
body:has(.page-hero) .section-head{max-width:1040px}
body:has(.page-hero) .split{gap:76px}
body:has(.page-hero) .split p,
body:has(.page-hero) .tile p,
body:has(.page-hero) .tl-item p,
body:has(.page-hero) .contact-info .ci-item span{
  font-size:1.1rem;
  line-height:1.84;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;gap:9px;
  padding:13px 26px;border-radius:999px;font-weight:600;font-size:.96rem;
  transition:.22s ease;white-space:nowrap;cursor:pointer;border:1.5px solid transparent;
}
.btn svg{width:18px;height:18px}
.btn-primary{background:var(--blue-500);color:#fff;box-shadow:0 8px 22px rgba(31,111,235,.32)}
.btn-primary:hover{background:#1559c9;transform:translateY(-2px);box-shadow:0 12px 28px rgba(31,111,235,.42)}
.btn-ghost{border-color:rgba(255,255,255,.35);color:#fff}
.btn-ghost:hover{background:rgba(255,255,255,.1);border-color:#fff}
.btn-outline{border-color:var(--line);color:var(--ink);background:#fff}
.btn-outline:hover{border-color:var(--blue-500);color:var(--blue-500)}
.btn-lg{padding:16px 34px;font-size:1.02rem}

/* ===================================================================
   HEADER / NAV
   =================================================================== */
.site-header{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  background:#fff;border-bottom:1px solid var(--line);transition:.3s;
}
/* transparent variant — used ONLY over the homepage video hero */
.site-header.over-hero{background:transparent;border-bottom-color:transparent;box-shadow:none}
body[data-page="index.html"] .site-header:has(.nav-item:hover){background:#05080d;border-bottom-color:rgba(255,255,255,.12);box-shadow:none}
.nav{height:var(--nav-h);display:flex;align-items:center;justify-content:space-between;gap:20px}
.nav-left{display:flex;align-items:center;gap:30px}
.brand{display:flex;align-items:center}
.brand-logo{height:34px;width:auto;display:block;transition:.3s;filter:brightness(0)} /* BLACK logo on white header */
.site-header.over-hero .brand-logo{filter:none} /* white logo over dark hero */
body[data-page="index.html"] .site-header:has(.nav-item:hover) .brand-logo{filter:none}

.nav-menu{display:flex;align-items:center;gap:26px}
.nav-item{position:static}
.nav-link{
  display:flex;align-items:center;padding:21px 4px;
  font-weight:600;font-size:.92rem;color:#111;transition:.16s;cursor:pointer;letter-spacing:.01em;
}
.nav-link:hover{color:var(--blue-500)}
.site-header.over-hero .nav-link{color:#fff;font-weight:500}
.site-header.over-hero .nav-link:hover{color:#fff}
body[data-page="index.html"] .site-header:has(.nav-item:hover) .nav-link{color:#fff;font-weight:500}
body[data-page="index.html"] .site-header:has(.nav-item:hover) .nav-link:hover{color:#fff}

/* horizontal sub-menu bar under the header (matches the original) */
.dropdown{
  position:absolute;top:100%;left:0;right:0;
  background:#fff;border-bottom:1px solid var(--line);box-shadow:0 16px 28px rgba(13,33,73,.08);
  opacity:0;visibility:hidden;transition:.16s;transform:translateY(-4px);
}
.dropdown.wide{
  max-height:calc(100vh - var(--nav-h));
  overflow-y:auto;
}
.dropdown::before{content:"";position:absolute;top:-14px;left:0;right:0;height:16px} /* hover bridge */
.nav-item:hover .dropdown{opacity:1;visibility:visible;transform:translateY(0)}
.dropdown-grid{display:flex;justify-content:center;gap:46px;padding:15px 24px;flex-wrap:wrap}
.nav-menu .nav-item:first-child .dropdown-grid{transform:translateX(-120px)}
.nav-menu .nav-item:nth-child(6) .dropdown-grid{transform:translateX(320px)}
.nav-rndd .dropdown-grid,
.nav-projects .dropdown-grid{
  --dropdown-cols:5;
  display:grid;
  width:100%;
  max-width:var(--maxw);
  margin:0 auto;
  grid-template-columns:repeat(var(--dropdown-cols), minmax(0, 1fr));
  justify-content:center;
  gap:12px 20px;
  padding:18px 12px;
}
body:has(.page-hero) .nav-rndd .dropdown-grid,
body:has(.page-hero) .nav-projects .dropdown-grid{max-width:1400px}
.nav-projects .dropdown-grid{
  display:grid;
  grid-template-columns:repeat(5, fit-content(260px));
  justify-content:space-between;
  align-items:start;
  gap:14px 28px;
}
.drop-link{display:block;white-space:nowrap}
.nav-rndd .drop-link,
.nav-projects .drop-link{white-space:normal}
.nav-projects .drop-link{
  display:block;
  max-width:260px;
}
.nav-projects .drop-link b{
  font-size:.82rem;
  line-height:1.35;
}
.drop-link b{font-weight:600;font-size:.88rem;color:#222;transition:.14s}
.nav-rndd .drop-link b{display:block;font-size:.82rem;line-height:1.36}
.nav-rndd .drop-sub{
  display:block;
  min-height:1.35em;
  margin-top:4px;
  font-size:.68rem;
  line-height:1.34;
  font-weight:400;
  color:#8a94a6;
}
.drop-link:hover b,
.drop-link:hover .drop-sub{text-decoration:underline;text-underline-offset:5px}
body[data-page="index.html"] .dropdown{background:#05080d;border-bottom-color:rgba(255,255,255,.12);box-shadow:0 16px 28px rgba(0,0,0,.22)}
body[data-page="index.html"] .drop-link b{color:#fff}
body[data-page="index.html"] .nav-rndd .drop-sub{color:rgba(255,255,255,.58)}
body[data-page="index.html"] .drop-link:hover b,
body[data-page="index.html"] .drop-link:hover .drop-sub{text-decoration:underline;text-underline-offset:5px}

.nav-right{display:flex;align-items:center;gap:12px}
/* language switch — plain text next to the logo, active is underlined */
.lang-toggle{display:flex;align-items:center;gap:12px}
.lang-toggle button{padding:0;font-size:.78rem;font-weight:600;color:#9aa0aa;letter-spacing:.02em;transition:.16s}
.lang-toggle button:hover{color:#111}
.lang-toggle button.active{color:#111;text-decoration:underline;text-underline-offset:4px}
.site-header.over-hero .lang-toggle button{color:rgba(255,255,255,.65)}
.site-header.over-hero .lang-toggle button:hover,
.site-header.over-hero .lang-toggle button.active{color:#fff}
body[data-page="index.html"] .site-header:has(.nav-item:hover) .lang-toggle button{color:rgba(255,255,255,.65)}
body[data-page="index.html"] .site-header:has(.nav-item:hover) .lang-toggle button:hover,
body[data-page="index.html"] .site-header:has(.nav-item:hover) .lang-toggle button.active{color:#fff}
/* contact button — thin outlined rectangle */
.nav-cta{display:inline-flex;background:transparent;border:1px solid #2a2a2a;border-radius:4px;
  padding:9px 18px;font-size:.84rem;color:#111;box-shadow:none;font-weight:600}
.nav-cta:hover{background:#111;border-color:#111;color:#fff;transform:none}
.site-header.over-hero .nav-cta{border-color:rgba(255,255,255,.6);color:#fff;background:transparent}
.site-header.over-hero .nav-cta:hover{background:rgba(255,255,255,.14);border-color:#fff;color:#fff}
body[data-page="index.html"] .site-header:has(.nav-item:hover) .nav-cta{border-color:rgba(255,255,255,.6);color:#fff;background:transparent}
body[data-page="index.html"] .site-header:has(.nav-item:hover) .nav-cta:hover{background:rgba(255,255,255,.14);border-color:#fff;color:#fff}

.hamburger{display:none;width:44px;height:44px;border-radius:11px;align-items:center;justify-content:center;border:1px solid var(--line)}
.site-header.over-hero .hamburger{border-color:rgba(255,255,255,.4)}
.hamburger span{display:block;width:20px;height:2px;background:var(--ink);position:relative;transition:.25s}
.hamburger span::before,.hamburger span::after{content:"";position:absolute;left:0;width:20px;height:2px;background:var(--ink);transition:.25s}
.site-header.over-hero .hamburger span,.site-header.over-hero .hamburger span::before,.site-header.over-hero .hamburger span::after{background:#fff}
.hamburger span::before{top:-6px}.hamburger span::after{top:6px}
body.menu-open .hamburger span{background:transparent}
body.menu-open .hamburger span::before{top:0;transform:rotate(45deg)}
body.menu-open .hamburger span::after{top:0;transform:rotate(-45deg)}

/* mobile panel */
.mobile-nav{position:fixed;inset:var(--nav-h) 0 0 0;background:#fff;z-index:999;transform:translateX(100%);
  transition:.3s;overflow-y:auto;padding:18px 22px 60px;display:none}
.mobile-nav.open{transform:translateX(0)}
.m-group{border-bottom:1px solid var(--line)}
.m-head{display:flex;justify-content:space-between;align-items:center;padding:16px 4px;font-weight:700;font-size:1.05rem}
.m-head .chev{width:16px;height:16px;transition:.25s}
.m-group.open .m-head .chev{transform:rotate(180deg)}
.m-sub{max-height:0;overflow:hidden;transition:.3s}
.m-group.open .m-sub{max-height:600px}
.m-sub a{display:block;padding:11px 4px 11px 16px;color:var(--slate);font-size:.95rem;border-left:2px solid var(--line)}
.m-sub a:hover{color:var(--blue-500);border-color:var(--blue-500)}
.m-cta{margin-top:22px;display:flex;flex-direction:column;gap:12px}

/* ===================================================================
   CES POPUP
   =================================================================== */
.ces-popup{position:fixed;left:24px;bottom:24px;z-index:1100;width:340px;max-width:calc(100vw - 48px);
  background:#fff;border-radius:18px;box-shadow:var(--shadow-lg);overflow:hidden;border:1px solid var(--line);
  transform:translateY(20px);opacity:0;transition:.4s;pointer-events:none}
.ces-popup.show{transform:translateY(0);opacity:1;pointer-events:auto}
.ces-banner{position:relative;background:var(--navy-900);line-height:0}
.ces-banner img{width:100%;height:auto;display:block}
.ces-body{padding:16px 18px 18px}
.ces-body p{font-size:.9rem;color:var(--slate);margin-bottom:14px}
.ces-body .btn{width:100%;justify-content:center;padding:11px}
.ces-close{position:absolute;top:10px;right:12px;width:28px;height:28px;border-radius:8px;color:#fff;
  background:rgba(0,0,0,.25);display:grid;place-items:center;font-size:1rem;z-index:2}
.ces-close:hover{background:rgba(0,0,0,.45)}

/* ===================================================================
   HERO
   =================================================================== */
.hero{position:relative;height:100vh;min-height:660px;background:var(--black);color:#fff;overflow:hidden;
  display:flex;align-items:center;justify-content:center}
.hero-video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0}
.hero-overlay{position:absolute;inset:0;z-index:1;
  background:radial-gradient(120% 90% at 50% 35%,rgba(5,8,13,.45),rgba(5,8,13,.86) 90%)}
.hero-inner{position:relative;z-index:3;width:100%;max-width:1200px;padding:0 24px;text-align:center;
  display:flex;flex-direction:column;align-items:center;margin-top:clamp(-100px,-12vh,-52px)}
.hero-logo{width:min(660px,86vw,82vh);height:auto;margin:0 auto clamp(12px,3vh,24px);
  filter:drop-shadow(0 6px 30px rgba(0,0,0,.4));animation:heroFade 1.2s ease both}
.hero-tagline{color:#eaf0fb;font-size:clamp(.94rem,3.5vh,2.2rem);font-weight:300;letter-spacing:.02em;
  animation:heroFade 1.2s .15s ease both}
@keyframes heroFade{from{opacity:0;transform:translateY(18px)}to{opacity:1;transform:none}}

/* Challenge / Creativity / Criticism at the bottom */
.hero-3c{position:absolute;left:0;right:0;bottom:clamp(22px,6vh,46px);z-index:3;animation:heroFade 1.2s .3s ease both}
.hero-3c .wrap{max-width:1500px;margin:0 auto;padding:0 24px;display:grid;grid-template-columns:repeat(3,1fr)}
.hero-3c dl{padding:4px clamp(20px,2.6vw,38px)}
.hero-3c dl.line{border-left:1px solid #fff;border-right:1px solid #fff}
.hero-3c dt{color:#fff;font-weight:600;font-size:clamp(1rem,2.7vh,1.7rem);margin-bottom:clamp(5px,1.6vh,12px);letter-spacing:.01em}
.hero-3c dd{font-size:clamp(.82rem,2.1vh,1.3rem);line-height:clamp(1.36,2.4vh,1.75);color:#fff;font-weight:300}

/* vertical slide dots */
.hero-dots{position:absolute;right:30px;top:50%;transform:translateY(-50%);z-index:4;display:flex;flex-direction:column;gap:14px}
.hero-dots span{width:9px;height:9px;border-radius:50%;border:1.5px solid rgba(255,255,255,.55);
  background:transparent;cursor:pointer;transition:.2s}
.hero-dots span:hover{border-color:#fff}
.hero-dots span.active{background:#fff;border-color:#fff}

/* scroll indicator */
.hero-scroll{position:absolute;left:50%;bottom:170px;transform:translateX(-50%);z-index:4;
  width:26px;height:42px;border:2px solid rgba(255,255,255,.5);border-radius:14px;display:none}
.hero-scroll::after{content:"";position:absolute;left:50%;top:8px;width:4px;height:8px;border-radius:2px;
  background:#fff;transform:translateX(-50%);animation:scrolly 1.6s ease infinite}
@keyframes scrolly{0%{opacity:0;transform:translate(-50%,0)}40%{opacity:1}80%,100%{opacity:0;transform:translate(-50%,12px)}}

/* ===================================================================
   3C — Challenge / Creativity / Criticism
   =================================================================== */
.cards-3{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.c-card{position:relative;background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);
  padding:36px 30px;transition:.25s;overflow:hidden}
.c-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg);border-color:transparent}
.c-card::before{content:"";position:absolute;top:0;left:0;width:100%;height:4px;
  background:linear-gradient(90deg,var(--blue-500),var(--cyan-400));opacity:0;transition:.25s}
.c-card:hover::before{opacity:1}
.c-num{font-size:.8rem;font-weight:800;letter-spacing:.15em;color:var(--blue-500)}
.c-ic{width:60px;height:60px;border-radius:16px;display:grid;place-items:center;margin:14px 0 20px;
  background:linear-gradient(135deg,var(--navy-800),var(--blue-500));color:#fff}
.c-ic svg{width:30px;height:30px}
.c-card h3{font-size:1.35rem;margin-bottom:12px}
.c-card p{color:var(--slate);font-size:.98rem}

/* ===================================================================
   FEATURE / SPLIT blocks
   =================================================================== */
.split{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.split.rev .split-media{order:2}
.feature-list{display:flex;flex-direction:column;gap:18px;margin-top:26px}
.feature-list li{display:flex;gap:14px;align-items:flex-start}
.feature-list .fic{width:30px;height:30px;border-radius:8px;flex:none;display:grid;place-items:center;
  background:var(--bg-softer);color:var(--blue-500)}
.feature-list .fic svg{width:17px;height:17px}
.feature-list b{display:block;font-size:1.02rem}
.feature-list p{font-size:.94rem;color:var(--muted);margin:0}

/* media placeholder block */
.media{position:relative;border-radius:var(--radius-lg);overflow:hidden;background:var(--grad-hero);
  min-height:400px;display:grid;place-items:center;color:#fff;box-shadow:var(--shadow-lg)}
.media .media-ic{width:90px;height:90px;opacity:.9}
.media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0}
.media.has-img::after{content:"";position:absolute;inset:0;z-index:1;background:linear-gradient(180deg,rgba(6,18,46,.1),rgba(6,18,46,.45))}

/* full-width technical diagram band (Approach / Solution) */
.diagram{width:100%;border-radius:4px;overflow:hidden;border:1px solid var(--line);background:#fff;margin-top:15px}
.diagram img{width:100%;height:auto;display:block}
.diagram + .diagram{margin-top:22px}
.diagram-cap{text-align:center;font-size:.86rem;color:var(--muted);margin-top:14px}
.media.soft{background:linear-gradient(135deg,var(--bg-softer),#dbe7fb);color:var(--blue-500)}
.media.video::before{content:"";position:absolute;width:72px;height:72px;border-radius:50%;
  background:rgba(255,255,255,.9);box-shadow:0 8px 30px rgba(0,0,0,.3)}
.media.video::after{content:"";position:absolute;border-left:24px solid var(--blue-500);
  border-top:14px solid transparent;border-bottom:14px solid transparent;margin-left:6px}

/* ===================================================================
   PROJECT CAROUSEL
   =================================================================== */
.carousel{position:relative}
.carousel-track{display:flex;gap:24px;overflow-x:auto;scroll-snap-type:x mandatory;
  padding:6px 4px 26px;scroll-behavior:smooth;-ms-overflow-style:none;scrollbar-width:none}
.carousel-track::-webkit-scrollbar{display:none}
.p-card{scroll-snap-align:start;flex:0 0 360px;max-width:360px;background:#fff;border:1px solid var(--line);
  border-radius:var(--radius-lg);overflow:hidden;transition:.25s;display:flex;flex-direction:column}
.p-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg)}
.p-thumb{height:210px;position:relative;display:grid;place-items:center;color:#fff;overflow:hidden;background:var(--navy-800)}
.p-thumb img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:1;transition:.4s}
.p-card:hover .p-thumb img{transform:scale(1.06)}
.p-thumb::after{content:"";position:absolute;inset:0;z-index:1;background:linear-gradient(180deg,rgba(6,18,46,.15),rgba(6,18,46,.55))}
.p-thumb svg{width:64px;height:64px;opacity:.9;z-index:2}
.p-thumb .p-cat{position:absolute;top:14px;left:14px;z-index:2;font-size:.72rem;font-weight:700;
  background:rgba(255,255,255,.2);border:1px solid rgba(255,255,255,.3);padding:4px 11px;border-radius:999px;letter-spacing:.04em}
.p-body{padding:22px 22px 24px;flex:1;display:flex;flex-direction:column}
.p-body h3{font-size:1.12rem;margin-bottom:10px;line-height:1.35}
.p-body p{font-size:.9rem;color:var(--muted);flex:1}
.p-more{margin-top:16px;font-weight:700;font-size:.88rem;color:var(--blue-500);display:inline-flex;align-items:center;gap:6px}
.p-more svg{width:15px;height:15px;transition:.2s}
.p-card:hover .p-more svg{transform:translateX(4px)}
.carousel-nav{display:flex;gap:10px;justify-content:flex-end;margin-bottom:8px}
.carousel-btn{width:46px;height:46px;border-radius:50%;border:1px solid var(--line);background:#fff;
  display:grid;place-items:center;color:var(--ink);transition:.2s}
.carousel-btn:hover{background:var(--navy-800);color:#fff;border-color:var(--navy-800)}
.carousel-btn svg{width:20px;height:20px}

.g9{background:linear-gradient(135deg,#134e4a,#14b8a6)}

/* ===================================================================
   STATS band
   =================================================================== */
.stats{display:grid;grid-template-columns:repeat(4,1fr);gap:30px;text-align:center}
.stat b{display:block;font-size:clamp(2.2rem,4vw,3rem);font-weight:800;color:#fff;letter-spacing:-.02em}
.stat span{font-size:.92rem;color:#9fb2da}

/* ===================================================================
   PAGE HERO (sub-pages)
   =================================================================== */
.page-hero{background:linear-gradient(rgba(4,10,26,.32),rgba(4,10,26,.32)),url(../assets/main/s_visual00.jpg) center/cover no-repeat,#06122e;
  color:#fff;margin-top:var(--nav-h);height:286px;padding:0;display:flex;align-items:center;position:relative;overflow:hidden}
body[data-banner="1"] .page-hero{background-image:linear-gradient(rgba(4,10,26,.32),rgba(4,10,26,.32)),url(../assets/main/s_visual01.jpg)}
body[data-banner="2"] .page-hero{background-image:linear-gradient(rgba(4,10,26,.32),rgba(4,10,26,.32)),url(../assets/main/s_visual02.jpg)}
body[data-banner="3"] .page-hero{background-image:linear-gradient(rgba(4,10,26,.32),rgba(4,10,26,.32)),url(../assets/main/s_visual03.jpg)}
.page-hero::after{content:none}
.page-hero .container{position:relative;z-index:2;padding:0 28px}
.breadcrumb{display:none}
.page-hero h1{font-size:clamp(2.25rem,3.9vw,3.05rem);color:#fff;margin:0;font-weight:700}
.page-hero p{display:none}

/* sub-nav tabs */
.subnav{background:#fff;border-bottom:1px solid var(--line);position:sticky;top:var(--nav-h);z-index:90}
.subnav .container{display:flex;gap:6px;overflow-x:auto;scrollbar-width:none}
.subnav .container::-webkit-scrollbar{display:none}
.subnav a{padding:17px 16px;font-weight:600;font-size:.92rem;color:var(--muted);border-bottom:2px solid transparent;white-space:nowrap;transition:.18s}
.subnav a:hover{color:var(--ink)}
.subnav a.active{color:var(--blue-500);border-color:var(--blue-500)}

/* ===================================================================
   GENERIC GRID CARDS (solutions, approaches, rndd, projects)
   =================================================================== */
.grid{display:grid;gap:24px}
.grid-2{grid-template-columns:repeat(2,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-4{grid-template-columns:repeat(4,1fr)}

.tile{background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);padding:30px 28px;transition:.25s;display:flex;flex-direction:column}
.tile:hover{transform:translateY(-5px);box-shadow:var(--shadow-lg);border-color:transparent}
.tile-ic{width:56px;height:56px;border-radius:14px;display:grid;place-items:center;margin-bottom:20px;
  background:linear-gradient(135deg,var(--navy-800),var(--blue-500));color:#fff}
.tile-ic svg{width:28px;height:28px}
.tile .tag{font-size:.74rem;font-weight:700;color:var(--blue-500);letter-spacing:.08em;text-transform:uppercase}
.tile h3{font-size:1.22rem;margin:6px 0 12px}
.tile p{color:var(--slate);font-size:.95rem;flex:1}
.tile .tile-more{margin-top:18px;font-weight:700;font-size:.88rem;color:var(--blue-500);display:inline-flex;gap:6px;align-items:center}
.tile .tile-more svg{width:15px;height:15px;transition:.2s}
.tile:hover .tile-more svg{transform:translateX(4px)}

/* numbered list / chips */
.chips{display:flex;flex-wrap:wrap;gap:10px}
.chip{padding:9px 16px;border-radius:999px;background:var(--bg-softer);color:var(--navy-700);font-weight:600;font-size:.9rem;border:1px solid var(--line)}

/* spec list (solution detail) */
.spec{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:14px}
.spec-item{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:24px}
.spec-item .si-ic{width:44px;height:44px;border-radius:11px;display:grid;place-items:center;margin-bottom:14px;
  background:var(--bg-softer);color:var(--blue-500)}
.spec-item .si-ic svg{width:22px;height:22px}
.spec-item h4{font-size:1.05rem;margin-bottom:8px}
.spec-item p{font-size:.9rem;color:var(--muted)}

/* table */
.table-wrap{overflow-x:auto;border:1px solid var(--line);border-radius:var(--radius)}
table{width:100%;border-collapse:collapse;min-width:560px}
th,td{padding:15px 18px;text-align:left;border-bottom:1px solid var(--line);font-size:.92rem}
body:has(.page-hero) th,
body:has(.page-hero) td{font-size:1.06rem}
th{background:var(--bg-soft);font-weight:700;color:var(--navy-800);font-size:.84rem;letter-spacing:.03em}
tr:last-child td{border-bottom:none}
td .badge{display:inline-block;padding:3px 10px;border-radius:999px;font-size:.74rem;font-weight:700}
.badge.b-blue{background:#e0ecff;color:#1559c9}
.badge.b-green{background:#dcfce7;color:#15803d}
.badge.b-amber{background:#fef3c7;color:#b45309}

/* timeline */
.timeline{position:relative;padding-left:30px}
.timeline::before{content:"";position:absolute;left:7px;top:6px;bottom:6px;width:2px;background:var(--line)}
.tl-item{position:relative;padding-bottom:30px}
.tl-item::before{content:"";position:absolute;left:-30px;top:4px;width:16px;height:16px;border-radius:50%;
  background:#fff;border:3px solid var(--blue-500)}
.tl-item .tl-date{font-weight:800;color:var(--blue-500);font-size:.9rem}
.tl-item h4{font-size:1.08rem;margin:3px 0 5px}
.tl-item p{font-size:.93rem;color:var(--muted)}

/* news cards */
.news-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);overflow:hidden;transition:.25s;display:flex;flex-direction:column}
.news-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-lg)}
.news-count{display:flex;justify-content:flex-start;margin:-12px 0 24px}
.news-count span{display:inline-flex;align-items:center;min-height:30px;padding:5px 12px;border-radius:999px;background:#eef4ff;border:1px solid #cfe0ff;color:#0f3f8f;font-size:.82rem;font-weight:900}
.news-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:26px}
.news-list-card{color:inherit;text-decoration:none}
.news-thumb{height:250px;display:grid;place-items:center;color:#fff;background:var(--bg-softer);overflow:hidden}
.news-thumb img{width:100%;height:100%;object-fit:cover;transition:transform .35s ease}
.news-list-card:hover .news-thumb img{transform:scale(1.04)}
.news-body{padding:22px}
.news-body .date{font-size:.8rem;color:var(--muted);font-weight:600}
.news-card-meta{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.news-card-meta .news-category{min-height:22px;padding:3px 8px;font-size:.68rem}
.news-body strong{display:block;font-size:1.12rem;line-height:1.45;color:var(--ink);margin-top:8px}
.news-empty{grid-column:1/-1;color:var(--muted);font-size:1.05rem}
.news-detail-wrap{max-width:980px}
section:has(.news-detail-wrap){padding-top:64px}
.news-back{display:inline-flex;margin-bottom:28px;color:var(--blue-500);font-weight:800}
.news-back::before{content:"";width:7px;height:7px;border-left:2px solid currentColor;border-bottom:2px solid currentColor;transform:rotate(45deg);margin:8px 9px 0 2px}
.news-detail{background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);padding:54px;box-shadow:var(--shadow-sm)}
.news-detail-head{border-bottom:1px solid var(--line);padding-bottom:28px;margin-bottom:34px}
.news-detail-meta{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-bottom:10px}
.news-detail-head .date{color:var(--blue-500);font-size:.92rem;font-weight:800}
.news-category{display:inline-flex;align-items:center;min-height:26px;padding:4px 10px;border-radius:999px;background:#eef4ff;border:1px solid #cfe0ff;color:#0f3f8f;font-size:.76rem;font-weight:900;letter-spacing:.04em;text-transform:uppercase}
.news-detail-head h2{font-size:clamp(1.75rem,2.7vw,2.45rem);letter-spacing:-.02em}
.news-detail-body{display:grid;gap:24px}
.news-detail-body p{color:#374151;font-size:1.08rem;line-height:1.9;white-space:pre-line}
.news-detail-body a{color:var(--blue-500);font-weight:600;text-decoration:underline;text-underline-offset:3px}
.news-detail-media{margin:8px 0}
.news-detail-media img{width:100%;max-width:900px;height:auto;border-radius:8px;border:1px solid var(--line);display:block;margin:0 auto}
.news-gallery{display:grid;gap:5px}
.news-video{position:relative;width:100%;aspect-ratio:16/9;background:#000;border-radius:8px;overflow:hidden}
.news-video iframe{position:absolute;inset:0;width:100%;height:100%;border:0}
.news-detail-empty{padding:50px;text-align:center;background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg)}

/* ===================================================================
   CONTACT
   =================================================================== */
.contact-wrap{display:grid;grid-template-columns:.9fr 1.1fr;gap:48px;align-items:stretch}
.contact-wrap,
.contact-info,
.contact-form,
.form-row,
.field{
  min-width:0;
}
.contact-info .ci-item{display:flex;gap:16px;padding:20px 0;border-bottom:1px solid var(--line)}
.contact-info{
  display:flex;
  flex-direction:column;
}
.contact-info .ci-item:last-child{border-bottom:none}
.ci-ic{width:48px;height:48px;border-radius:13px;flex:none;display:grid;place-items:center;color:#fff;background:linear-gradient(135deg,var(--navy-800),var(--blue-500))}
.ci-ic svg{width:22px;height:22px;color:#fff;stroke:#fff}
.ci-item b{display:block;font-size:.82rem;color:var(--muted);text-transform:uppercase;letter-spacing:.08em;margin-bottom:3px}
.ci-item span{font-size:1.04rem;font-weight:600;color:var(--ink);overflow-wrap:anywhere}
.contact-form{background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);padding:36px;box-shadow:var(--shadow)}
.netlify-honeypot{display:none}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.field{margin-bottom:18px}
.field label{display:block;font-weight:600;font-size:.9rem;margin-bottom:8px}
.field input,.field textarea,.field select{
  width:100%;padding:13px 16px;border:1.5px solid var(--line);border-radius:11px;font-family:inherit;font-size:.96rem;
  background:var(--bg-soft);transition:.18s;color:var(--ink)}
.field input:focus,.field textarea:focus,.field select:focus{outline:none;border-color:var(--blue-500);background:#fff;box-shadow:0 0 0 4px rgba(31,111,235,.1)}
.field textarea{resize:none;min-height:150px}
.char-count{text-align:right;font-size:.78rem;color:var(--muted);margin-top:6px}
.consent{display:flex;gap:11px;align-items:flex-start;font-size:.86rem;color:var(--slate);margin:6px 0 22px}
.consent input{width:18px;height:18px;margin-top:2px;flex:none;accent-color:var(--blue-500)}
.consent a{color:var(--blue-500);font-weight:600;text-decoration:underline}
.form-note{margin-top:16px;font-size:.84rem;color:var(--muted);text-align:center}
.map-box{margin-top:28px;border-radius:var(--radius);overflow:hidden;border:1px solid var(--line);min-height:240px;flex:1;position:relative;
  background:linear-gradient(135deg,#dbe7fb,#eef3fb);display:grid;place-items:center;color:var(--blue-500)}
.map-box iframe{
  width:100%;
  height:100%;
  min-height:240px;
  display:block;
}
.map-box svg{width:46px;height:46px;margin:0 auto 8px}

/* toast */
.toast{position:fixed;bottom:24px;left:50%;transform:translateX(-50%) translateY(80px);background:var(--navy-800);color:#fff;
  padding:15px 26px;border-radius:13px;box-shadow:var(--shadow-lg);z-index:2000;opacity:0;transition:.35s;font-weight:600;display:flex;gap:10px;align-items:center}
.toast.show{transform:translateX(-50%) translateY(0);opacity:1}
.toast svg{width:20px;height:20px;color:var(--teal-400)}

/* ===================================================================
   CTA band
   =================================================================== */
.cta-band{background:var(--grad-hero);color:#fff;border-radius:var(--radius-lg);padding:56px;text-align:center;position:relative;overflow:hidden}
.cta-band h2{color:#fff;margin-bottom:14px}
.cta-band p{color:#b9caea;max-width:560px;margin:0 auto 28px}
.cta-band .btn-group{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer{background:var(--navy-900);color:#9fb2da;padding:26px 0}
.footer-simple{display:flex;justify-content:space-between;align-items:center;gap:24px}
.footer-info{display:flex;flex-direction:column;gap:6px}
.social{display:flex;gap:12px}
.social a{display:grid;place-items:center;transition:.2s}
.social a:hover{transform:translateY(-3px)}
.social img{width:28px;height:28px;object-fit:contain;display:block}
.footer-contact{font-size:.9rem;color:#9fb2da;line-height:1.55;margin:0}
.footer-contact b{color:#cdd9f0;margin-right:8px}
.footer-copy{font-size:.82rem;color:#6f84ad;margin:4px 0 0}

/* ===================================================================
   REVEAL ANIMATION
   =================================================================== */
.reveal{opacity:0;transform:translateY(28px);transition:.7s cubic-bezier(.2,.7,.2,1)}
.reveal.in{opacity:1;transform:none}
.reveal.d1{transition-delay:.08s}.reveal.d2{transition-delay:.16s}.reveal.d3{transition-delay:.24s}.reveal.d4{transition-delay:.32s}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media(max-width:1024px){
  .hero-3c dl{padding:4px 22px}
  .hero-3c dd{font-size:clamp(.82rem,2.1vh,.95rem)}
  .split{grid-template-columns:1fr;gap:36px}
  .split.rev .split-media{order:0}
  .contact-wrap{grid-template-columns:1fr;gap:32px}
  .map-box{
    height:340px;
    flex:none;
  }
}
@media(max-width:1200px){
  .hero{height:auto;min-height:0;padding:clamp(92px,14vh,128px) 0 clamp(46px,8vh,64px);flex-direction:column}
  .hero-inner{margin-top:0}
  .hero-3c{position:relative;left:auto;right:auto;bottom:auto;margin-top:clamp(28px,7vh,46px);width:100%}
  .hero-3c .wrap{grid-template-columns:1fr;gap:clamp(14px,3vh,24px);max-width:560px}
  .hero-3c dl{padding:0;text-align:center}
  .hero-3c dl.line{border:none;border-top:1px solid rgba(255,255,255,.16);border-bottom:1px solid rgba(255,255,255,.16);padding:clamp(14px,3.5vh,24px) 0}
  .hero-3c dt{font-size:clamp(.98rem,2.8vh,1.35rem);margin-bottom:clamp(5px,1.4vh,8px)}
  .hero-3c dd{font-size:clamp(.78rem,2vh,.95rem);line-height:1.56}
  .hero-dots{display:none}
}
@media(max-width:1200px) and (min-width:993px){
  body.fp .panel.hero{
    height:auto;
    min-height:100vh;
    padding:clamp(92px,14vh,128px) 0 clamp(46px,8vh,64px);
    justify-content:center;
    overflow:auto;
  }
}
@media(max-width:900px){
  .nav-menu{display:none}
  .hamburger{display:flex}
  .mobile-nav{display:block}
  .nav-cta{display:none}
  .grid-3,.grid-4{grid-template-columns:repeat(2,1fr)}
  .cards-3{grid-template-columns:1fr}
  .stats{grid-template-columns:repeat(2,1fr);gap:36px}
  .spec{grid-template-columns:1fr}
  .dropdown.wide .dropdown-grid{grid-template-columns:1fr}
}
@media(max-width:768px){
  .hero{padding:clamp(96px,15vh,130px) 0 clamp(42px,8vh,60px)}
  .hero-3c .wrap{max-width:420px}
  .hero-3c dd{font-size:clamp(.76rem,2vh,.85rem)}
  .page-hero{padding:120px 0 56px}
}
@media(max-width:640px){
  .section{padding:64px 0}
  .container{padding:0 18px}
  .grid-2,.grid-3,.grid-4{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
  .contact-form{padding:24px}
  .stats{grid-template-columns:1fr 1fr;gap:28px}
  .cta-band{padding:40px 24px}
  .p-card{flex:0 0 280px}
  .ces-popup{left:12px;right:12px;width:auto;bottom:12px}
  .footer-simple{flex-direction:column;align-items:flex-start}
}

/* ===================================================================
   FULLPAGE (homepage) — wheel-snap panels + right-side dots
   =================================================================== */
.fp-wrap{position:relative}
.panel{position:relative;padding:80px 0}
.panel > .container{width:100%}

/* dark theming for homepage panels */
.panel-dark{background:radial-gradient(1100px 620px at 78% -12%,rgba(31,111,235,.20),transparent 60%),linear-gradient(180deg,#070f1d,#05080d)}
.panel-black,.panel-video{background:#05080d}
.panel-navy{background:var(--navy-800)}
.panel-dark,.panel-black,.panel-navy,.panel-video{color:#e7eefb}
.panel-dark .section-head h2,.panel-black .section-head h2,.panel-navy .section-head h2,.panel-video .section-head h2{color:#fff}
.panel-dark .lead,.panel-black .lead,.panel-navy .lead,.panel-video .lead{color:#aebfe0}
.panel-dark .eyebrow,.panel-black .eyebrow,.panel-navy .eyebrow,.panel-video .eyebrow{color:var(--cyan-400)}
.panel-dark .carousel-btn{background:rgba(255,255,255,.06);border-color:rgba(255,255,255,.18);color:#fff}
.panel-dark .carousel-btn:hover{background:#fff;color:var(--navy-800)}

/* right-side slide dots */
.fp-dots{position:fixed;right:clamp(16px,3vh,26px);top:50%;transform:translateY(-50%);z-index:60;display:none;flex-direction:column;gap:clamp(8px,1.8vh,13px)}
.fp-dots span{width:clamp(7px,1.4vh,10px);height:clamp(7px,1.4vh,10px);border-radius:50%;border:1.5px solid rgba(255,255,255,.55);background:transparent;cursor:pointer;transition:.22s}
.fp-dots span:hover{border-color:#fff;transform:scale(1.18)}
.fp-dots span.active{background:#fff;border-color:#fff}

/* (homepage non-hero panels use the default white header; only the hero is transparent via .over-hero) */

/* globe video panel */
#video .container{max-width:2000px}
.fp-video{position:relative;width:100%;max-width:min(2000px, calc(100vw - 48px), calc((100vh - 190px) * 1.777));margin:0 auto;border-radius:clamp(10px,2vh,16px);overflow:hidden;box-shadow:var(--shadow-lg)}
.fp-video video{width:100%;height:auto;display:block;background:#000;aspect-ratio:16/9}
#video .section-head{margin:0 auto 10px;}
body[data-page="index.html"] .panel .section-head{margin-bottom:clamp(8px,2.4vh,30px)!important}
body[data-page="index.html"] .panel .eyebrow{font-size:clamp(.64rem,1.5vh,.78rem)}
body[data-page="index.html"] .panel .h-lg{font-size:clamp(1.45rem,4.4vh,2.7rem)}
body[data-page="index.html"] .panel .h-md{font-size:clamp(1.08rem,2.8vh,1.7rem)}
body[data-page="index.html"] .panel .lead{font-size:clamp(.84rem,1.9vh,1.12rem);line-height:1.58}

/* footer panel */
.panel-foot{padding:0;background:var(--navy-900)}
.panel-foot .cta-band{margin:0 auto 46px}

/* compact tiles so 8 fit a single screen */
.panel .tile{padding:22px 20px}
.panel .tile-ic{width:46px;height:46px;border-radius:12px;margin-bottom:13px}
.panel .tile-ic svg{width:24px;height:24px}
.panel .tile h3{font-size:1.04rem;margin:4px 0 7px}
.panel .tile p{font-size:.83rem}
.panel .tile .tile-more{margin-top:11px;font-size:.82rem}

/* === activate fullpage on desktop only (JS adds .fp to <body>) === */
@media(min-width:993px){
  html.fp,body.fp{height:100%;overflow:hidden}
  body.fp .fp-wrap{height:100vh;overflow-y:scroll;scroll-snap-type:y mandatory;scrollbar-width:none}
  body.fp .fp-wrap::-webkit-scrollbar{display:none}
  body.fp .panel{height:100vh;min-height:100vh;padding:clamp(72px,11vh,104px) 0 clamp(40px,7vh,64px);display:flex;flex-direction:column;justify-content:center;
    scroll-snap-align:start;scroll-snap-stop:always;overflow:hidden}
  body.fp .panel.hero{padding:0}
  body.fp .panel-foot{height:auto;min-height:0;padding:0;justify-content:flex-start;overflow:visible;scroll-snap-align:end;scroll-snap-stop:normal}
  body.fp .fp-dots{display:flex}
  /* project/contact panels can exceed one screen — let them grow & scroll */
  body.fp .panel#projects1,body.fp .panel#projects2,body.fp .panel#contact{height:auto;min-height:100vh;overflow:visible}
  body.fp[data-page="index.html"] .proj-box .pb-img{aspect-ratio:auto;height:clamp(110px,23vh,245px)}
  body.fp[data-page="index.html"] .contact-card .contact-wrap{gap:clamp(22px,4.5vh,48px)}
  body.fp[data-page="index.html"] .contact-card .field{margin-bottom:clamp(9px,1.9vh,18px)}
  body.fp[data-page="index.html"] .contact-card .field label{font-size:clamp(.74rem,1.55vh,.9rem);margin-bottom:clamp(4px,1vh,8px)}
  body.fp[data-page="index.html"] .contact-card .field input,
  body.fp[data-page="index.html"] .contact-card .field textarea,
  body.fp[data-page="index.html"] .contact-card .field select{padding:clamp(8px,1.7vh,13px) clamp(11px,2vh,16px);font-size:clamp(.78rem,1.7vh,.96rem)}
  body.fp[data-page="index.html"] .contact-card .ci-item{gap:clamp(10px,2vh,16px)}
  body.fp[data-page="index.html"] .contact-card .ci-ic{width:clamp(32px,6vh,44px);height:clamp(32px,6vh,44px)}
  body.fp[data-page="index.html"] .contact-card .ci-ic svg{width:clamp(16px,3vh,22px);height:clamp(16px,3vh,22px)}
  body.fp[data-page="index.html"] .contact-card .ci-item b{font-size:clamp(.68rem,1.35vh,.82rem)}
  body.fp[data-page="index.html"] .contact-card .ci-item div span{font-size:clamp(.82rem,1.8vh,1.04rem);line-height:1.5}
  body.fp[data-page="index.html"] .contact-card .consent{font-size:clamp(.72rem,1.5vh,.86rem);margin:clamp(4px,1vh,6px) 0 clamp(12px,2.4vh,22px)}
  body.fp[data-page="index.html"] .contact-card .btn-lg{padding:clamp(10px,2vh,16px) clamp(22px,4vh,34px);font-size:clamp(.86rem,1.8vh,1.02rem)}
}

@media(max-width:1200px){
  body[data-page="index.html"] .hero{
    height:auto;
    min-height:100vh;
    padding:clamp(92px,14vh,128px) 0 clamp(46px,8vh,64px);
    flex-direction:column;
  }
  body[data-page="index.html"] .hero-inner{
    margin-top:0;
  }
  body[data-page="index.html"] .hero-3c{
    position:relative;
    left:auto;
    right:auto;
    bottom:auto;
    width:100%;
    margin-top:clamp(28px,7vh,46px);
  }
  body[data-page="index.html"] .hero-3c .wrap{
    grid-template-columns:1fr;
    gap:clamp(14px,3vh,24px);
    max-width:560px;
  }
  body[data-page="index.html"] .hero-3c dl{
    padding:0;
    text-align:center;
  }
  body[data-page="index.html"] .hero-3c dl.line{
    border:none;
    border-top:1px solid rgba(255,255,255,.16);
    border-bottom:1px solid rgba(255,255,255,.16);
    padding:clamp(14px,3.5vh,24px) 0;
  }
  body[data-page="index.html"] .hero-3c dt{
    font-size:clamp(.98rem,2.8vh,1.35rem);
    margin-bottom:clamp(5px,1.4vh,8px);
  }
  body[data-page="index.html"] .hero-3c dd{
    font-size:clamp(.78rem,2vh,.95rem);
    line-height:1.56;
  }
  body[data-page="index.html"] .hero-dots,
  body[data-page="index.html"] .fp-dots{
    display:none;
  }
}

@media(max-width:1200px) and (min-width:993px){
  body.fp[data-page="index.html"] .panel.hero{
    height:auto;
    min-height:100vh;
    padding:clamp(92px,14vh,128px) 0 clamp(46px,8vh,64px);
    justify-content:center;
    overflow:auto;
  }
}

/* homepage Business Project grid (matches the real "box-wrap" slides) */
.proj-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(10px,1.8vh,15px)}
.proj-box{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.1);border-radius:14px;overflow:hidden;
  transition:.25s;display:flex;flex-direction:column;text-align:left}
.proj-box:hover{transform:translateY(-5px);border-color:rgba(56,189,248,.45);box-shadow:0 18px 44px rgba(0,0,0,.45)}
.proj-box .pb-img{position:relative;aspect-ratio:16/10.2;overflow:hidden;background:#0a1f44}
.proj-box .pb-img img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:.4s}
.proj-box:hover .pb-img img{transform:scale(1.06)}
.proj-box .pb-body{padding:clamp(10px,2vh,18px) clamp(12px,2.2vh,20px) clamp(11px,2.2vh,20px);flex:1;display:flex;flex-direction:column}
.proj-box .pb-body h3{font-size:clamp(.8rem,1.9vh,1rem);line-height:1.34;color:#fff;margin-bottom:clamp(7px,1.5vh,13px);flex:1;font-weight:600}
.proj-box .pb-more{font-size:clamp(.72rem,1.55vh,.86rem);color:var(--cyan-400);font-weight:600;display:inline-flex;align-items:center;gap:6px}
.proj-box .pb-more::before{content:"—";opacity:.7}

/* homepage Contact panel card */
.contact-card{background:#fff;border-radius:var(--radius-lg);padding:clamp(22px,4vh,34px);box-shadow:var(--shadow-lg);max-width:min(1000px, calc(100vw - 48px));margin:clamp(12px,2.8vh,26px) auto 0}
.contact-card .contact-info h2{color:var(--ink)}
.contact-card .contact-info .ci-item{padding:clamp(8px,1.8vh,14px) 0}
.contact-card .contact-form{box-shadow:none;border:none;padding:0}
.contact-card .contact-form h2,
.contact-card .contact-form label{color:var(--ink)}
.contact-card .contact-form textarea{min-height:clamp(78px,15vh,120px)}
.panel#contact .section-head h2{color:#fff}

@media(max-width:640px){
  .contact-card{
    width:100%;
    padding:22px;
    margin-top:22px;
  }
  .contact-card .contact-wrap{
    gap:22px;
  }
  .contact-card .contact-form{
    width:100%;
    padding:0;
  }
  .contact-card .field input,
  .contact-card .field textarea,
  .contact-card .field select{
    padding-left:14px;
    padding-right:14px;
  }
}

@media(max-width:900px){ .proj-grid{grid-template-columns:1fr 1fr} }
@media(max-width:600px){ .proj-grid{grid-template-columns:1fr} }

/* ===================================================================
   ONE-PAGE SECTION LAYOUT (Approach / Solution / Business Project)
   =================================================================== */
.intro-quote{border-left:4px solid #d9dde6;padding:12px 24px 12px 24px;max-width:none;
  color:#3c4356;font-size:1.23rem;line-height:1.9;margin:64px 0 8px}
.anchor-sec{scroll-margin-top:calc(var(--nav-h) + 8px)}

.detail{display:grid;grid-template-columns:1.08fr .92fr;gap:76px;align-items:flex-start;
  padding:84px 0;border-bottom:1px solid var(--line)}
.detail--stacked{grid-template-columns:1fr;gap:34px}
.detail--stacked .d-fig{margin-top:0}
.detail--stacked .d-fig .frame{max-width:1400px;margin:0 auto}
.detail:last-of-type{border-bottom:none}
.detail.rev .d-fig{order:-1}
.detail h2{font-size:clamp(1.72rem,2.55vw,2.24rem);margin:10px auto;letter-spacing:-.01em}
.uh{display:inline-block;font-size:1.25rem;font-weight:700;color:#111;
  text-decoration:underline;text-underline-offset:7px;text-decoration-thickness:1.5px;margin:30px 0 13px}
.detail p{color:#374151;font-size:1.12rem;line-height:1.9}
.dash-list{display:flex;flex-direction:column;gap:9px}
.dash-list li{position:relative;padding-left:18px;color:#374151;font-size:1.18rem;line-height:1.82}
.dash-list li::before{content:"-";position:absolute;left:2px;color:#374151}
.d-fig{margin-top:8px}
.d-fig .frame{border:1px solid var(--line);background:#fff;padding:0;border-radius:4px;overflow:hidden}
.d-fig img{width:100%;height:auto;display:block}
.d-fig figcaption{text-align:center;font-weight:600;font-size:.98rem;color:#1f2937;margin-top:13px}
@media(max-width:900px){
  .intro-quote{font-size:1.12rem;line-height:1.85;padding:10px 18px 10px 22px;margin-top:48px}
  .detail{grid-template-columns:1fr;gap:30px;padding:52px 0}
  .detail.rev .d-fig{order:0}
}
@media(max-width:1100px) and (min-width:901px){
  .nav-projects .dropdown-grid{
    grid-template-columns:repeat(5, minmax(0, 1fr));
    gap:12px 16px;
  }
  .nav-projects .drop-link{max-width:none}
  .nav-projects .drop-link b{font-size:.78rem;line-height:1.34}
}
@media(max-width:640px){
  .intro-quote{font-size:1.03rem;line-height:1.78;padding:8px 12px 8px 16px;border-left-width:3px;margin-top:36px}
}

/* floating quick buttons (bottom-right) */
.quick{position:fixed;right:clamp(8px,2vh,16px);bottom:clamp(8px,2vh,16px);z-index:950;display:flex;flex-direction:column;align-items:flex-end;gap:clamp(5px,1vh,9px)}
.q-contact{display:flex;align-items:center;gap:9px;background:#1742d8;color:#fff;font-weight:700;
  font-size:clamp(.6rem,1.38vh,.74rem);letter-spacing:.05em;padding:clamp(7px,1.45vh,13px) clamp(10px,2vh,17px);border-radius:4px;box-shadow:0 10px 24px rgba(23,66,216,.38);transition:.2s}
.q-contact:hover{background:#0f33b5;transform:translateY(-2px)}
.q-contact svg{width:clamp(10px,1.6vh,15px);height:clamp(10px,1.6vh,15px)}
.q-top{display:flex;align-items:center;gap:8px;background:#fff;border:1px solid #d9dde6;color:#555;
  font-weight:700;font-size:clamp(.57rem,1.28vh,.7rem);letter-spacing:.05em;padding:clamp(6px,1.25vh,11px) clamp(9px,1.75vh,15px);border-radius:4px;transition:.2s;cursor:pointer}
.q-top:hover{border-color:#9aa3b5;color:#111}
.q-top svg{width:clamp(9px,1.45vh,13px);height:clamp(9px,1.45vh,13px)}

/* IP & Papers tables */
#patent h2,
#publications h2{font-size:clamp(1.72rem,2.55vw,2.24rem);letter-spacing:-.01em}
.ip-table{border-top:2px solid #15171c}
.ip-table th{text-align:center;background:#f6f7f9;color:#15171c}
.ip-table td.c{text-align:center;white-space:nowrap}
.ip-note{font-size:1rem;color:#475569;margin:6px 0 14px}

/* footer logo must stay white on dark footer */
.site-footer .brand-logo{filter:none}

/* ===================================================================
   VIDEO EMBEDS + STACKED MODULE LAYOUT (AI Solution / R&DD)
   =================================================================== */
.yt{position:relative;width:100%;aspect-ratio:16/9;background:#000;border-radius:8px;overflow:hidden;box-shadow:var(--shadow-sm)}
.yt iframe{position:absolute;inset:0;width:100%;height:100%;border:0}
.native-video{width:100%;height:auto;aspect-ratio:16/9;border-radius:6px;display:block;background:#000}

/* DogWoodPro intro: 2 videos left, wheel card right */
.dwp{display:grid;grid-template-columns:1fr 1fr;gap:34px;align-items:stretch;margin:38px 0 10px}
.dwp-col{display:flex;flex-direction:column;gap:22px;justify-content:space-between}
.dwp-card{border:1px solid var(--line);border-radius:12px;background:#fff;padding:26px;box-shadow:var(--shadow-sm)}
.dwp-card .wheel{max-width:510px;margin:0 auto 18px}
.dwp-card .wheel img{width:100%;height:auto}
.dwp-card h3{max-width:550px;margin:0 auto 12px;font-size:clamp(1.35rem,1.45vw,1.5rem);}
.dwp-card p{max-width:550px;margin-left:auto;margin-right:auto;font-size:clamp(1rem,1.11vw,1.08rem);color:#374151;line-height:1.86}
.dwp-card p.arrow{margin-top:10px;color:#1f2937}
@media(max-width:900px){.dwp{grid-template-columns:1fr}}

/* stacked module section: heading + lists full width, diagram below */
.mod{padding:30px 0;border-bottom:1px solid var(--line)}
.mod:last-of-type{border-bottom:none}
.mod h2{font-size:clamp(1.72rem,2.55vw,2.24rem);margin:10px auto;letter-spacing:-.01em}
.mod .diagram{margin-top:30px}
.solution-copy{width:100%;margin-top:18px}
.solution-copy p{color:#374151;font-size:1.12rem;line-height:1.9}
.solution-copy p+p{margin-top:18px}

/* ===================================================================
   ABOUT PAGE — refined company / industries / customers layout
   =================================================================== */
.company-proof-head{margin:48px 0 20px}

/* company principle panel */
.principle-panel{
  height:100%;
  min-height:360px;
  background:linear-gradient(145deg,#06122e 0%,#0a1f44 58%,#173a78 100%);
  border-radius:var(--radius-lg);
  padding:34px;
  color:#fff;
  box-shadow:var(--shadow-lg);
  position:relative;
  overflow:hidden;
}
.principle-panel::before{
  content:"";
  position:absolute;
  width:280px;
  height:280px;
  right:-90px;
  top:-120px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(56,189,248,.28),transparent 66%);
  pointer-events:none;
}
.principle-panel-head{
  position:relative;
  margin-bottom:22px;
}
.principle-panel-head .eyebrow{
  color:var(--cyan-400);
  margin-bottom:8px;
}
.principle-panel-head h3{
  color:#fff;
  font-size:clamp(1.28rem,2.1vw,1.72rem);
  line-height:1.35;
  letter-spacing:-.02em;
}
.principle-list{
  position:relative;
  display:grid;
}
.principle-item{
  display:grid;
  grid-template-columns:44px 1fr;
  gap:16px;
  padding:20px 0;
  border-top:1px solid rgba(255,255,255,.16);
}
.principle-item>span{
  width:34px;
  height:34px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.1);
  color:#7dd3fc;
  font-size:.82rem;
  font-weight:800;
}
.principle-item b{
  display:block;
  color:#fff;
  font-size:1.05rem;
  margin-bottom:6px;
}
.principle-item p,
body:has(.page-hero) .principle-item p{
  color:#cbd8f0;
  font-size:.98rem;
  line-height:1.75;
}

/* leadership — stacked rows */
.leadership-stack{
  display:grid;
  gap:22px;
}
.leader-row{
  display:grid;
  grid-template-columns:300px 1fr;
  gap:130px;
  align-items:flex-start;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:40px;
  box-shadow:var(--shadow-sm);
  min-width:0;
}
.leader-row--text{
  grid-template-columns:1fr;
}
.leader-photo{
  width:300px;
  height:420px;
  border-radius:20px;
  overflow:hidden;
  background:var(--bg-softer);
}
.leader-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.leader-content h3{
  font-size:1.45rem;
  margin-bottom:4px;
}
.leader-content{
  min-width:0;
  overflow-wrap:anywhere;
}
.leader-content .role{
  color:var(--blue-500);
  font-weight:800;
  font-size:1rem;
  margin-bottom:15px;
}
.leader-content ul{
  display:grid;
  gap:8px;
  margin-top:10px;
}
.leader-content li{
  position:relative;
  padding-left:18px;
  color:var(--slate);
  font-size:1.02rem;
  line-height:1.75;
  overflow-wrap:anywhere;
  word-break:normal;
}
body:has(.page-hero) .leader-content li{
  font-size:1.1rem;
  line-height:1.84;
}
.leader-content li::before{
  content:"";
  position:absolute;
  left:0;
  top:.76em;
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--blue-500);
}
.company-proof-grid .tile h3{margin-top:8px}

.industry-portfolio{
  display:grid;
  gap:16px;
  margin-top:24px;
}
.portfolio-row{
  position:relative;
  overflow:hidden;
  display:grid;
  grid-template-columns:170px minmax(0,1fr);
  gap:20px;
  align-items:center;
  padding:22px;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  background:#fff;
  box-shadow:var(--shadow-sm);
}
.portfolio-row::after{
  content:"";
  position:absolute;
  right:-48px;
  bottom:-70px;
  width:170px;
  height:170px;
  border-radius:50%;
  background:rgba(31,111,235,.055);
  pointer-events:none;
}
.portfolio-row--core{
  border-color:rgba(31,111,235,.28);
  background:linear-gradient(135deg,#ffffff 0%,#f2f7ff 100%);
}
.portfolio-row--expand{
  background:linear-gradient(135deg,#ffffff 0%,#f9fbff 100%);
}
.portfolio-label{
  position:relative;
  z-index:1;
  align-self:center;
  min-height:40px;
  display:flex;
  align-items:center;
}
.portfolio-label b{
  display:block;
  color:var(--ink);
  font-size:1.08rem;
  line-height:1.3;
}
.sector-pill-grid{
  position:relative;
  z-index:1;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:13px;
}
.sector-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:9px 15px;
  border-radius:999px;
  background:var(--bg-softer);
  border:1px solid var(--line);
  color:var(--navy-700);
  font-size:.9rem;
  font-weight:800;
  line-height:1.3;
  white-space:nowrap;
}
.portfolio-row--core .sector-pill{
  background:#e8f1ff;
  border-color:#cfe0ff;
  color:#0f3f8f;
}
.portfolio-row--expand .sector-pill{
  background:#fff;
  color:var(--slate);
  font-weight:700;
}
.customer-head{max-width:1080px;margin:0 0 34px;text-align:left}
.customer-split{align-items:center}
.customers-cta{margin-top:26px}
.customers-contact{
  border-radius:4px;
  padding:14px 44px;
  background:#151a1f;
  color:#fff;
  border:1px solid #151a1f;
  font-weight:800;
  letter-spacing:.04em;
}
.customers-contact:hover{
  background:#fff;
  border-color:#151a1f;
  color:#151a1f;
  transform:translateY(-2px);
}
@media(max-width:1200px){
  .leader-row{grid-template-columns:260px 1fr;gap:80px}
  .leader-photo{width:260px;height:364px}
}
@media(max-width:900px){
  .leader-row{grid-template-columns:minmax(180px,220px) minmax(0,1fr);gap:36px}
  .leader-photo{width:220px;height:308px}
  .portfolio-row{grid-template-columns:1fr;gap:14px}
  .portfolio-label{min-height:auto}
  .news-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .news-detail{padding:36px}
}
@media(max-width:760px){
  .leader-row{grid-template-columns:1fr;padding:30px;gap:22px}
  .leader-photo{width:180px;height:252px}
}
@media(max-width:640px){
  .company-proof-head{margin-top:36px}
  .principle-panel{padding:26px;min-height:auto}
  .principle-item{grid-template-columns:38px 1fr;gap:12px}
  .leader-row{padding:24px 20px}
  .leader-photo{width:150px;height:210px}
  .leader-content li,
  body:has(.page-hero) .leader-content li{font-size:.96rem;line-height:1.68;padding-left:15px}
  .sector-pill{white-space:normal;text-align:center}
  .customers-contact{width:100%;justify-content:center}
  .news-grid{grid-template-columns:1fr}
  .news-thumb{height:230px}
  .news-detail{padding:26px}
  .news-detail-head h2{font-size:1.55rem}
}

@media(max-width:480px){
  .btn{
    white-space:normal;
    text-align:center;
    justify-content:center;
  }
  .btn-group .btn,
  .cta-band .btn{
    width:100%;
  }
  .cta-band{
    padding:34px 20px;
  }
  .news-detail{
    padding:22px;
  }
  .tile,
  .c-card,
  .spec-item{
    padding:24px 20px;
  }
  .stats{
    grid-template-columns:1fr;
  }
  body[data-page="index.html"] .hero-3c{
    margin-top:clamp(28px,7vh,46px);
  }
}

/* Low-height laptops: keep subpages compact without changing normal desktop sizing. */
@media(max-height:720px) and (min-width:761px){
  :root{--nav-h:58px}
  .section{padding:clamp(54px,8vh,76px) 0}
  .section-head{margin-bottom:clamp(22px,4vh,34px)}
  .eyebrow{font-size:clamp(.64rem,1.45vh,.78rem)}
  .h-xl{font-size:clamp(1.9rem,5.6vh,3.1rem)}
  .h-lg{font-size:clamp(1.55rem,4.8vh,2.35rem)}
  .h-md{font-size:clamp(1.12rem,3.2vh,1.55rem)}
  .lead{font-size:clamp(.92rem,2.05vh,1.05rem);line-height:1.6}
  .btn{padding:clamp(9px,1.8vh,13px) clamp(18px,3.6vh,26px);font-size:clamp(.82rem,1.75vh,.96rem)}
  .btn-lg{padding:clamp(11px,2.1vh,16px) clamp(22px,4.2vh,34px);font-size:clamp(.88rem,1.9vh,1.02rem)}

  .nav{height:var(--nav-h)}
  .brand-logo{height:clamp(28px,5vh,34px)}
  .nav-menu{gap:clamp(16px,3.3vh,26px)}
  .nav-link{padding:clamp(16px,2.9vh,21px) 4px;font-size:clamp(.8rem,1.75vh,.92rem)}
  .nav-cta{padding:clamp(7px,1.5vh,9px) clamp(13px,2.7vh,18px);font-size:clamp(.74rem,1.55vh,.84rem)}
  .dropdown-grid{gap:clamp(24px,5vh,46px);padding:clamp(10px,2.1vh,15px) 24px}
  .nav-rndd .dropdown-grid,
  .nav-projects .dropdown-grid{gap:clamp(8px,1.8vh,12px) clamp(14px,3vh,20px);padding:clamp(12px,2.4vh,18px) 12px}
  .drop-link b{font-size:clamp(.74rem,1.55vh,.88rem)}
  .nav-rndd .drop-link b,
  .nav-projects .drop-link b{font-size:clamp(.7rem,1.45vh,.82rem)}
  .nav-rndd .drop-sub{font-size:clamp(.6rem,1.25vh,.68rem)}
  .nav-menu .nav-item:nth-child(6) .dropdown-grid{transform:translateX(315px)}

  .page-hero{height:clamp(178px,31vh,286px)}
  .page-hero .container{padding:0 clamp(18px,3.8vh,28px)}
  .page-hero h1{font-size:clamp(1.8rem,5.4vh,2.65rem)}
  .subnav a{padding:clamp(11px,2.2vh,17px) clamp(12px,2.6vh,16px);font-size:clamp(.78rem,1.65vh,.92rem)}

  .grid{gap:clamp(14px,2.8vh,24px)}
  .tile{padding:clamp(20px,4vh,30px) clamp(18px,3.6vh,28px)}
  .tile-ic{width:clamp(42px,7.2vh,56px);height:clamp(42px,7.2vh,56px);margin-bottom:clamp(12px,2.4vh,20px)}
  .tile-ic svg{width:clamp(21px,3.8vh,28px);height:clamp(21px,3.8vh,28px)}
  .tile h3{font-size:clamp(1rem,2.25vh,1.22rem);margin:clamp(4px,1vh,6px) 0 clamp(8px,1.8vh,12px)}
  .tile p{font-size:clamp(.82rem,1.8vh,.95rem);line-height:1.62}
  .tile .tile-more{margin-top:clamp(11px,2.2vh,18px);font-size:clamp(.76rem,1.65vh,.88rem)}
  .chip{padding:clamp(7px,1.5vh,9px) clamp(12px,2.7vh,16px);font-size:clamp(.78rem,1.65vh,.9rem)}

  .intro-quote{font-size:clamp(1rem,2.3vh,1.18rem);line-height:1.72;margin:clamp(36px,6vh,56px) 0 8px;padding:clamp(8px,1.7vh,12px) clamp(16px,3.4vh,24px)}
  .detail{gap:clamp(42px,7.5vh,76px);padding:clamp(54px,8.5vh,84px) 0}
  .detail h2,
  .mod h2,
  #patent h2,
  #publications h2{font-size:clamp(1.5rem,4.2vh,2.05rem)}
  .uh{font-size:clamp(1.05rem,2.35vh,1.25rem);margin:clamp(20px,4vh,30px) 0 clamp(9px,1.9vh,13px)}
  .detail p,
  .solution-copy p{font-size:clamp(.95rem,2.05vh,1.08rem);line-height:1.72}
  .dash-list{gap:clamp(6px,1.3vh,9px)}
  .dash-list li{font-size:clamp(.95rem,2.05vh,1.12rem);line-height:1.65}
  .d-fig figcaption{font-size:clamp(.82rem,1.75vh,.98rem);margin-top:clamp(8px,1.8vh,13px)}

  .spec{gap:clamp(14px,2.8vh,20px)}
  .spec-item{padding:clamp(18px,3.6vh,24px)}
  .spec-item .si-ic{width:clamp(36px,6.5vh,44px);height:clamp(36px,6.5vh,44px);margin-bottom:clamp(10px,2vh,14px)}
  .spec-item h4{font-size:clamp(.92rem,2vh,1.05rem)}
  .spec-item p{font-size:clamp(.8rem,1.7vh,.9rem);line-height:1.58}
  th,td{padding:clamp(10px,2vh,15px) clamp(12px,2.6vh,18px);font-size:clamp(.78rem,1.65vh,.92rem)}
  body:has(.page-hero) th,
  body:has(.page-hero) td{font-size:clamp(.86rem,1.85vh,1.02rem)}

  .news-grid{gap:clamp(16px,3.2vh,26px)}
  .news-body{padding:clamp(16px,3vh,22px)}
  .news-body strong{font-size:clamp(.96rem,2.05vh,1.12rem);line-height:1.38}
  .news-detail{padding:clamp(34px,6vh,54px)}
  .news-detail-head{padding-bottom:clamp(18px,3.8vh,28px);margin-bottom:clamp(22px,4.5vh,34px)}
  .news-detail-body{gap:clamp(16px,3.2vh,24px)}
  .news-detail-body p{font-size:clamp(.92rem,1.95vh,1.08rem);line-height:1.72}
  section:has(.news-detail-wrap){padding-top:clamp(42px,7vh,64px)}

  .contact-wrap{gap:clamp(28px,5vh,48px)}
  .contact-info .ci-item{gap:clamp(11px,2.2vh,16px);padding:clamp(12px,2.4vh,20px) 0}
  .ci-ic{width:clamp(38px,7vh,48px);height:clamp(38px,7vh,48px)}
  .ci-ic svg{width:clamp(17px,3.2vh,22px);height:clamp(17px,3.2vh,22px)}
  .ci-item b{font-size:clamp(.7rem,1.45vh,.82rem)}
  .ci-item span{font-size:clamp(.88rem,1.9vh,1.04rem);line-height:1.48}
  .contact-form{padding:clamp(24px,4.6vh,36px)}
  .form-row{gap:clamp(12px,2.4vh,18px)}
  .field{margin-bottom:clamp(12px,2.4vh,18px)}
  .field label{font-size:clamp(.76rem,1.6vh,.9rem);margin-bottom:clamp(5px,1.1vh,8px)}
  .field input,.field textarea,.field select{padding:clamp(9px,1.9vh,13px) clamp(12px,2.4vh,16px);font-size:clamp(.82rem,1.75vh,.96rem)}
  .field textarea{min-height:clamp(100px,20vh,150px)}
  .consent{font-size:clamp(.74rem,1.55vh,.86rem);margin:clamp(4px,1vh,6px) 0 clamp(14px,2.8vh,22px)}
  .map-box,
  .map-box iframe{min-height:clamp(180px,31vh,240px)}
  .toast{padding:clamp(10px,2vh,15px) clamp(18px,3.6vh,26px);font-size:clamp(.82rem,1.7vh,1rem)}

  .cta-band{padding:clamp(34px,6.5vh,56px) clamp(26px,5vh,56px)}
  .cta-band p{margin-bottom:clamp(18px,3.6vh,28px);font-size:clamp(.9rem,1.9vh,1rem)}
  .site-footer{padding:clamp(18px,3.6vh,26px) 0}
  .footer-simple{gap:clamp(14px,2.8vh,24px)}
  .footer-contact{font-size:clamp(.78rem,1.6vh,.9rem)}
  .footer-copy{font-size:clamp(.7rem,1.4vh,.82rem)}
  .social img{width:clamp(22px,4vh,28px);height:clamp(22px,4vh,28px)}

  .dwp{gap:clamp(22px,4.2vh,34px);margin:clamp(24px,4.8vh,38px) 0 10px}
  .dwp-col{gap:clamp(14px,2.8vh,22px)}
  .dwp-card{padding:clamp(18px,3.6vh,26px)}
  .dwp-card .wheel{max-width:min(510px, 62vh);margin-bottom:clamp(12px,2.4vh,18px)}
  .dwp-card h3{font-size:clamp(1.12rem,2.5vh,1.38rem)}
  .dwp-card p{font-size:clamp(.86rem,1.85vh,1rem);line-height:1.65}
  .mod{padding:clamp(22px,4.2vh,30px) 0}
  .mod .diagram{margin-top:clamp(18px,3.6vh,30px)}
  .solution-copy{margin-top:clamp(12px,2.4vh,18px)}

  .principle-panel{min-height:clamp(280px,48vh,360px);padding:clamp(24px,4.6vh,34px)}
  .principle-panel::before{width:clamp(190px,36vh,280px);height:clamp(190px,36vh,280px)}
  .principle-panel-head{margin-bottom:clamp(14px,2.8vh,22px)}
  .principle-item{grid-template-columns:clamp(34px,6.2vh,44px) 1fr;gap:clamp(10px,2vh,16px);padding:clamp(12px,2.5vh,20px) 0}
  .principle-item>span{width:clamp(28px,5.2vh,34px);height:clamp(28px,5.2vh,34px)}
  .principle-item b{font-size:clamp(.9rem,1.95vh,1.05rem)}
  .principle-item p,
  body:has(.page-hero) .principle-item p{font-size:clamp(.82rem,1.75vh,.98rem);line-height:1.58}
  .leadership-stack{gap:clamp(16px,3vh,22px)}
  .leader-row{grid-template-columns:clamp(230px,38vh,300px) 1fr;gap:clamp(54px,10vh,130px);padding:clamp(28px,5.2vh,40px)}
  .leader-row--text{grid-template-columns:1fr}
  .leader-photo{width:clamp(230px,38vh,300px);height:clamp(322px,53vh,420px)}
  .leader-content h3{font-size:clamp(1.18rem,2.5vh,1.45rem)}
  .leader-content .role{font-size:clamp(.84rem,1.75vh,1rem);margin-bottom:clamp(10px,2vh,15px)}
  .leader-content ul{gap:clamp(5px,1.2vh,8px)}
  .leader-content li,
  body:has(.page-hero) .leader-content li{font-size:clamp(.86rem,1.82vh,1.02rem);line-height:1.6}
  .portfolio-row{grid-template-columns:clamp(130px,24vh,170px) minmax(0,1fr);gap:clamp(14px,2.8vh,20px);padding:clamp(16px,3.2vh,22px)}
  .sector-pill-grid{gap:clamp(8px,1.8vh,13px)}
  .sector-pill{min-height:clamp(32px,5.8vh,40px);padding:clamp(7px,1.5vh,9px) clamp(11px,2.4vh,15px);font-size:clamp(.78rem,1.65vh,.9rem)}
  .customer-head{margin-bottom:clamp(22px,4.4vh,34px)}
  .customers-contact{padding:clamp(10px,2.1vh,14px) clamp(30px,6vh,44px)}
}

@media(max-height:620px) and (min-width:761px){
  .section{padding:48px 0}
  .page-hero{height:168px}
  .page-hero h1{font-size:1.72rem}
  .subnav a{padding:10px 12px}
  .nav-menu .nav-item:nth-child(6) .dropdown-grid{transform:translateX(285px)}
  .detail{padding:46px 0}
  .leader-row{gap:42px}
  .leader-photo{width:210px;height:294px}
}

/* Customer roadmap cards */
.customer-roadmap .tile{position:relative;overflow:hidden}
.customer-roadmap .tile::before{content:"";position:absolute;left:0;right:0;top:0;height:4px;background:linear-gradient(90deg,var(--blue-500),var(--cyan-400));opacity:.9}
.customer-roadmap .tile .tag{margin-top:2px}

/* 404 */
.not-found-page{
  min-height:calc(100svh - 135px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:calc(var(--nav-h) + 28px) 20px 42px;
  background:
    linear-gradient(180deg,#fff 0%,#f6f8fb 58%,#eef3fb 100%);
}
.not-found-panel{
  width:min(860px,100%);
  margin-top:-2vh;
  text-align:center;
}
.not-found-kicker{
  margin:0 0 18px;
  font-family:Poppins, sans-serif;
  font-size:clamp(5.5rem,12vw,9.5rem);
  font-weight:800;
  line-height:.82;
  letter-spacing:0;
  color:var(--blue-500);
}
.not-found-panel h1{
  margin:0;
  font-size:clamp(2.15rem,4.3vw,4rem);
  line-height:1.12;
  color:var(--ink);
}
.not-found-panel p:not(.not-found-kicker){
  margin:20px auto 0;
  max-width:720px;
  color:var(--slate);
  font-size:1.08rem;
  line-height:1.65;
}
.not-found-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
  margin-top:28px;
}
.not-found-actions .btn{
  min-width:132px;
  justify-content:center;
  border-radius:4px;
}
@media(max-width:640px){
  .not-found-page{
    min-height:calc(100svh - 156px);
    padding:calc(var(--nav-h) + 22px) 20px 34px;
  }
  .not-found-panel{
    margin-top:0;
  }
  .not-found-kicker{
    font-size:clamp(4.25rem,24vw,6.5rem);
  }
  .not-found-panel p:not(.not-found-kicker){
    max-width:100%;
  }
  .not-found-actions{
    flex-direction:column;
    align-items:stretch;
  }
  .not-found-actions .btn{
    width:100%;
  }
}
