/* =========================================================
   Rozi Bano Tech Labs — Design System v2 (light theme only)
   Headings: Space Grotesk · Body: DM Sans
   ========================================================= */

:root {
  color-scheme: light;

  /* brand */
  --primary: #2563eb;
  --primary-700: #1d4ed8;
  --primary-50: #eff4ff;
  --primary-100: #dbe6fe;
  --violet: #7c3aed;
  --violet-50: #f5f0ff;
  --accent: #f97316;
  --accent-50: #fff4ec;
  --green: #16a34a;
  --green-50: #ecfdf3;
  --pink: #db2777;
  --pink-50: #fdf2f8;
  --grad: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  --grad-soft: linear-gradient(135deg, #eff4ff 0%, #f5f0ff 100%);

  /* neutrals */
  --ink-900: #0b1220;
  --ink-800: #1e293b;
  --ink-700: #334155;
  --ink-500: #5b6b82;
  --ink-300: #c5cedb;
  --line: #e6eaf2;
  --bg: #ffffff;
  --bg-soft: #f6f8fc;

  /* shape & depth */
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --shadow-xs: 0 1px 2px rgba(11, 18, 32, .05);
  --shadow-sm: 0 2px 8px rgba(11, 18, 32, .06);
  --shadow: 0 12px 32px -8px rgba(11, 18, 32, .12);
  --shadow-lg: 0 30px 60px -20px rgba(37, 50, 110, .25);
  --shadow-primary: 0 12px 28px -8px rgba(37, 99, 235, .55);

  --container: 1220px;
  --header-h: 76px;
  --font-head: "Space Grotesk", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-700);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--primary); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--primary-700); }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink-900); line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.025em; font-weight: 700; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
button { font-family: inherit; }
:focus-visible { outline: 3px solid rgba(37, 99, 235, .55); outline-offset: 3px; border-radius: 8px; }
::selection { background: var(--primary-100); color: var(--ink-900); }

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

.skip-link { position: absolute; left: 12px; top: -80px; z-index: 300; background: var(--primary); color: #fff; padding: 10px 16px; border-radius: var(--r-sm); }
.skip-link:focus { top: 12px; color: #fff; }

.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 26px; border-radius: 999px;
  font: 600 15.5px/1 var(--font-body); letter-spacing: .01em;
  border: 1.5px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform .25s var(--ease); }
.btn:hover svg.arrow { transform: translateX(3px); }
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-primary); }
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 18px 34px -10px rgba(37, 99, 235, .6); }
.btn-light { background: #fff; color: var(--ink-900); border-color: var(--line); box-shadow: var(--shadow-xs); }
.btn-light:hover { color: var(--primary); border-color: var(--primary-100); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-white { background: #fff; color: var(--primary-700); }
.btn-white:hover { color: var(--primary-700); transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(0,0,0,.35); }
.btn-outline-white { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.18); color: #fff; transform: translateY(-2px); }
.btn-whatsapp { background: #16a34a; color: #fff; box-shadow: 0 12px 26px -10px rgba(22,163,74,.6); }
.btn-whatsapp:hover { background: #15803d; color: #fff; transform: translateY(-2px); }
.btn-sm { min-height: 42px; padding: 0 18px; font-size: 14.5px; }
.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 15px; }
.link-arrow svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Top bar ---------- */
.topbar { background: linear-gradient(90deg, #1d4ed8, #6d28d9); color: #e0e7ff; font-size: 13.5px; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; }
.topbar a { color: #e2e8f0; display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 15px; height: 15px; color: #c7d2fe; }
.topbar-left { display: inline-flex; align-items: center; gap: 8px; }
.topbar-left svg { color: #86efac; }
.topbar-right { display: flex; gap: 22px; }
@media (max-width: 860px) { .topbar-right { display: none; } .topbar-inner { justify-content: center; } }
@media (max-width: 420px) { .topbar { font-size: 12px; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px); -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.is-scrolled { background: rgba(255,255,255,.94); border-color: var(--line); box-shadow: 0 6px 24px -12px rgba(11,18,32,.15); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink-900); flex-shrink: 0; }
.brand:hover { color: var(--ink-900); }
.brand-logo { width: 44px; height: 44px; border-radius: 13px; box-shadow: 0 8px 18px -8px rgba(37,99,235,.7); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 19px; letter-spacing: -.03em; }
.brand-tag { font-size: 11px; font-weight: 700; color: var(--primary); letter-spacing: .22em; text-transform: uppercase; margin-top: 3px; }

.main-nav { display: flex; align-items: center; }
.main-nav > ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 2px; }
.main-nav a.nav-link {
  position: relative; display: block; padding: 10px 16px;
  color: var(--ink-700); font-weight: 600; font-size: 15.5px;
}
.main-nav a.nav-link::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 2px; border-radius: 2px;
  background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.main-nav a.nav-link:hover { color: var(--ink-900); }
.main-nav a.nav-link:hover::after, .main-nav a.nav-link[aria-current="page"]::after { transform: scaleX(1); }
.main-nav a.nav-link[aria-current="page"] { color: var(--primary); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-call { display: flex; align-items: center; gap: 10px; color: var(--ink-900); }
.header-call:hover { color: var(--primary); }
.header-call .ic { width: 42px; height: 42px; border-radius: 50%; background: var(--primary-50); color: var(--primary); display: flex; align-items: center; justify-content: center; }
.header-call .ic svg { width: 18px; height: 18px; }
.header-call small { display: block; font-size: 12px; color: var(--ink-500); line-height: 1.2; }
.header-call strong { font-size: 15px; line-height: 1.2; font-weight: 700; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line);
  background: #fff; color: var(--ink-900); cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

.drawer-head, .drawer-foot { display: none; }
.nav-overlay { display: none; }

@media (max-width: 1180px) { .header-call { display: none; } }
@media (max-width: 1024px) {
  .site-header, .site-header.is-scrolled { background: #fff; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav-toggle { display: inline-flex; }
  .header-actions .btn { display: none; }
  .nav-overlay {
    display: block; position: fixed; inset: 0; z-index: 140; background: rgba(11,18,32,.45);
    opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
  }
  .main-nav {
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 150;
    width: min(360px, 88vw); background: #fff; flex-direction: column; align-items: stretch;
    padding: 18px 20px 24px; overflow-y: auto; box-shadow: -20px 0 60px -20px rgba(11,18,32,.35);
    opacity: 0; transform: scale(.97); transform-origin: right center; visibility: hidden; pointer-events: none;
    transition: transform .35s var(--ease), opacity .3s var(--ease), visibility .35s;
  }
  .menu-open .main-nav { opacity: 1; transform: none; visibility: visible; pointer-events: auto; }
  .menu-open .nav-overlay { opacity: 1; visibility: visible; }
  .menu-open .site-header { z-index: 160; }
  .drawer-contact a { overflow-wrap: anywhere; }
  .drawer-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; margin-bottom: 10px; border-bottom: 1px solid var(--line); }
  .drawer-close { width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); background: #fff; color: var(--ink-900); display: flex; align-items: center; justify-content: center; cursor: pointer; }
  .drawer-close svg { width: 20px; height: 20px; }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .main-nav a.nav-link { padding: 14px 14px; border-radius: 12px; font-size: 17px; }
  .main-nav a.nav-link::after { display: none; }
  .main-nav a.nav-link:hover, .main-nav a.nav-link[aria-current="page"] { background: var(--primary-50); }
  .drawer-foot { display: block; margin-top: auto; padding-top: 20px; }
  .drawer-foot .btn { width: 100%; margin-bottom: 10px; }
  .drawer-contact { list-style: none; padding: 16px; margin: 8px 0 0; background: var(--bg-soft); border-radius: var(--r); font-size: 14px; }
  .drawer-contact li { display: flex; gap: 10px; align-items: flex-start; margin: 6px 0; word-break: break-word; }
  .drawer-contact svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; margin-top: 4px; }
  .drawer-contact a { color: var(--ink-700); }
}

/* ---------- Media (images) ---------- */
.media { position: relative; overflow: hidden; border-radius: var(--r-lg); background: linear-gradient(135deg, #dbe6fe, #ede4ff); }
.media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 64px 0 96px; background: #fff; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(600px 400px at 88% 20%, rgba(124,58,237,.14), transparent 70%),
    radial-gradient(700px 500px at 5% 0%, rgba(37,99,235,.12), transparent 70%),
    radial-gradient(500px 300px at 50% 100%, rgba(249,115,22,.07), transparent 70%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(rgba(37,99,235,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(37,99,235,.07) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse at 30% 30%, #000 20%, transparent 70%); mask-image: radial-gradient(ellipse at 30% 30%, #000 20%, transparent 70%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.pill {
  display: inline-flex; align-items: center; gap: 10px; padding: 6px 16px 6px 6px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  font-size: 13.5px; font-weight: 600; color: var(--ink-700); margin-bottom: 24px;
}
.pill .pill-tag { background: var(--grad); color: #fff; font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 999px; letter-spacing: .02em; }
.hero h1 { font-size: clamp(38px, 5.6vw, 66px); line-height: 1.04; letter-spacing: -.04em; margin-bottom: 22px; }
.hero h1 .underline { position: relative; white-space: nowrap; }
.hero h1 .underline svg { position: absolute; left: 0; bottom: -10px; width: 100%; height: 14px; color: var(--accent); }
.hero-lead { font-size: clamp(17px, 1.5vw, 19px); color: var(--ink-500); max-width: 560px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px 24px; margin-top: 44px; padding-top: 28px; border-top: 1px dashed var(--ink-300); }
.hero-trust-item { display: flex; align-items: center; gap: 12px; }
.hero-trust-item .ic { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.hero-trust-item .ic svg { width: 22px; height: 22px; }
.hero-trust-item strong { display: block; color: var(--ink-900); font-size: 15px; line-height: 1.2; }
.hero-trust-item div span { font-size: 13px; color: var(--ink-500); }

.hero-visual { position: relative; padding: 20px 10px 40px 40px; }
.hero-visual .media-main { aspect-ratio: 4 / 4.6; border-radius: var(--r-xl); box-shadow: var(--shadow-lg); }
.hero-visual .media-sub {
  position: absolute; left: -10px; bottom: 0; width: 46%; aspect-ratio: 1 / 1.05;
  border: 6px solid #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
}
.hero-blob { position: absolute; right: 0; top: -30px; width: 220px; height: 220px; border-radius: 50%; background: var(--grad); opacity: .18; filter: blur(10px); z-index: -1; }
.glass-card {
  position: absolute; display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.9); border-radius: 18px; box-shadow: var(--shadow-lg);
  padding: 12px 16px 12px 12px; font-size: 14px; animation: float 6s ease-in-out infinite;
}
.glass-card .ic { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.glass-card .ic svg { width: 21px; height: 21px; }
.glass-card strong { display: block; color: var(--ink-900); font-size: 15px; line-height: 1.25; font-family: var(--font-head); }
.glass-card span > span { color: var(--ink-500); font-size: 12.5px; line-height: 1.3; display: block; }
.gc-1 { top: 44px; right: -18px; }
.gc-2 { bottom: 70px; right: -6px; animation-delay: -3s; }
.gc-3 { top: 40%; left: 0; animation-delay: -1.5s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.avatars { display: flex; }
.avatars span { width: 30px; height: 30px; border-radius: 50%; border: 2px solid #fff; margin-left: -8px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 11px; font-weight: 700; }
.avatars span:first-child { margin-left: 0; }

@media (max-width: 1024px) {
  .hero { padding: 48px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { max-width: 560px; margin: 0 auto; width: 100%; }
}
@media (max-width: 560px) {
  .hero-visual { padding: 10px 0 30px 20px; }
  .gc-1 { right: -4px; top: 20px; }
  .gc-2 { right: 0; bottom: 40px; }
  .gc-3 { display: none; }
  .glass-card { padding: 8px 12px 8px 8px; }
  .glass-card .ic { width: 34px; height: 34px; }
  .glass-card strong { font-size: 13.5px; }
  .hero-trust { gap: 18px; }
}

/* ---------- Marquee ---------- */
.marquee-wrap { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-soft); padding: 22px 0; }
.marquee-label { text-align: center; font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-500); margin-bottom: 14px; }
.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; gap: 14px; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.tech-chip { display: inline-flex; align-items: center; gap: 10px; padding: 10px 20px; background: #fff; border: 1px solid var(--line); border-radius: 999px; font-weight: 600; font-size: 15px; color: var(--ink-800); white-space: nowrap; }
.tech-chip i { width: 10px; height: 10px; border-radius: 3px; display: inline-block; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { position: relative; padding: 110px 0; }
.section-soft { background: var(--bg-soft); }
.section-sm { padding: 72px 0; }
@media (max-width: 768px) { .section { padding: 76px 0; } }
.section-head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 56px; flex-wrap: wrap; }
.section-head-row .section-head { margin: 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--grad); }
.section-title { font-size: clamp(30px, 3.8vw, 46px); letter-spacing: -.035em; }
.section-lead { font-size: 18px; color: var(--ink-500); margin: 0; }
@media (max-width: 768px) { .section-head, .section-head-row { margin-bottom: 40px; } }

.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); }
@media (max-width: 1024px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
@media (max-width: 1024px) { .split { grid-template-columns: 1fr; gap: 48px; } }

/* icon chip */
.ic-chip { width: 54px; height: 54px; border-radius: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ic-chip svg { width: 26px; height: 26px; }
.t-blue { background: var(--primary-50); color: var(--primary); }
.t-violet { background: var(--violet-50); color: var(--violet); }
.t-orange { background: var(--accent-50); color: var(--accent); }
.t-green { background: var(--green-50); color: var(--green); }
.t-pink { background: var(--pink-50); color: var(--pink); }
.t-grad { background: var(--grad); color: #fff; }

.check-list { list-style: none; padding: 0; margin: 20px 0 0; }
.check-list li { position: relative; padding-left: 32px; margin-bottom: 12px; color: var(--ink-700); font-weight: 500; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 21px; height: 21px; border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/11px no-repeat, var(--grad);
}
.check-list.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
@media (max-width: 560px) { .check-list.two-col { grid-template-columns: 1fr; } }

/* ---------- About teaser collage ---------- */
.collage { position: relative; padding: 0 60px 70px 0; }
.collage .media-a { aspect-ratio: 5 / 4; box-shadow: var(--shadow-lg); border-radius: var(--r-xl); }
.collage .media-b { position: absolute; right: 0; bottom: 0; width: 52%; aspect-ratio: 1; border: 8px solid #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.collage-badge {
  position: absolute; left: 24px; bottom: 16px; background: #fff; border-radius: var(--r); box-shadow: var(--shadow-lg);
  padding: 16px 20px; display: flex; align-items: center; gap: 14px; max-width: 260px;
}
.collage-badge strong { font-family: var(--font-head); font-size: 30px; line-height: 1; color: var(--ink-900); display: block; }
.collage-badge div span { font-size: 13px; color: var(--ink-500); line-height: 1.35; display: block; }
.collage-dots { position: absolute; left: -24px; top: -24px; width: 120px; height: 120px; z-index: -1; background-image: radial-gradient(var(--primary) 1.6px, transparent 1.6px); background-size: 14px 14px; opacity: .35; }
@media (max-width: 560px) { .collage { padding: 0 24px 60px 0; } .collage-badge { left: 12px; padding: 12px 14px; } .collage-badge strong { font-size: 24px; } }

.feature-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 28px; }
.feature-mini div { display: flex; gap: 12px; align-items: flex-start; }
.feature-mini .ic-chip { width: 44px; height: 44px; border-radius: 12px; }
.feature-mini .ic-chip svg { width: 21px; height: 21px; }
.feature-mini strong { display: block; color: var(--ink-900); font-size: 15.5px; line-height: 1.3; }
.feature-mini span > span { font-size: 14px; color: var(--ink-500); line-height: 1.45; display: block; }
@media (max-width: 560px) { .feature-mini { grid-template-columns: 1fr; } }

/* ---------- Service cards ---------- */
.svc-card {
  position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-xs);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-card .media { aspect-ratio: 16 / 10; border-radius: 0; }
.svc-card .media img { transition: transform .6s var(--ease); }
.svc-card:hover .media img { transform: scale(1.06); }
.svc-body { position: relative; padding: 38px 26px 26px; flex: 1; display: flex; flex-direction: column; }
.svc-body .ic-chip { position: absolute; left: 24px; top: -28px; border: 4px solid #fff; box-sizing: content-box; box-shadow: var(--shadow-sm); }
.svc-body h3 { font-size: 21px; margin-bottom: 8px; }
.svc-body p { color: var(--ink-500); font-size: 15.5px; margin-bottom: 18px; flex: 1; }
.svc-num { position: absolute; right: 22px; top: 14px; font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--ink-300); }

/* ---------- Facts band ---------- */
.facts {
  position: relative; overflow: hidden; border-radius: var(--r-xl); padding: 56px 48px; color: #fff;
  background: linear-gradient(120deg, #1d4ed8 0%, #4f46e5 50%, #7c3aed 100%);
  box-shadow: 0 30px 60px -24px rgba(79,70,229,.55);
}
.facts::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.14) 1.5px, transparent 1.5px); background-size: 22px 22px; -webkit-mask-image: linear-gradient(90deg, transparent, #000); mask-image: linear-gradient(90deg, transparent, #000); }
.facts-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.fact { text-align: center; padding: 0 10px; }
.fact + .fact { border-left: 1px solid rgba(255,255,255,.2); }
.fact strong { display: block; font-family: var(--font-head); font-size: clamp(34px, 4vw, 48px); line-height: 1.05; letter-spacing: -.03em; margin-bottom: 6px; }
.fact span { color: rgba(255,255,255,.85); font-size: 15px; }
@media (max-width: 860px) { .facts-grid { grid-template-columns: 1fr 1fr; gap: 36px 16px; } .fact + .fact { border-left: 0; } .facts { padding: 44px 24px; } }

/* ---------- Process ---------- */
.process { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process::before { content: ""; position: absolute; top: 36px; left: 12%; right: 12%; height: 2px; background: repeating-linear-gradient(90deg, var(--ink-300) 0 8px, transparent 8px 16px); }
.step { position: relative; text-align: center; padding: 0 8px; }
.step-num {
  position: relative; width: 72px; height: 72px; margin: 0 auto 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
  font-family: var(--font-head); font-weight: 700; font-size: 22px; color: var(--primary);
}
.step-num::after { content: ""; position: absolute; inset: 6px; border-radius: 50%; background: var(--grad-soft); z-index: -0; }
.step-num span { position: relative; z-index: 1; }
.step h3 { font-size: 20px; margin-bottom: 8px; }
.step p { color: var(--ink-500); font-size: 15px; margin: 0; }
@media (max-width: 860px) { .process { grid-template-columns: 1fr 1fr; gap: 40px 20px; } .process::before { display: none; } }
@media (max-width: 480px) { .process { grid-template-columns: 1fr; } }

/* ---------- Why us ---------- */
.why-media { position: relative; }
.why-media .media { aspect-ratio: 4 / 4.4; border-radius: var(--r-xl); box-shadow: var(--shadow-lg); }
.why-media .glass-card { animation: none; }
.why-media .wc-1 { left: -24px; bottom: 40px; }
.why-media .wc-2 { right: -20px; top: 40px; }
@media (max-width: 560px) { .why-media .wc-1 { left: 8px; bottom: 16px; } .why-media .wc-2 { right: 8px; top: 16px; } }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.why-item { padding: 22px; border-radius: var(--r); background: #fff; border: 1px solid var(--line); transition: box-shadow .3s, transform .3s var(--ease); }
.why-item:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.why-item .ic-chip { width: 46px; height: 46px; border-radius: 13px; margin-bottom: 14px; }
.why-item .ic-chip svg { width: 22px; height: 22px; }
.why-item h3 { font-size: 17px; margin-bottom: 4px; }
.why-item p { font-size: 14.5px; color: var(--ink-500); margin: 0; line-height: 1.55; }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ---------- Verify / business details ---------- */
.verify-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.verify-head { display: flex; align-items: center; gap: 16px; padding: 22px 28px; background: var(--grad); color: #fff; }
.verify-head .ic-chip { background: rgba(255,255,255,.18); color: #fff; width: 50px; height: 50px; }
.verify-head h3 { color: #fff; margin: 0; font-size: 19px; }
.verify-head p { margin: 0; font-size: 13.5px; color: rgba(255,255,255,.85); line-height: 1.4; }
.info-table { width: 100%; border-collapse: collapse; }
.info-table th, .info-table td { text-align: left; padding: 14px 28px; border-bottom: 1px solid var(--line); font-size: 15px; vertical-align: top; }
.info-table tr:nth-child(even) { background: #fafbfe; }
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: 0; }
.info-table th { width: 42%; color: var(--ink-500); font-weight: 500; }
.info-table td { color: var(--ink-900); font-weight: 600; word-break: break-word; }
@media (max-width: 560px) {
  .info-table th, .info-table td { display: block; width: 100%; padding: 3px 20px; border: 0; }
  .info-table th { padding-top: 14px; font-size: 13px; }
  .info-table td { padding-bottom: 14px; border-bottom: 1px solid var(--line); }
  .verify-head { padding: 18px 20px; }
}
.verify-badges { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 30px; }
.verify-badges span { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: 14px; font-weight: 600; color: var(--ink-800); }
.verify-badges svg { width: 17px; height: 17px; color: var(--green); }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; display: grid; gap: 14px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--r); transition: box-shadow .3s, border-color .3s; }
.faq details[open] { box-shadow: var(--shadow); border-color: var(--primary-100); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; font-family: var(--font-head); font-weight: 600; font-size: 18px; color: var(--ink-900);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { width: 34px; height: 34px; border-radius: 50%; background: var(--primary-50); color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .3s var(--ease), background .3s, color .3s; }
.faq summary .plus svg { width: 16px; height: 16px; }
.faq details[open] summary .plus { transform: rotate(45deg); background: var(--grad); color: #fff; }
.faq .faq-body { padding: 0 24px 22px; color: var(--ink-500); }
.faq .faq-body p { margin: 0; }
@media (max-width: 560px) { .faq summary { font-size: 16px; padding: 16px 18px; } .faq .faq-body { padding: 0 18px 18px; } }

/* ---------- CTA ---------- */
.cta {
  position: relative; overflow: hidden; border-radius: var(--r-xl); padding: 72px 56px; color: #fff;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; isolation: isolate;
}
.cta-bg { position: absolute; inset: 0; z-index: -2; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(29,78,216,.96) 0%, rgba(79,70,229,.9) 55%, rgba(124,58,237,.75) 100%); }
.cta h2 { color: #fff; font-size: clamp(30px, 3.6vw, 46px); margin-bottom: 14px; }
.cta p { color: rgba(255,255,255,.88); font-size: 18px; margin: 0; max-width: 560px; }
.cta-actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }
.cta-actions .btn { min-width: 250px; }
.cta-note { font-size: 14px; color: rgba(255,255,255,.8); display: flex; align-items: center; gap: 8px; }
.cta-note svg { width: 16px; height: 16px; }
@media (max-width: 860px) { .cta { grid-template-columns: 1fr; padding: 52px 28px; } .cta-actions { align-items: stretch; } .cta-actions .btn { min-width: 0; } }

/* ---------- Page hero (inner) ---------- */
.page-hero { position: relative; overflow: hidden; padding: 64px 0 72px; background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.page-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(600px 360px at 90% 10%, rgba(124,58,237,.12), transparent 70%), radial-gradient(600px 400px at 0% 0%, rgba(37,99,235,.12), transparent 70%);
}
.page-hero .container { position: relative; }
.page-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.page-hero h1 { font-size: clamp(36px, 4.8vw, 58px); letter-spacing: -.04em; margin-bottom: 16px; }
.page-hero p.lead { font-size: 18.5px; color: var(--ink-500); max-width: 600px; margin: 0 0 28px; }
.page-hero .media { aspect-ratio: 16 / 11; border-radius: var(--r-xl); box-shadow: var(--shadow-lg); }
.page-hero-visual { position: relative; }
.page-hero-visual .glass-card { left: -24px; bottom: -20px; animation: none; }
.breadcrumb { list-style: none; padding: 0; margin: 0 0 18px; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--ink-500); }
.breadcrumb li { display: inline-flex; align-items: center; gap: 8px; }
.breadcrumb li + li::before { content: ""; width: 6px; height: 6px; border-top: 1.5px solid var(--ink-300); border-right: 1.5px solid var(--ink-300); transform: rotate(45deg); }
.breadcrumb a { color: var(--ink-500); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb [aria-current] { color: var(--primary); }
@media (max-width: 1024px) { .page-hero-grid { grid-template-columns: 1fr; gap: 44px; } .page-hero-visual { max-width: 620px; } }
@media (max-width: 560px) { .page-hero { padding: 44px 0 56px; } .page-hero-visual .glass-card { left: 10px; bottom: -18px; } }

.page-hero.compact { padding: 56px 0 60px; text-align: center; }
.page-hero.compact .breadcrumb { justify-content: center; }
.page-hero.compact p.lead { margin: 0 auto; }
.page-hero.compact .hero-icon { width: 68px; height: 68px; border-radius: 20px; margin: 0 auto 20px; box-shadow: var(--shadow-primary); }
.page-hero.compact .hero-icon svg { width: 32px; height: 32px; }

/* ---------- Service detail rows ---------- */
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; scroll-margin-top: calc(var(--header-h) + 30px); }
.svc-row + .svc-row { margin-top: 110px; }
.svc-row:nth-child(even) .svc-row-media { order: 2; }
.svc-row-media { position: relative; }
.svc-row-media .media { aspect-ratio: 5 / 4; border-radius: var(--r-xl); box-shadow: var(--shadow-lg); }
.svc-row-media .ic-chip { position: absolute; top: -22px; left: 28px; width: 64px; height: 64px; border-radius: 18px; box-shadow: var(--shadow-primary); }
.svc-row-media .ic-chip svg { width: 30px; height: 30px; }
.svc-row h2 { font-size: clamp(28px, 3.2vw, 40px); }
.svc-row p { color: var(--ink-500); font-size: 17px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 28px; padding: 0; list-style: none; }
.tag-list li { padding: 6px 14px; border-radius: 999px; background: var(--primary-50); color: var(--primary-700); font-size: 13.5px; font-weight: 600; }
@media (max-width: 1024px) {
  .svc-row { grid-template-columns: 1fr; gap: 44px; }
  .svc-row:nth-child(even) .svc-row-media { order: 0; }
  .svc-row + .svc-row { margin-top: 80px; }
}

.industry { display: flex; align-items: center; gap: 16px; padding: 22px; border-radius: var(--r); background: #fff; border: 1px solid var(--line); transition: transform .3s var(--ease), box-shadow .3s; }
.industry:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.industry h3 { font-size: 17px; margin: 0 0 2px; }
.industry p { font-size: 14px; color: var(--ink-500); margin: 0; line-height: 1.45; }

/* ---------- About ---------- */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px; transition: transform .35s var(--ease), box-shadow .35s; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card .ic-chip { margin-bottom: 22px; }
.card h3 { font-size: 22px; margin-bottom: 10px; }
.card p { color: var(--ink-500); margin: 0; }
.founder { display: grid; grid-template-columns: auto 1fr; gap: 36px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: 44px; box-shadow: var(--shadow); }
.founder-avatar { width: 150px; height: 150px; border-radius: 50%; background: var(--grad); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 54px; font-weight: 700; box-shadow: var(--shadow-primary); position: relative; }
.founder-avatar::after { content: ""; position: absolute; inset: -10px; border-radius: 50%; border: 2px dashed var(--primary-100); }
.founder h3 { font-size: 28px; margin-bottom: 2px; }
.founder .role { color: var(--primary); font-weight: 600; margin-bottom: 14px; display: block; }
.founder blockquote { margin: 0; color: var(--ink-500); font-size: 17px; }
@media (max-width: 700px) { .founder { grid-template-columns: 1fr; text-align: center; padding: 32px 22px; } .founder-avatar { margin: 0 auto; width: 120px; height: 120px; font-size: 42px; } }

/* ---------- Contact ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: -56px; position: relative; z-index: 2; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 4px; transition: transform .3s var(--ease), box-shadow .3s; }
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.contact-card .ic-chip { margin-bottom: 14px; }
.contact-card h3 { font-size: 18px; margin: 0; }
.contact-card p { margin: 0 0 8px; color: var(--ink-500); font-size: 14px; }
.contact-card a, .contact-card address { font-weight: 600; font-size: 15px; word-break: break-word; font-style: normal; color: var(--ink-900); }
.contact-card a:hover { color: var(--primary); }
@media (max-width: 1024px) { .contact-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .contact-cards { grid-template-columns: 1fr; margin-top: -40px; } }

.contact-layout { display: grid; grid-template-columns: 1.25fr .75fr; gap: 32px; align-items: start; }
@media (max-width: 1024px) { .contact-layout { grid-template-columns: 1fr; } }
.side-panel { position: relative; overflow: hidden; border-radius: var(--r-xl); color: #fff; padding: 36px 30px; min-height: 100%; isolation: isolate; }
.side-panel .cta-bg { position: absolute; inset: 0; z-index: -2; }
.side-panel::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(29,78,216,.88), rgba(124,58,237,.94)); }
.side-panel h3 { color: #fff; font-size: 24px; }
.side-panel p { color: rgba(255,255,255,.88); }
.hours { list-style: none; padding: 0; margin: 20px 0 26px; }
.hours li { display: flex; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.2); font-size: 15px; }
.hours li span:last-child { font-weight: 600; }
.map-wrap { border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--bg-soft); }
.map-wrap iframe { display: block; width: 100%; height: 420px; border: 0; }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--shadow-lg); padding: 40px; }
@media (max-width: 560px) { .form-card { padding: 24px 18px; border-radius: var(--r-lg); } }
.form-card h2 { font-size: 30px; margin-bottom: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; gap: 0; } }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14.5px; font-weight: 600; color: var(--ink-900); margin-bottom: 7px; }
.field label .req { color: #dc2626; }
.field input, .field select, .field textarea {
  width: 100%; font: 15.5px/1.5 var(--font-body); color: var(--ink-900); background: var(--bg-soft);
  border: 1.5px solid var(--line); border-radius: 12px; padding: 13px 16px; min-height: 50px;
  transition: border-color .2s, box-shadow .2s, background .2s; -webkit-appearance: none; appearance: none;
}
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b6b82' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 42px; }
.field textarea { min-height: 140px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--ink-300); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; background: #fff; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(37,99,235,.12); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #dc2626; background: #fff; }
.field .error-msg { display: none; color: #dc2626; font-size: 13px; margin-top: 6px; }
.field.has-error .error-msg { display: block; }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: var(--ink-500); margin: 4px 0 22px; cursor: pointer; }
.consent input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--primary); flex-shrink: 0; }
.consent.has-error { color: #dc2626; }
.form-note { font-size: 13.5px; color: var(--ink-500); margin: 14px 0 0; text-align: center; }
.form-status { display: none; margin-top: 16px; padding: 14px 16px; border-radius: 12px; font-size: 14.5px; font-weight: 600; }
.form-status.is-success { display: block; background: var(--green-50); color: #15803d; border: 1px solid #bbf7d0; }

/* ---------- Legal ---------- */
.legal-layout { display: grid; grid-template-columns: 280px 1fr; gap: 56px; align-items: start; }
@media (max-width: 1024px) { .legal-layout { grid-template-columns: 1fr; gap: 28px; } }
.toc { position: sticky; top: calc(var(--header-h) + 24px); background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-sm); max-height: calc(100vh - var(--header-h) - 48px); overflow-y: auto; }
.toc h2 { font-family: var(--font-body); font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--ink-500); margin-bottom: 12px; }
.toc ol { list-style: none; margin: 0; padding: 0; counter-reset: toc; }
.toc li { counter-increment: toc; }
.toc a { display: flex; gap: 10px; padding: 7px 10px; border-radius: 8px; font-size: 14.5px; color: var(--ink-700); line-height: 1.4; }
.toc a::before { content: counter(toc, decimal-leading-zero); font-size: 12px; font-weight: 700; color: var(--ink-300); padding-top: 2px; }
.toc a:hover { background: var(--bg-soft); color: var(--primary); }
.toc a.is-active { background: var(--primary-50); color: var(--primary); font-weight: 600; }
.toc a.is-active::before { color: var(--primary); }
.toc-help { margin-top: 18px; padding: 16px; border-radius: var(--r); background: var(--grad-soft); font-size: 14px; }
.toc-help strong { display: block; color: var(--ink-900); margin-bottom: 4px; }
.toc-help a { display: inline; padding: 0; color: var(--primary); font-weight: 600; word-break: break-word; }
.toc-help a::before { display: none; }
@media (max-width: 1024px) { .toc { position: static; max-height: none; } }

.legal-content { max-width: 820px; min-width: 0; }
.legal-meta { display: flex; flex-wrap: wrap; gap: 10px 28px; align-items: center; font-size: 14.5px; color: var(--ink-500); padding: 18px 22px; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--primary); border-radius: var(--r); margin-bottom: 36px; box-shadow: var(--shadow-xs); }
.legal-meta strong { color: var(--ink-900); }
.legal-content h2 { font-size: 25px; margin: 48px 0 14px; padding-top: 8px; scroll-margin-top: calc(var(--header-h) + 20px); }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 { font-size: 18px; margin: 24px 0 8px; }
.legal-content p, .legal-content li { font-size: 16.5px; color: var(--ink-700); }
.legal-content li { margin-bottom: 8px; }
.legal-content ul li::marker { color: var(--primary); }
.callout { padding: 18px 22px; border-radius: var(--r); background: var(--accent-50); border: 1px solid #fed7aa; margin: 22px 0; }
.callout p:last-child { margin: 0; }
.table-wrap { overflow-x: auto; margin: 18px 0 22px; border: 1px solid var(--line); border-radius: var(--r); }
.data-table { width: 100%; border-collapse: collapse; min-width: 520px; font-size: 15px; }
.data-table th, .data-table td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.data-table th { background: var(--bg-soft); color: var(--ink-900); font-weight: 700; }
.data-table tr:last-child td { border-bottom: 0; }
.address-block { background: var(--grad-soft); border: 1px solid var(--primary-100); border-radius: var(--r); padding: 22px 24px; font-style: normal; }
.address-block p { margin: 0 0 4px; }

/* ---------- Footer ---------- */
.site-footer { position: relative; background: var(--bg-soft); border-top: 1px solid var(--line); padding-top: 80px; color: var(--ink-500); font-size: 15px; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .8fr .9fr 1fr 1.3fr; gap: 40px; padding-bottom: 56px; }
@media (max-width: 1100px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } .footer-about { grid-column: 1 / -1; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 20px; } .footer-contact-col { grid-column: 1 / -1; } }
.footer-about p { margin: 18px 0 22px; max-width: 360px; }
.msme-badge { display: inline-flex; align-items: center; gap: 12px; padding: 12px 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); font-size: 13px; box-shadow: var(--shadow-xs); }
.msme-badge .ic-chip { width: 40px; height: 40px; border-radius: 11px; }
.msme-badge .ic-chip svg { width: 20px; height: 20px; }
.msme-badge strong { display: block; color: var(--ink-900); font-size: 14px; line-height: 1.3; }
.site-footer h3 { font-family: var(--font-body); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--ink-900); margin-bottom: 20px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--ink-500); display: inline-flex; align-items: center; gap: 6px; transition: color .2s, transform .2s var(--ease); }
.footer-links a:hover { color: var(--primary); transform: translateX(3px); }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 16px; }
.footer-contact .ic { width: 36px; height: 36px; border-radius: 10px; background: #fff; border: 1px solid var(--line); color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer-contact .ic svg { width: 17px; height: 17px; }
.footer-contact small { display: block; font-size: 12px; color: var(--ink-500); }
.footer-contact a, .footer-contact span.val { color: var(--ink-800); font-weight: 600; word-break: break-word; line-height: 1.45; font-size: 14.5px; }
.footer-contact a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--line); padding: 22px 0; font-size: 14px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px 24px; }
.footer-bottom p { margin: 0; }
.footer-bottom ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px 22px; }
.footer-bottom a { color: var(--ink-500); }
.footer-bottom a:hover { color: var(--primary); }
.made-in { display: inline-flex; align-items: center; gap: 6px; }
.made-in svg { width: 15px; height: 15px; color: #e11d48; }

/* ---------- Floating buttons ---------- */
.float-btns { position: fixed; right: 20px; bottom: 20px; z-index: 90; display: flex; flex-direction: column; gap: 12px; align-items: center; }
.to-top, .wa-float { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; border: 0; transition: transform .3s var(--ease), opacity .3s, visibility .3s; }
.to-top { background: #fff; color: var(--primary); border: 1px solid var(--line); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(10px); width: 46px; height: 46px; }
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top svg { width: 20px; height: 20px; }
.wa-float { background: #22c55e; color: #fff; box-shadow: 0 12px 26px -8px rgba(34,197,94,.7); position: relative; }
.wa-float:hover { color: #fff; transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }
.wa-float::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: #22c55e; z-index: -1; animation: ping 2.4s var(--ease) infinite; }
@keyframes ping { 0% { transform: scale(1); opacity: .55; } 80%, 100% { transform: scale(1.7); opacity: 0; } }
@media (max-width: 560px) { .float-btns { right: 14px; bottom: 14px; } }

/* ---------- 404 ---------- */
.not-found { text-align: center; padding: 120px 0; }
.not-found .code { font-family: var(--font-head); font-size: clamp(110px, 20vw, 200px); font-weight: 700; line-height: 1; letter-spacing: -.06em; margin-bottom: 8px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0s); }
.reveal.is-in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
  .marquee-track > [aria-hidden] { display: none !important; }
  .marquee { -webkit-mask-image: none; mask-image: none; }
}

.text-center { text-align: center; }
.mt-48 { margin-top: 48px; }
.muted { color: var(--ink-500); }
.lead-lg { font-size: 18px; color: var(--ink-500); }
@media (max-width: 480px) { .hide-sm { display: none; } }
.contact-card a, .footer-contact a, .toc-help a { word-break: normal; overflow-wrap: anywhere; }
