:root {
  --navy:    #0c1f3f;
  --navy2:   #132a55;
  --navy3:   #1a3670;
  --orange:  #e8560a;
  --orange2: #ff6d2a;
  --sky:     #0099cc;
  --bg:      #f5f6f8;
  --white:   #ffffff;
  --ink:     #0c1f3f;
  --mid:     #5a6a84;
  --soft:    #9aaabb;
  --line:    #e4e8ef;
  --font-disp: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Instrument Sans', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 68px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center;
  padding: 0 6%;
  justify-content: space-between;
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(12,31,63,.08); }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 36px; height: 36px;
  background: var(--orange); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-disp); font-weight: 800; color: white; font-size: 16px;
}
.brand-name { font-family: var(--font-disp); font-weight: 700; font-size: 17px; color: var(--navy); letter-spacing: -.4px; }
.brand-name b { color: var(--orange); }
.nav-menu { display: flex; align-items: center; gap: 30px; }
.nav-menu > li { position: relative; }
.nav-menu a.top-link { font-size: 14px; font-weight: 500; color: var(--mid); transition: color .2s; display: flex; align-items: center; gap: 5px; }
.nav-menu a.top-link:hover { color: var(--navy); }
.nav-cta { background: var(--navy) !important; color: white !important; padding: 10px 22px; border-radius: 8px; font-weight: 600 !important; transition: background .2s !important; }
.nav-cta:hover { background: var(--navy3) !important; }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: 100%; left: -20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
  width: 300px;
  box-shadow: 0 20px 50px rgba(12,31,63,.14);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .2s;
  display: grid; grid-template-columns: 1fr; gap: 2px;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(4px); }
.dropdown a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 9px;
  font-size: 13.5px; font-weight: 500; color: var(--navy);
  transition: background .15s;
}
.dropdown a:hover { background: var(--bg); }
.dd-icon { width: 30px; height: 30px; border-radius: 8px; background: rgba(232,86,10,.08); display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 108px 6% 0;
  font-size: 13px; color: var(--soft);
  display: flex; align-items: center; gap: 8px;
}
.breadcrumb a { color: var(--mid); transition: color .15s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { opacity: .5; }
.breadcrumb .current { color: var(--navy); font-weight: 600; }

/* ── PAGE HERO (sub-pages) ── */
.page-hero {
  padding: 28px 6% 64px;
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 56px; align-items: center;
  position: relative; overflow: hidden;
}
.page-hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,86,10,.08); border: 1px solid rgba(232,86,10,.2);
  border-radius: 100px; padding: 6px 16px;
  font-size: 12px; font-weight: 600; color: var(--orange);
  margin-bottom: 22px; letter-spacing: .3px;
}
.page-hero h1 {
  font-family: var(--font-disp);
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 800; letter-spacing: -2px; line-height: 1.06;
  color: var(--navy); margin-bottom: 20px;
}
.page-hero h1 .acc { color: var(--orange); }
.page-hero p.lead {
  font-size: 17.5px; color: var(--mid); line-height: 1.75;
  max-width: 520px; margin-bottom: 32px;
}
.page-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.page-hero-visual {
  display: flex; align-items: center; justify-content: center;
}
.page-hero-visual svg { width: 100%; height: auto; max-width: 460px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: white;
  padding: 14px 28px; border-radius: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  transition: all .25s; box-shadow: 0 6px 20px rgba(232,86,10,.25);
  border: none; cursor: pointer;
}
.btn-primary:hover { background: #d04a06; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(232,86,10,.3); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--line); color: var(--navy);
  padding: 14px 28px; border-radius: 9px;
  font-family: var(--font-body); font-weight: 500; font-size: 15px;
  transition: all .25s; background: transparent;
}
.btn-outline:hover { border-color: var(--navy); background: var(--navy); color: white; transform: translateY(-2px); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(255,255,255,.2); color: rgba(255,255,255,.75);
  padding: 13px 26px; border-radius: 9px;
  font-weight: 500; font-size: 15px;
  transition: all .25s; background: transparent; white-space: nowrap;
}
.btn-outline-white:hover { border-color: rgba(255,255,255,.5); color: white; background: rgba(255,255,255,.08); }

/* ── SECTION HELPERS ── */
.section { padding: 88px 6%; }
.section-tight { padding: 64px 6%; }
.section-white { background: var(--white); }
.section-bg { background: var(--bg); }
.section-navy { background: var(--navy); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 14px;
}
.eyebrow::before { content: ''; display: block; width: 18px; height: 2px; background: var(--orange); border-radius: 2px; }
.eyebrow.on-navy { color: var(--orange2); }
.section-heading {
  font-family: var(--font-disp);
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 800; letter-spacing: -1.5px; line-height: 1.12; color: var(--navy); margin-bottom: 16px;
}
.section-heading .acc { color: var(--orange); }
.section-heading.light { color: white; }
.section-heading.light .acc { color: var(--orange2); }
.section-body { font-size: 16.5px; color: var(--mid); line-height: 1.75; max-width: 580px; }
.section-body.light { color: rgba(255,255,255,.6); }
.section-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }

/* ── FEATURE GRID (generic 3/4 col) ── */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.feat-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.feat-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 16px; padding: 28px; transition: all .25s;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(12,31,63,.08); border-color: rgba(232,86,10,.25); }
.feat-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(232,86,10,.09); border: 1px solid rgba(232,86,10,.16);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px;
}
.feat-card h3 { font-family: var(--font-disp); font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.feat-card p { font-size: 13.8px; color: var(--mid); line-height: 1.6; }

/* ── PROCESS STEPS ── */
.process-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; margin-top: 44px; }
.process-step { background: var(--white); padding: 30px 26px; position: relative; }
.process-num { font-family: var(--font-disp); font-weight: 800; font-size: 13px; color: var(--orange); letter-spacing: 1px; margin-bottom: 14px; }
.process-step h4 { font-family: var(--font-disp); font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--mid); line-height: 1.6; }

/* ── TWO COL CONTENT + VISUAL ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-visual { display: flex; align-items: center; justify-content: center; }
.split-visual svg { width: 100%; max-width: 420px; height: auto; }
.check-list { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.check-item { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: var(--ink); }
.check-mark {
  width: 22px; height: 22px; border-radius: 6px; flex-shrink: 0;
  background: rgba(232,86,10,.1); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; margin-top: 1px;
}

/* ── TECH STACK PILLS ── */
.stack-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.stack-pill {
  display: flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 10px; padding: 10px 18px;
  font-family: var(--font-disp); font-weight: 700; font-size: 14px; color: var(--navy);
}
.stack-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }

/* ── STAT STRIP ── */
.stat-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; margin-top: 44px; }
.stat-strip .cell { background: var(--white); padding: 28px; text-align: center; }
.stat-strip .num { font-family: var(--font-disp); font-weight: 800; font-size: 34px; color: var(--navy); letter-spacing: -1px; }
.stat-strip .num em { color: var(--orange); font-style: normal; }
.stat-strip .lbl { font-size: 12.5px; color: var(--mid); margin-top: 4px; }

/* ── RELATED SERVICES ── */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.related-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 24px; transition: all .2s; display: flex; flex-direction: column; gap: 10px;
}
.related-card:hover { border-color: rgba(232,86,10,.3); transform: translateY(-3px); box-shadow: 0 10px 26px rgba(12,31,63,.08); }
.related-card .r-icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(232,86,10,.09); display: flex; align-items: center; justify-content: center; font-size: 19px; }
.related-card h4 { font-family: var(--font-disp); font-size: 14.5px; font-weight: 700; color: var(--navy); }
.related-card span.desc { font-size: 12.5px; color: var(--mid); line-height: 1.5; }
.related-card .r-link { font-size: 12.5px; font-weight: 600; color: var(--orange); margin-top: auto; }

/* ── CTA BAND ── */
.cta-band { padding: 72px 6%; background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta-band-inner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy3) 100%);
  border-radius: 22px; padding: 56px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band-inner::before {
  content: ''; position: absolute; top: -100px; right: -60px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,86,10,.15) 0%, transparent 70%);
}
.cta-band-inner h2 { position: relative; z-index: 1; font-family: var(--font-disp); font-size: clamp(24px,3vw,38px); font-weight: 800; color: white; letter-spacing: -1px; margin-bottom: 14px; }
.cta-band-inner p { position: relative; z-index: 1; color: rgba(255,255,255,.55); font-size: 15.5px; max-width: 480px; margin: 0 auto 28px; }
.cta-band-btns { position: relative; z-index: 1; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 64px 6% 32px; color: rgba(255,255,255,.6); }
.footer-top { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 52px; margin-bottom: 52px; }
.footer-brand-mark { width: 40px; height: 40px; background: var(--orange); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-family: var(--font-disp); font-weight: 800; color: white; font-size: 17px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.75; max-width: 280px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.soc-btn { width: 36px; height: 36px; border-radius: 8px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.05); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); font-size: 13px; font-weight: 700; transition: all .2s; }
.soc-btn:hover { border-color: var(--orange); color: var(--orange); background: rgba(232,86,10,.1); }
.footer-col h5 { font-family: var(--font-disp); font-weight: 700; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; }
.footer-bottom span { color: var(--orange2); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; }

/* ── HOME-ONLY: HERO ── */
.home-hero {
  background: var(--white); padding: 148px 6% 0; overflow: hidden; position: relative;
}
.home-hero::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 80px; background: var(--bg);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.hero-mesh { position: absolute; top: 0; right: 0; width: 55%; height: 100%; background: radial-gradient(ellipse 70% 60% at 80% 30%, rgba(232,86,10,.07) 0%, transparent 60%), radial-gradient(ellipse 50% 50% at 60% 70%, rgba(0,153,204,.06) 0%, transparent 60%); pointer-events: none; }
.hero-dots { position: absolute; top: 0; right: 0; width: 50%; height: 100%; background-image: radial-gradient(circle, rgba(12,31,63,.1) 1px, transparent 1px); background-size: 28px 28px; mask-image: radial-gradient(ellipse 80% 80% at 70% 40%, black 30%, transparent 80%); pointer-events: none; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: flex-end; position: relative; z-index: 1; }
.hero-left { padding-bottom: 80px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; background: rgba(232,86,10,.08); border: 1px solid rgba(232,86,10,.2); border-radius: 100px; padding: 6px 16px; font-size: 12.5px; font-weight: 600; color: var(--orange); letter-spacing: .5px; margin-bottom: 28px; }
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); animation: blink 2s ease infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero-title { font-family: var(--font-disp); font-size: clamp(40px, 5.5vw, 76px); font-weight: 800; line-height: 1.02; letter-spacing: -2.5px; color: var(--navy); margin-bottom: 24px; }
.hero-title .hl { color: var(--orange); position: relative; display: inline-block; }
.hero-title .hl::after { content: ''; position: absolute; bottom: 4px; left: 0; right: 0; height: 3px; background: var(--orange); border-radius: 2px; opacity: .3; }
.hero-sub { font-size: 18px; line-height: 1.72; color: var(--mid); max-width: 480px; margin-bottom: 40px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-right { position: relative; align-self: flex-end; }
.hero-card-main { background: var(--navy); border-radius: 20px 20px 0 0; padding: 36px 36px 48px; position: relative; overflow: hidden; min-height: 380px; }
.hcm-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 80% 20%, rgba(232,86,10,.2) 0%, transparent 60%), radial-gradient(ellipse 50% 50% at 20% 80%, rgba(0,153,204,.12) 0%, transparent 60%); }
.hcm-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 32px 32px; }
.hcm-inner { position: relative; z-index: 1; }
.hcm-label { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 20px; }
.hcm-title { font-family: var(--font-disp); font-weight: 800; font-size: 32px; line-height: 1.15; letter-spacing: -1px; color: white; margin-bottom: 28px; }
.hcm-title span { color: var(--orange2); }
.hcm-metrics { display: flex; gap: 0; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; overflow: hidden; }
.hcm-metric { flex: 1; padding: 18px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,.08); }
.hcm-metric:last-child { border-right: none; }
.hcm-num { font-family: var(--font-disp); font-weight: 800; font-size: 28px; color: white; line-height: 1; }
.hcm-num span { color: var(--orange2); }
.hcm-lbl { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 4px; font-weight: 500; }
.hero-pill { position: absolute; background: white; border-radius: 12px; padding: 10px 16px; display: flex; align-items: center; gap: 10px; box-shadow: 0 8px 32px rgba(12,31,63,.14); z-index: 2; }
.pill-icon { font-size: 22px; line-height: 1; }
.pill-text { font-size: 12px; font-weight: 600; color: var(--navy); line-height: 1.3; }
.pill-sub { font-size: 11px; color: var(--mid); font-weight: 400; }
.pill-1 { right: -24px; top: 40px; }
.pill-2 { left: -28px; bottom: 80px; }

.stats-bar { background: var(--white); border-bottom: 1px solid var(--line); padding: 0 6%; }
.stats-inner { display: flex; align-items: stretch; border-top: 1px solid var(--line); }
.stat-cell { flex: 1; padding: 36px 24px; border-right: 1px solid var(--line); text-align: center; transition: background .2s; }
.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: rgba(232,86,10,.03); }
.stat-big { font-family: var(--font-disp); font-weight: 800; font-size: 44px; line-height: 1; letter-spacing: -2px; color: var(--navy); }
.stat-big em { color: var(--orange); font-style: normal; }
.stat-desc { font-size: 13.5px; color: var(--mid); margin-top: 6px; }

/* about box */
.about-grid { display: grid; grid-template-columns: 5fr 6fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-box { background: var(--navy); border-radius: 20px; padding: 56px 44px; position: relative; overflow: hidden; }
.about-box-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 70% at 80% -10%, rgba(232,86,10,.25), transparent 60%); }
.about-box-inner { position: relative; z-index: 1; }
.about-years-num { font-family: var(--font-disp); font-weight: 800; font-size: 108px; line-height: .9; letter-spacing: -6px; color: white; margin-bottom: 8px; }
.about-years-label { font-size: 17px; font-weight: 500; color: rgba(255,255,255,.5); letter-spacing: .3px; margin-bottom: 36px; }
.about-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 100px; padding: 6px 14px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,.7); }
.about-float1 { position: absolute; right: -20px; top: 32px; background: white; border-radius: 14px; padding: 14px 18px; box-shadow: 0 12px 40px rgba(12,31,63,.14); display: flex; align-items: center; gap: 10px; }
.float-flag { font-size: 22px; }
.float-info { font-size: 12px; font-weight: 600; color: var(--navy); line-height: 1.4; }
.float-info span { display: block; font-weight: 400; color: var(--mid); font-size: 11px; }
.about-float2 { position: absolute; left: -20px; bottom: 40px; background: var(--orange); border-radius: 14px; padding: 14px 18px; box-shadow: 0 12px 40px rgba(232,86,10,.3); color: white; }
.float2-num { font-family: var(--font-disp); font-weight: 800; font-size: 24px; line-height: 1; }
.float2-label { font-size: 11px; opacity: .8; margin-top: 3px; font-weight: 500; }
.feature-list { display: flex; flex-direction: column; gap: 14px; }
.feature-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px 20px; background: var(--bg); border: 1px solid var(--line); border-radius: 12px; transition: all .25s; }
.feature-item:hover { border-color: rgba(232,86,10,.3); transform: translateX(6px); }
.feature-icon { width: 40px; height: 40px; flex-shrink: 0; background: rgba(232,86,10,.09); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.feature-text strong { font-size: 14px; font-weight: 600; display: block; margin-bottom: 3px; }
.feature-text span { font-size: 13px; color: var(--mid); line-height: 1.55; }

/* services grid on home */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.svc-card { background: var(--white); padding: 32px 28px; transition: all .25s; cursor: default; position: relative; display: block; }
.svc-card::after { content: ''; position: absolute; bottom: 0; left: 28px; width: 0; height: 3px; background: var(--orange); border-radius: 2px; transition: width .3s; }
.svc-card:hover { background: #fefcfb; transform: translateY(-2px); z-index: 1; box-shadow: 0 8px 32px rgba(12,31,63,.1); }
.svc-card:hover::after { width: calc(100% - 56px); }
.svc-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(232,86,10,.08); border: 1px solid rgba(232,86,10,.15); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px; transition: all .25s; }
.svc-card:hover .svc-icon { background: rgba(232,86,10,.15); }
.svc-card h3 { font-family: var(--font-disp); font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--navy); letter-spacing: -.3px; }
.svc-card p { font-size: 13.5px; color: var(--mid); line-height: 1.65; }
.svc-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 18px; font-size: 13px; font-weight: 600; color: var(--orange); transition: gap .2s; }
.svc-link:hover { gap: 9px; }
.svc-card.wide { grid-column: span 2; display: flex; align-items: center; gap: 32px; background: linear-gradient(120deg, #fff8f5 0%, #ffffff 60%); }
.svc-card.wide .svc-icon { width: 60px; height: 60px; font-size: 30px; flex-shrink: 0; }

.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-points { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }
.why-point { display: flex; align-items: flex-start; gap: 18px; }
.wp-num { font-family: var(--font-disp); font-weight: 800; font-size: 13px; color: var(--orange2); padding-top: 3px; min-width: 22px; letter-spacing: .5px; }
.wp-body strong { font-size: 15px; font-weight: 600; color: white; display: block; margin-bottom: 4px; }
.wp-body span { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.6; }
.why-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-tile { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 28px 22px; transition: all .25s; }
.why-tile:hover { background: rgba(255,255,255,.09); border-color: rgba(232,86,10,.3); }
.why-tile-num { font-family: var(--font-disp); font-weight: 800; font-size: 42px; line-height: 1; color: white; letter-spacing: -1.5px; }
.why-tile-num em { color: var(--orange2); font-style: normal; }
.why-tile h4 { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.8); margin: 8px 0 6px; }
.why-tile p { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.55; }

.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.case-card { background: var(--white); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; transition: all .3s; }
.case-card:hover { box-shadow: 0 20px 56px rgba(12,31,63,.1); transform: translateY(-6px); border-color: rgba(232,86,10,.2); }
.case-top { padding: 30px 30px 24px; background: linear-gradient(135deg, #f0f4ff 0%, #fff8f4 100%); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.case-top::before { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(232,86,10,.06), transparent 70%); }
.case-sector { display: inline-flex; align-items: center; gap: 6px; background: rgba(232,86,10,.1); border: 1px solid rgba(232,86,10,.2); border-radius: 6px; padding: 4px 12px; font-size: 11px; font-weight: 600; color: var(--orange); letter-spacing: .5px; margin-bottom: 14px; text-transform: uppercase; }
.case-name { font-family: var(--font-disp); font-size: 26px; font-weight: 800; color: var(--navy); letter-spacing: -1px; margin-bottom: 8px; }
.case-fullname { font-size: 12.5px; color: var(--mid); font-weight: 500; line-height: 1.4; }
.case-body { padding: 24px 30px 30px; }
.case-body p { font-size: 14px; color: var(--mid); line-height: 1.65; margin-bottom: 20px; }
.case-kpis { display: flex; gap: 22px; flex-wrap: wrap; }
.kpi-val { font-family: var(--font-disp); font-weight: 800; font-size: 22px; color: var(--sky); letter-spacing: -.5px; }
.kpi-lbl { font-size: 11.5px; color: var(--mid); margin-top: 2px; }
.cases-note { margin-top: 40px; font-size: 13px; color: var(--soft); line-height: 1.7; max-width: 640px; }

.partners-section { padding: 72px 6%; background: var(--bg); }
.partners-label { text-align: center; font-size: 13px; font-weight: 600; color: var(--soft); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 44px; }
.partners-track { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.partner-tag { display: flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 12px 22px; font-family: var(--font-disp); font-weight: 700; font-size: 15px; color: var(--navy); transition: all .2s; letter-spacing: -.3px; }
.partner-tag:hover { border-color: rgba(232,86,10,.3); box-shadow: 0 6px 20px rgba(12,31,63,.08); transform: translateY(-3px); }
.partner-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); opacity: .6; }

.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.loc-card { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 32px; transition: all .25s; display: grid; grid-template-columns: auto 1fr; gap: 0 22px; align-items: start; }
.loc-card:hover { box-shadow: 0 12px 40px rgba(12,31,63,.08); transform: translateY(-4px); border-color: rgba(232,86,10,.25); }
.loc-flag-wrap { grid-row: span 3; width: 52px; height: 52px; border-radius: 14px; background: var(--bg); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: 28px; }
.loc-country { font-family: var(--font-disp); font-size: 19px; font-weight: 800; color: var(--navy); letter-spacing: -.5px; margin-bottom: 4px; }
.loc-city { font-size: 12px; font-weight: 600; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.loc-addr { font-size: 13.5px; color: var(--mid); line-height: 1.6; }
.loc-phone { font-size: 13px; color: var(--mid); margin-top: 8px; }

.cta-final { background: var(--white); border-top: 1px solid var(--line); padding: 96px 6%; text-align: center; }
.cta-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-email { margin-top: 22px; font-size: 14px; color: var(--soft); display: flex; align-items: center; gap: 6px; justify-content: center; }
.cta-email a { color: var(--sky); font-weight: 500; transition: color .2s; }
.cta-email a:hover { color: var(--orange); }

/* contact page form */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-form { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 36px; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; border: 1.5px solid var(--line); border-radius: 9px; padding: 12px 14px;
  font-family: var(--font-body); font-size: 14px; color: var(--ink); background: var(--bg);
  transition: border-color .2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--orange); background: white; }
.form-row textarea { resize: vertical; min-height: 110px; }
.contact-info-card { background: var(--navy); border-radius: 18px; padding: 40px; color: white; position: relative; overflow: hidden; }
.contact-info-card::before { content:''; position:absolute; top:-80px; right:-80px; width:280px; height:280px; border-radius:50%; background: radial-gradient(circle, rgba(232,86,10,.18), transparent 70%); }
.cinfo-item { display: flex; gap: 16px; margin-bottom: 26px; position: relative; z-index: 1; }
.cinfo-icon { width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0; }
.cinfo-item strong { display: block; font-size: 14px; margin-bottom: 3px; }
.cinfo-item span { font-size: 13.5px; color: rgba(255,255,255,.55); line-height: 1.6; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card.wide { grid-column: span 2; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cases-grid { grid-template-columns: 1fr 1fr; }
  .page-hero { grid-template-columns: 1fr; }
  .page-hero-visual { order: -1; max-width: 320px; margin: 0 auto; }
  .feat-grid, .feat-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .process-row { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .about-grid, .why-grid, .locations-grid { grid-template-columns: 1fr; }
  .cases-grid, .services-grid, .feat-grid, .feat-grid.cols-4, .process-row, .related-grid, .stat-strip { grid-template-columns: 1fr; }
  .svc-card.wide { grid-column: span 1; flex-direction: column; }
  .stats-inner { flex-wrap: wrap; }
  .stat-cell { flex: 0 0 50%; border-right: none; border-bottom: 1px solid var(--line); }
  .why-visual { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .section { padding: 64px 6%; }
}
