/* CrosKal Technologies — shared stylesheet */
:root {
  --navy-900: #071634;
  --navy-800: #0b224b;
  --navy-700: #0f2d63;
  --navy-600: #16407f;
  --blue-500: #2563eb;
  --blue-400: #3b82f6;
  --blue-300: #60a5fa;
  --violet-500: #7c3aed;
  --violet-400: #8b5cf6;
  --violet-300: #c4b5fd;
  --sky-50: #eef4ff;
  --ink: #0f172a;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, .08), 0 1px 2px rgba(15, 23, 42, .04);
  --shadow-md: 0 12px 32px -8px rgba(15, 23, 42, .16), 0 4px 12px -4px rgba(15, 23, 42, .08);
  --shadow-lg: 0 32px 64px -16px rgba(11, 34, 75, .28);
  --container: 1200px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Sora', var(--font-sans);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; letter-spacing: -0.02em; color: var(--ink); font-weight: 700; }
h1 { font-size: clamp(2.2rem, 4.8vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.2rem; letter-spacing: -0.01em; }
p { color: var(--slate-600); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans);
  font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue-500);
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--blue-400); border-radius: 2px; }
.eyebrow.on-dark { color: var(--blue-300); }
.eyebrow.on-dark::before { background: var(--blue-300); }
.eyebrow.centered { justify-content: center; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-sans);
  font-weight: 600; font-size: .98rem;
  padding: 14px 26px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-primary { position: relative; overflow: hidden; background: linear-gradient(120deg, var(--blue-500), var(--violet-500)); background-size: 200% 100%; background-position: 0% 0; color: #fff; box-shadow: 0 10px 24px -8px rgba(37, 99, 235, .55); }
.btn-primary:hover { background-position: 100% 0; transform: translateY(-2px); box-shadow: 0 16px 30px -8px rgba(124, 58, 237, .5); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .35); }
.btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .08); transform: translateY(-2px); }
.btn-dark { background: var(--navy-800); color: #fff; }
.btn-dark:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-dark { background: #fff; color: var(--navy-800); border-color: var(--slate-300); }
.btn-outline-dark:hover { border-color: var(--navy-700); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* ---------- Header ---------- */
.topbar { background: var(--navy-900); color: rgba(255, 255, 255, .82); font-size: .85rem; }
.topbar .container { display: flex; gap: 26px; align-items: center; height: 42px; }
.topbar a { display: inline-flex; align-items: center; gap: 8px; transition: color .15s ease; }
.topbar a:hover { color: #fff; }
.topbar .spacer { flex: 1; }
.topbar .socials { display: flex; gap: 16px; }
.topbar svg { width: 15px; height: 15px; flex-shrink: 0; }

header.site {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--slate-100);
  transition: box-shadow .2s ease;
}
header.site.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; height: 124px; gap: 40px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; color: var(--navy-800); letter-spacing: -0.02em; }
.brand .mark {
  width: 40px; height: 40px; border-radius: 11px;
  background: linear-gradient(140deg, var(--blue-400), var(--navy-700));
  display: grid; place-items: center; flex-shrink: 0;
  box-shadow: 0 6px 16px -4px rgba(37, 99, 235, .5);
}
.brand .mark svg { width: 22px; height: 22px; }
.brand small { display: block; font-family: var(--font-sans); font-weight: 600; font-size: .62rem; letter-spacing: .34em; text-transform: uppercase; color: var(--slate-500); margin-top: 2px; }
.brand-logo { height: 96px; width: auto; display: block; transition: transform .2s ease; image-rendering: -webkit-optimize-contrast; }
.brand:hover .brand-logo { transform: scale(1.03); }
.footer-logo-card { display: inline-flex; align-items: center; background: #fff; padding: 16px 26px; border-radius: 16px; box-shadow: var(--shadow-md); margin-bottom: 18px; }
.footer-logo-card img { height: 68px; width: auto; display: block; }
.nav-links { display: flex; gap: 34px; margin-left: auto; align-items: center; }
.nav-links a { font-weight: 500; font-size: .97rem; color: var(--slate-600); position: relative; padding: 6px 0; transition: color .15s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--navy-800); }
.nav-links > li > a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: linear-gradient(90deg, var(--blue-500), var(--violet-500)); border-radius: 2px; transition: width .2s ease; }
.nav-links > li > a:hover::after, .nav-links > li > a.active::after { width: 100%; }
.nav .btn { margin-left: 8px; padding: 11px 22px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy-800); border-radius: 2px; transition: .2s; }
.nav-toggle span + span { margin-top: 6px; }

/* ---------- Header dropdown ---------- */
.has-dropdown { position: relative; }
.dropdown-toggle { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.dropdown-toggle .chev { width: 13px; height: 13px; transition: transform .25s ease; flex-shrink: 0; }
.has-dropdown.open .dropdown-toggle .chev,
.has-dropdown:hover .dropdown-toggle .chev { transform: rotate(180deg); }
.dropdown-panel {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  width: 620px; max-width: 82vw;
  padding-top: 18px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s ease, visibility .22s;
  z-index: 200;
}
.has-dropdown:hover .dropdown-panel,
.has-dropdown.open .dropdown-panel {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.dropdown-panel-inner {
  background: #fff; border-radius: 18px;
  border: 1px solid var(--slate-100);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  transform: translateY(-8px);
  transition: transform .22s ease;
}
.has-dropdown:hover .dropdown-panel-inner,
.has-dropdown.open .dropdown-panel-inner {
  transform: translateY(0);
}
.dropdown-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.dropdown-item { display: flex; align-items: flex-start; gap: 12px; padding: 11px 12px; border-radius: 12px; transition: background .18s ease, transform .18s ease; }
.dropdown-item:hover { background: var(--sky-50); transform: translateX(2px); }
.dropdown-item .ic { width: 36px; height: 36px; border-radius: 10px; background: var(--sky-50); display: grid; place-items: center; flex-shrink: 0; }
.dropdown-item:hover .ic { background: #fff; }
.dropdown-item .ic svg { width: 18px; height: 18px; color: var(--blue-500); }
.dropdown-item b { display: block; font-size: .93rem; color: var(--ink); font-weight: 600; }
.dropdown-item small { display: block; font-size: .8rem; color: var(--slate-500); margin-top: 2px; line-height: 1.4; }
.dropdown-footer { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--slate-100); display: flex; justify-content: flex-end; }
.dropdown-cta { display: inline-flex; align-items: center; gap: 6px; font-size: .88rem; font-weight: 600; color: var(--blue-500); }
.dropdown-cta:hover { color: var(--violet-500); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  background: radial-gradient(900px 500px at 82% -20%, var(--navy-600), transparent 60%), linear-gradient(160deg, var(--navy-800) 0%, var(--navy-900) 100%);
  color: #fff;
  padding: 84px 0 76px;
}
.page-hero::after {
  content: ""; 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: 52px 52px;
  -webkit-mask-image: radial-gradient(700px 380px at 15% 10%, #000, transparent 75%);
  mask-image: radial-gradient(700px 380px at 15% 10%, #000, transparent 75%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin: 18px 0 16px; max-width: 20ch; }
.page-hero p { color: rgba(255, 255, 255, .78); font-size: 1.1rem; max-width: 60ch; }
.crumbs { font-size: .86rem; color: rgba(255, 255, 255, .6); margin-bottom: 6px; }
.crumbs a:hover { color: #fff; }
.crumbs span { color: var(--blue-300); }

/* ---------- Home hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(1100px 600px at 78% -10%, var(--navy-600), transparent 60%), linear-gradient(160deg, var(--navy-800) 0%, var(--navy-900) 100%);
  color: #fff;
}
.hero::after {
  content: ""; 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: 52px 52px;
  -webkit-mask-image: radial-gradient(700px 400px at 20% 20%, #000, transparent 75%);
  mask-image: radial-gradient(700px 400px at 20% 20%, #000, transparent 75%);
}
.hero .blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .35; pointer-events: none; z-index: 1; }
.hero .blob-a { width: 420px; height: 420px; background: var(--blue-500); top: -140px; right: 6%; animation: floatBlob 12s ease-in-out infinite; }
.hero .blob-b { width: 340px; height: 340px; background: var(--violet-500); bottom: -120px; left: 2%; animation: floatBlob 14s ease-in-out infinite reverse; }
@keyframes floatBlob { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-24px, 26px) scale(1.08); } }
.badge-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px 7px 8px;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px; font-size: .82rem; font-weight: 600; color: rgba(255, 255, 255, .92);
  margin-bottom: 18px; backdrop-filter: blur(6px);
}
.badge-pill span.dot { width: 8px; height: 8px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 0 rgba(52, 211, 153, .6); animation: pulseDot 2.2s ease-in-out infinite; }
@keyframes pulseDot { 0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, .55); } 70% { box-shadow: 0 0 0 7px rgba(52, 211, 153, 0); } 100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); } }
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding-top: 92px; padding-bottom: 100px; }
.hero h1 { color: #fff; margin: 20px 0 22px; }
.hero h1 .accent { background: linear-gradient(120deg, var(--blue-300), var(--violet-300)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: 1.14rem; color: rgba(255, 255, 255, .78); max-width: 33ch; }
.hero .cta-row { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero .trust { margin-top: 40px; display: flex; align-items: center; gap: 18px; color: rgba(255, 255, 255, .6); font-size: .88rem; }
.hero .trust strong { color: #fff; font-family: var(--font-display); }
.hero .trust .divider { width: 1px; height: 34px; background: rgba(255, 255, 255, .18); }

.hero-panel {
  position: relative;
  background: linear-gradient(150deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px;
  padding: 28px;
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-lg);
}
.hero-panel h4 { font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--blue-300); font-family: var(--font-sans); font-weight: 700; margin-bottom: 18px; }
.hero-panel ul { display: grid; gap: 12px; }
.hero-panel li { display: flex; align-items: flex-start; gap: 12px; color: rgba(255, 255, 255, .9); font-size: .96rem; }
.hero-panel li svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; color: var(--blue-300); }
.hero-panel .metric-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 22px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .12); }
.hero-panel .metric b { display: block; font-family: var(--font-display); font-size: 1.7rem; color: #fff; }
.hero-panel .metric span { font-size: .82rem; color: rgba(255, 255, 255, .62); }

/* ---------- Tech marquee ---------- */
.tech-strip { background: var(--slate-100); padding: 40px 0; border-bottom: 1px solid #e6ebf2; }
.tech-strip-label { text-align: center; font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--slate-500); margin-bottom: 22px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; width: max-content; gap: 48px; animation: marqueeScroll 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--slate-500); white-space: nowrap; opacity: .8; transition: opacity .2s ease, color .2s ease; }
.marquee-track span:hover { opacity: 1; color: var(--navy-800); }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- Industry chips ---------- */
.industry-chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 36px; }
.industry-chips span { padding: 10px 20px; border-radius: 999px; background: #fff; border: 1px solid var(--slate-100); box-shadow: var(--shadow-sm); font-size: .92rem; font-weight: 600; color: var(--navy-800); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.industry-chips span:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--blue-300); }

/* ---------- Section shell ---------- */
section { padding: 96px 0; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin: 16px 0 14px; }
.section-head p { font-size: 1.06rem; }
.bg-slate { background: var(--slate-100); }

/* ---------- Stats ---------- */
.stats { background: var(--slate-100); padding: 64px 0; }
.stats .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { background: #fff; border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); border: 1px solid var(--slate-100); }
.stat b { font-family: var(--font-display); font-size: 2.4rem; color: var(--navy-800); display: block; letter-spacing: -0.03em; }
.stat span { font-size: .95rem; color: var(--slate-500); font-weight: 500; }

/* ---------- About ---------- */
.about .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-visual { position: relative; border-radius: var(--radius); overflow: hidden; background: linear-gradient(150deg, var(--navy-700), var(--navy-900)); min-height: 420px; display: grid; place-items: center; padding: 40px; }
.about-visual .ring { position: absolute; border: 1px solid rgba(255, 255, 255, .12); border-radius: 50%; }
.about-visual .ring.r1 { width: 280px; height: 280px; }
.about-visual .ring.r2 { width: 420px; height: 420px; }
.about-visual .ring.r3 { width: 560px; height: 560px; }
.about-visual .badge-core {
  position: relative; z-index: 2; text-align: center; color: #fff;
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px; padding: 30px 34px; backdrop-filter: blur(4px);
}
.about-visual .badge-core svg { width: 44px; height: 44px; color: var(--blue-300); margin: 0 auto 12px; }
.about-visual .badge-core b { font-family: var(--font-display); font-size: 1.3rem; display: block; }
.about-visual .badge-core span { font-size: .85rem; color: rgba(255, 255, 255, .65); }
.about-list { display: grid; gap: 18px; margin-top: 28px; }
.about-list li { display: flex; gap: 14px; align-items: flex-start; }
.about-list svg { width: 22px; height: 22px; color: var(--blue-500); flex-shrink: 0; margin-top: 3px; }
.about-list b { color: var(--ink); font-weight: 600; }

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.mv-card { border: 1px solid var(--slate-100); border-radius: var(--radius); padding: 28px; background: #fff; box-shadow: var(--shadow-sm); }
.mv-card .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--sky-50); display: grid; place-items: center; margin-bottom: 16px; }
.mv-card .ic svg { width: 22px; height: 22px; color: var(--blue-500); }
.mv-card h3 { margin-bottom: 8px; }

/* ---------- Services ---------- */
.services-dark { background: var(--navy-900); color: #fff; }
.services-dark h2, .services-dark h3 { color: #fff; }
.services-dark .section-head p { color: rgba(255, 255, 255, .7); }
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.svc-card {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
  display: block; color: inherit;
}
.svc-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(140deg, var(--blue-400), var(--violet-500));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .25s ease; pointer-events: none;
}
.svc-card:hover { transform: translateY(-6px); border-color: rgba(96, 165, 250, .55); background: linear-gradient(160deg, rgba(96, 165, 250, .12), rgba(255, 255, 255, .02)); box-shadow: 0 20px 44px -16px rgba(37, 99, 235, .35); }
.svc-card:hover::before { opacity: 1; }
.svc-card .ic { transition: transform .3s ease; }
.svc-card:hover .ic { transform: scale(1.08) rotate(-4deg); }
.svc-card .num { font-family: var(--font-display); font-size: .9rem; color: var(--blue-300); font-weight: 700; letter-spacing: .1em; }
.svc-card .ic { width: 52px; height: 52px; border-radius: 14px; background: rgba(96, 165, 250, .16); display: grid; place-items: center; margin: 16px 0 18px; }
.svc-card .ic svg { width: 26px; height: 26px; color: var(--blue-300); }
.svc-card h3 { margin-bottom: 10px; font-size: 1.16rem; }
.svc-card p { color: rgba(255, 255, 255, .68); font-size: .95rem; }
.svc-card .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-weight: 600; font-size: .88rem; color: var(--blue-300); }

/* ---------- Services detail (services.html) ---------- */
.svc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 64px 0; border-bottom: 1px solid var(--slate-100); scroll-margin-top: 180px; }
.svc-detail:nth-child(even) .svc-detail-media { order: 2; }
.svc-detail-media {
  border-radius: var(--radius); min-height: 300px; padding: 36px;
  background: linear-gradient(150deg, var(--navy-700), var(--navy-900));
  display: grid; place-items: center;
}
.svc-detail-media .ic { width: 84px; height: 84px; border-radius: 20px; background: rgba(96, 165, 250, .18); display: grid; place-items: center; }
.svc-detail-media .ic svg { width: 40px; height: 40px; color: var(--blue-300); }
.svc-detail .num { font-family: var(--font-display); font-weight: 700; color: var(--blue-500); letter-spacing: .1em; font-size: .9rem; }
.svc-detail h2 { font-size: 1.7rem; margin: 10px 0 12px; }
.svc-detail ul { margin-top: 18px; display: grid; gap: 10px; }
.svc-detail li { display: flex; gap: 12px; align-items: flex-start; color: var(--slate-600); font-size: .97rem; }
.svc-detail li svg { width: 20px; height: 20px; color: var(--blue-500); flex-shrink: 0; margin-top: 3px; }

/* ---------- Why us ---------- */
.why .grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }
.why-points { display: grid; gap: 22px; }
.why-point { display: flex; gap: 18px; align-items: flex-start; padding: 22px; border: 1px solid var(--slate-100); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); transition: box-shadow .2s ease, transform .2s ease; }
.why-point:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.why-point .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--sky-50); display: grid; place-items: center; flex-shrink: 0; }
.why-point .ic svg { width: 23px; height: 23px; color: var(--blue-500); }
.why-point h3 { font-size: 1.08rem; margin-bottom: 6px; }
.why-point p { font-size: .95rem; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(130deg, var(--blue-500), var(--navy-700)); color: #fff; }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; max-width: 20ch; }
.cta-band p { color: rgba(255, 255, 255, .82); margin-top: 10px; max-width: 44ch; }

/* ---------- Contact ---------- */
.contact .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-info { display: grid; gap: 20px; align-content: start; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; padding: 22px; border: 1px solid var(--slate-100); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.contact-item .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--sky-50); display: grid; place-items: center; flex-shrink: 0; }
.contact-item .ic svg { width: 22px; height: 22px; color: var(--blue-500); }
.contact-item b { display: block; color: var(--ink); margin-bottom: 3px; }
.contact-item span, .contact-item a { color: var(--slate-600); font-size: .96rem; }
.contact-item a:hover { color: var(--blue-500); }

form.enquiry { background: #fff; border: 1px solid var(--slate-100); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-md); }
form.enquiry .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; font-family: inherit; font-size: .96rem; color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--slate-300); border-radius: var(--radius-sm);
  background: #fff; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--blue-400); box-shadow: 0 0 0 3px rgba(59, 130, 246, .16); }
.field textarea { resize: vertical; min-height: 120px; }
form.enquiry .btn { width: 100%; margin-top: 6px; }
.form-note { font-size: .82rem; color: var(--slate-500); margin-top: 12px; text-align: center; }

.map-embed { margin-top: 8px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--slate-100); box-shadow: var(--shadow-sm); }
.map-embed iframe { display: block; width: 100%; height: 320px; border: 0; }

/* ---------- Footer ---------- */
footer.site { background: var(--navy-900); color: rgba(255, 255, 255, .66); padding: 72px 0 32px; font-size: .93rem; }
footer.site .grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; }
footer.site .brand { color: #fff; margin-bottom: 16px; }
footer.site .brand small { color: rgba(255, 255, 255, .5); }
footer.site p { color: rgba(255, 255, 255, .6); font-size: .93rem; }
footer.site h4 { color: #fff; font-family: var(--font-sans); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
footer.site li { margin-bottom: 11px; }
footer.site a:hover { color: #fff; }
footer.site .socials { display: flex; gap: 12px; margin-top: 18px; }
footer.site .socials a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(255, 255, 255, .16); display: grid; place-items: center; transition: .18s; }
footer.site .socials a:hover { background: var(--blue-500); border-color: var(--blue-500); }
footer.site .socials svg { width: 17px; height: 17px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); margin-top: 52px; padding-top: 26px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .86rem; color: rgba(255, 255, 255, .45); }

/* ---------- Reveal ---------- */
.js-anim .reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.js-anim .reveal.in { opacity: 1; transform: none; }
.svc-grid .reveal:nth-child(1), .stats .reveal:nth-child(1), .why-points .reveal:nth-child(1), .mv-grid .reveal:nth-child(1) { transition-delay: .02s; }
.svc-grid .reveal:nth-child(2), .stats .reveal:nth-child(2), .why-points .reveal:nth-child(2), .mv-grid .reveal:nth-child(2) { transition-delay: .09s; }
.svc-grid .reveal:nth-child(3), .stats .reveal:nth-child(3), .why-points .reveal:nth-child(3) { transition-delay: .16s; }
.svc-grid .reveal:nth-child(4), .stats .reveal:nth-child(4), .why-points .reveal:nth-child(4) { transition-delay: .23s; }
.svc-grid .reveal:nth-child(5) { transition-delay: .3s; }
.svc-grid .reveal:nth-child(6) { transition-delay: .37s; }
.svc-grid .reveal:nth-child(7) { transition-delay: .44s; }
.svc-grid .reveal:nth-child(8) { transition-delay: .51s; }
@media (prefers-reduced-motion: reduce) { .js-anim .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } .hero .blob, .badge-pill .dot, .marquee-track { animation: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero .container { grid-template-columns: 1fr; gap: 44px; padding-top: 64px; padding-bottom: 72px; }
  .hero p.lead { max-width: 52ch; }
  .about .grid, .why .grid, .contact .grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { min-height: 320px; order: -1; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .stats .grid { grid-template-columns: repeat(2, 1fr); }
  footer.site .grid { grid-template-columns: 1fr 1fr; }
  .svc-detail { grid-template-columns: 1fr; gap: 28px; scroll-margin-top: 130px; }
  .svc-detail:nth-child(even) .svc-detail-media { order: -1; }
  .svc-detail-media { min-height: 200px; }
}
@media (max-width: 720px) {
  .topbar .socials { display: none; }
  .topbar .container { justify-content: space-between; gap: 12px; }
  .topbar .spacer { flex: 0; }
  .nav { height: 84px; }
  .brand-logo { height: 60px; }
  .nav-links { display: none; position: absolute; top: 84px; left: 0; right: 0; flex-direction: column; background: #fff; padding: 16px 24px 24px; gap: 4px; border-bottom: 1px solid var(--slate-100); box-shadow: var(--shadow-md); margin-left: 0; max-height: calc(100vh - 84px); overflow-y: auto; }
  .nav-links.open { display: flex; }
  .nav-links > li > a { padding: 12px 0; border-bottom: 1px solid var(--slate-100); display: block; }
  .nav .btn.desktop-cta { display: none; }
  .nav-toggle { display: block; }
  .has-dropdown { width: 100%; }
  .dropdown-toggle { justify-content: space-between; width: 100%; border-bottom: 1px solid var(--slate-100); }
  .dropdown-panel {
    position: static; width: 100%; max-width: 100%; transform: none;
    padding-top: 0; display: none;
    opacity: 1; visibility: visible; pointer-events: auto;
  }
  .dropdown-panel-inner {
    background: none; border: 0; border-radius: 0; box-shadow: none;
    padding: 4px 0 8px 12px; transform: none;
  }
  .has-dropdown.open .dropdown-panel { display: block; }
  .has-dropdown:hover .dropdown-panel { display: none; }
  .has-dropdown.open:hover .dropdown-panel { display: block; }
  .dropdown-grid { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
  .page-hero { padding: 60px 0 52px; }
  .svc-grid, .mv-grid { grid-template-columns: 1fr; }
  form.enquiry .row { grid-template-columns: 1fr; }
  .cta-band .container { flex-direction: column; align-items: flex-start; }
}
