/* ==========================================================================
   SureSelect IT — Design System
   Custom, hand-built. No Bootstrap. Modern premium corporate + SaaS aesthetic.
   ========================================================================== */

/* ---- Tokens -------------------------------------------------------------- */
:root {
  --ink-900: #0b1220;
  --ink-800: #111a2e;
  --ink-700: #1c2740;
  --ink-600: #33415c;
  --ink-500: #5a6a86;
  --ink-400: #8493ac;
  --ink-300: #b9c4d6;
  --ink-200: #dce3ee;
  --ink-100: #eef2f8;
  --ink-50:  #f6f8fc;
  --white:   #ffffff;

  /* Brand palette — matches sureselectit.com (signature golden-yellow on dark).
     brand-500 is the signature gold used for FILLS (buttons, icon tiles, gradients);
     brand-600 is a deeper amber used for TEXT accents so it stays readable on white. */
  --brand-600: #a15c07;
  --brand-500: #fed136;
  --brand-400: #ffdc5c;
  --accent-500: #f59e0b;
  --accent-400: #fbbf24;
  --violet-500: #f59e0b;

  --grad-brand: linear-gradient(120deg, #fed136 0%, #f7b733 55%, #f59e0b 100%);
  --grad-brand-soft: linear-gradient(120deg, rgba(254,209,54,.18), rgba(245,158,11,.14));
  --grad-dark: radial-gradient(1200px 600px at 15% -10%, rgba(254,209,54,.26), transparent 60%),
               radial-gradient(900px 500px at 90% 0%, rgba(245,158,11,.20), transparent 55%),
               linear-gradient(160deg, #0b1220 0%, #17130a 55%, #0b1220 100%);

  --ok-500: #10b981;
  --warn-500: #f59e0b;
  --err-500: #ef4444;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(16,24,40,.06), 0 1px 3px rgba(16,24,40,.10);
  --shadow-md: 0 8px 24px rgba(16,24,40,.08), 0 2px 6px rgba(16,24,40,.06);
  --shadow-lg: 0 24px 60px rgba(16,24,40,.14), 0 8px 20px rgba(16,24,40,.08);
  --shadow-glow: 0 18px 44px rgba(245,158,11,.34);

  --container: 1200px;
  --gutter: clamp(18px, 4vw, 40px);
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Sora", var(--font-sans);

  --nav-h: 76px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---- Reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ---- Smooth cross-page (MPA) view transitions --------------------------- */
@view-transition { navigation: auto; }
@media (prefers-reduced-motion: no-preference) {
  ::view-transition-old(root) { animation: vtOut .26s var(--ease) both; }
  ::view-transition-new(root) { animation: vtIn .40s var(--ease) both; }
}
@keyframes vtOut { to   { opacity: 0; transform: translateY(-10px); } }
@keyframes vtIn  { from { opacity: 0; transform: translateY(14px); } }
/* Keep the chrome visually stable while the page body cross-fades. */
.nav    { view-transition-name: site-nav; }
.footer { view-transition-name: site-footer; }
body {
  font-family: var(--font-sans);
  color: var(--ink-700);
  background: var(--white);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--brand-600); text-decoration: none; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--accent-400); outline-offset: 2px; border-radius: 4px; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink-900); line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; }
ul { list-style: none; padding: 0; }

.ic { width: 1.25em; height: 1.25em; flex: none; }

/* ---- Layout -------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.bg-soft { background: var(--ink-50); }
.bg-dark { background: var(--grad-dark); color: var(--ink-200); }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: #fff; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink-900); color: #fff; padding: 10px 16px; border-radius: 8px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---- Eyebrow / headings -------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 600; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--brand-600);
  background: var(--grad-brand-soft); padding: 7px 14px; border-radius: var(--radius-pill);
}
.bg-dark .eyebrow { color: var(--accent-400); background: rgba(254,209,54,.14); }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title { font-size: clamp(1.9rem, 4vw, 2.9rem); margin: 18px 0 14px; }
.section-lead { font-size: 1.125rem; color: var(--ink-500); }
.bg-dark .section-lead { color: var(--ink-300); }
.text-grad {
  background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-sans); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: var(--radius-pill); border: 1px solid transparent;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
  white-space: nowrap; line-height: 1;
}
.btn .ic { width: 1.15em; height: 1.15em; }
.btn-primary { background: var(--grad-brand); color: var(--ink-900); box-shadow: var(--shadow-md); background-size: 140% 140%; }
.btn-primary .ic { color: var(--ink-900); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); background-position: 100% 0; }
.btn-secondary { background: var(--white); color: var(--ink-800); border-color: var(--ink-200); box-shadow: var(--shadow-sm); }
.btn-secondary:hover { transform: translateY(-2px); border-color: var(--brand-400); color: var(--brand-600); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.28); }
.btn-ghost:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn[disabled], .btn.is-loading { opacity: .7; pointer-events: none; }
.btn .spinner { display: none; width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(0,0,0,.2); border-top-color: currentColor; animation: spin .7s linear infinite; }
.btn.is-loading .spinner { display: inline-block; }
.btn.is-loading .btn-label { opacity: .85; }
@keyframes spin { to { transform: rotate(360deg); } }

.link-arrow { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: var(--brand-600); }
.link-arrow .ic { transition: transform .2s var(--ease); }
.link-arrow:hover .ic { transform: translateX(4px); }

/* ---- Navbar -------------------------------------------------------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s var(--ease);
}
.nav__inner { display: flex; align-items: center; width: 100%; gap: 24px; }
.nav__inner > .brand { flex: 1 1 0; min-width: 0; }
.nav__menu { flex: 0 0 auto; }
.nav__actions { flex: 1 1 0; }
.nav.is-scrolled, .nav.is-solid {
  background: rgba(255,255,255,.85); backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--ink-100), var(--shadow-sm);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 800; font-size: 1.28rem; color: var(--ink-900); letter-spacing: -.02em; }
.brand__mark {
  width: 40px; height: 40px; border-radius: 12px; background: var(--grad-brand);
  display: grid; place-items: center; color: var(--ink-900); font-weight: 800; box-shadow: var(--shadow-glow);
  font-family: var(--font-display); font-size: 1.1rem;
}
.brand b { color: var(--brand-600); }
.nav:not(.is-scrolled):not(.is-solid) .brand { color: #fff; }
.nav:not(.is-scrolled):not(.is-solid) .brand b { color: var(--accent-400); }

.nav__menu { display: flex; align-items: center; justify-content: center; gap: 2px; }
.nav__item { position: relative; }
.nav__link {
  position: relative; display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 15px; border-radius: 10px; font-weight: 500; font-size: .96rem; line-height: 1;
  color: var(--ink-600); background: transparent; border: 0;
  transition: color .2s var(--ease), background .2s var(--ease);
}
button.nav__link { cursor: pointer; }
.nav__caret { width: 15px; height: 15px; transition: transform .25s var(--ease); opacity: .8; }
.nav:not(.is-scrolled):not(.is-solid) .nav__link { color: rgba(255,255,255,.9); }
.nav__link:hover { color: var(--brand-600); background: var(--ink-50); }
.nav:not(.is-scrolled):not(.is-solid) .nav__link:hover { color: #fff; background: rgba(255,255,255,.12); }
.nav__link.is-active { color: var(--brand-600); font-weight: 600; }
.nav:not(.is-scrolled):not(.is-solid) .nav__link.is-active { color: #fff; }
.nav__link.is-active::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: -2px; height: 2px;
  background: var(--grad-brand); border-radius: 2px;
}
.nav__item.has-dropdown .nav__link.is-active::after { display: none; }

/* Dropdown */
.nav__dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(8px);
  width: 320px; background: var(--white); border: 1px solid var(--ink-100); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 10px; display: grid; gap: 4px;
  opacity: 0; visibility: hidden; transition: opacity .22s var(--ease), transform .22s var(--ease); z-index: 50;
}
.nav__dropdown::before { content: ""; position: absolute; top: -8px; left: 0; right: 0; height: 8px; }
.nav__item.has-dropdown:hover .nav__dropdown,
.nav__item.has-dropdown:focus-within .nav__dropdown,
.nav__item.has-dropdown.is-open .nav__dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__item.has-dropdown:hover .nav__caret,
.nav__item.has-dropdown.is-open .nav__caret { transform: rotate(180deg); }
.nav__drop-link { display: flex; gap: 12px; align-items: center; padding: 11px 12px; border-radius: 12px;
  color: var(--ink-700); transition: background .18s var(--ease); }
.nav__drop-link:hover, .nav__drop-link.is-active { background: var(--ink-50); }
.nav__drop-ico { width: 40px; height: 40px; flex: none; border-radius: 10px; display: grid; place-items: center;
  color: #fff; background: var(--grad-brand); }
.nav__drop-ico .ic { width: 20px; height: 20px; }
.nav__drop-text { display: flex; flex-direction: column; gap: 2px; }
.nav__drop-text strong { font-family: var(--font-display); font-size: .96rem; color: var(--ink-900); font-weight: 700; }
.nav__drop-text small { font-size: .8rem; color: var(--ink-400); line-height: 1.3; }

.nav__actions { display: flex; align-items: center; gap: 12px; justify-content: flex-end; }
.nav__login {
  display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: .92rem;
  color: var(--ink-600); padding: 9px 12px; border-radius: 10px; white-space: nowrap;
}
.nav__login .ic { width: 17px; height: 17px; }
.nav:not(.is-scrolled):not(.is-solid) .nav__login { color: rgba(255,255,255,.92); }
.nav__login:hover { color: var(--brand-600); background: var(--ink-50); }
.nav:not(.is-scrolled):not(.is-solid) .nav__login:hover { color: #fff; background: rgba(255,255,255,.12); }
.nav__actions .btn { padding: 11px 22px; }
.nav__toggle { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--ink-200);
  background: var(--white); color: var(--ink-800); place-items: center; }
.nav:not(.is-scrolled):not(.is-solid) .nav__toggle { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); color: #fff; }
.nav__toggle .ic { width: 24px; height: 24px; }

/* Mobile drawer */
.nav__backdrop { position: fixed; inset: 0; background: rgba(11,18,32,.5); backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease); z-index: 110; }
.nav__backdrop.is-open { opacity: 1; visibility: visible; }
.drawer__sub { display: grid; gap: 2px; margin: 2px 0 8px 14px; padding-left: 12px; border-left: 2px solid var(--ink-100); }
.drawer__sublink { display: flex; align-items: center; gap: 10px; padding: 11px 12px; border-radius: 10px;
  font-weight: 500; font-size: .96rem; color: var(--ink-600); }
.drawer__sublink .ic { width: 18px; height: 18px; color: var(--brand-600); }
.drawer__sublink:hover, .drawer__sublink.is-active { background: var(--ink-50); color: var(--brand-600); }
@media (min-width: 1120px) { .nav__login span { display: inline; } }
@media (max-width: 1119px) and (min-width: 981px) { .nav__login span { display: none; } .nav__login { padding: 9px; } }
@media (max-width: 980px) {
  .nav__menu, .nav__actions .btn, .nav__login { display: none; }
  .nav__toggle { display: grid; }
  .nav__actions { gap: 8px; flex: 0 0 auto; }
  .drawer {
    position: fixed; top: 0; right: 0; height: 100dvh; width: min(360px, 86vw); z-index: 120;
    background: var(--white); box-shadow: var(--shadow-lg); transform: translateX(102%);
    transition: transform .35s var(--ease); display: flex; flex-direction: column; padding: 22px;
    overflow-y: auto;
  }
  .drawer.is-open { transform: translateX(0); }
  .drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
  .drawer__close { width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--ink-200);
    background: var(--white); display: grid; place-items: center; color: var(--ink-700); }
  .drawer__link { display: flex; align-items: center; justify-content: space-between; padding: 15px 12px;
    border-radius: 12px; font-weight: 600; color: var(--ink-800); font-size: 1.05rem; }
  .drawer__link:hover, .drawer__link.is-active { background: var(--ink-50); color: var(--brand-600); }
  .drawer__divider { height: 1px; background: var(--ink-100); margin: 14px 0; }
  .drawer .btn { width: 100%; margin-top: 8px; }
}
@media (min-width: 981px) { .drawer, .nav__backdrop { display: none; } }

/* ---- Hero ---------------------------------------------------------------- */
.hero { position: relative; padding: calc(var(--nav-h) + clamp(56px,10vw,110px)) 0 clamp(70px,10vw,130px);
  background: var(--grad-dark); color: var(--ink-200); overflow: hidden; }
.hero__grid-bg { position: absolute; inset: 0; opacity: .5;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(80% 60% at 50% 0%, #000, transparent 80%); }
.hero__orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55; pointer-events: none; }
.hero__orb--1 { width: 420px; height: 420px; background: radial-gradient(circle, #fed136, transparent 65%); top: -120px; left: -80px; animation: float1 14s ease-in-out infinite; }
.hero__orb--2 { width: 380px; height: 380px; background: radial-gradient(circle, #f59e0b, transparent 65%); bottom: -140px; right: -60px; animation: float2 16s ease-in-out infinite; }
@keyframes float1 { 50% { transform: translate(30px, 40px); } }
@keyframes float2 { 50% { transform: translate(-40px, -30px); } }
.hero__inner { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(30px,5vw,64px); align-items: center; }
.hero__title { font-size: clamp(2.3rem, 5.2vw, 4rem); color: #fff; margin: 20px 0 20px; line-height: 1.06; }
.hero__lead { font-size: clamp(1.05rem, 2vw, 1.28rem); color: var(--ink-300); max-width: 620px; margin-bottom: 32px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__trust { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 22px; color: var(--ink-300); font-size: .93rem; }
.hero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust .ic { color: var(--accent-400); }

/* ---- Animated technical FX layer ---------------------------------------- */
.tech-fx { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.hero .container, .page-hero .container { position: relative; z-index: 3; }

.tech-ring { position: absolute; width: 680px; height: 680px; border-radius: 50%; top: -240px; right: -180px;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(254,209,54,.14) 60deg, transparent 140deg, rgba(245,158,11,.10) 220deg, transparent 320deg);
  filter: blur(6px); animation: fxSpin 28s linear infinite; }
.tech-ring--2 { width: 520px; height: 520px; top: auto; right: auto; bottom: -220px; left: -160px;
  background: conic-gradient(from 180deg, transparent, rgba(99,102,241,.08), transparent 45%); animation-duration: 40s; animation-direction: reverse; }
@keyframes fxSpin { to { transform: rotate(360deg); } }

.tech-net { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .55; }
.tech-net__lines line { stroke: rgba(255,255,255,.16); stroke-width: 1; stroke-dasharray: 4 7; animation: fxDash 2.6s linear infinite; }
.tech-net__nodes circle { fill: var(--accent-400); transform-box: fill-box; transform-origin: center; animation: fxPulse 3.2s ease-in-out infinite; }
.tech-net__nodes circle:nth-child(2n) { fill: #fff; animation-delay: -1.1s; }
.tech-net__nodes circle:nth-child(3n) { animation-delay: -1.9s; }
@keyframes fxDash { to { stroke-dashoffset: -22; } }
@keyframes fxPulse { 0%,100% { opacity: .35; transform: scale(1); } 50% { opacity: 1; transform: scale(1.5); } }

.tech-obj { position: absolute; display: inline-flex; align-items: center; gap: 8px; padding: 9px 13px; border-radius: 12px;
  background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.13);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  color: rgba(255,255,255,.82); font-family: var(--font-display); font-weight: 700; font-size: .8rem; letter-spacing: .02em;
  box-shadow: 0 12px 30px rgba(0,0,0,.28); white-space: nowrap;
  animation: fxFloat var(--d,16s) ease-in-out var(--dl,0s) infinite; will-change: transform; }
.tech-obj .ic { width: 16px; height: 16px; color: var(--accent-400); }
.tech-obj--amber .ic { color: var(--brand-500); }
@keyframes fxFloat {
  0%, 100% { transform: translate3d(0,0,0) rotate(var(--r,0deg)); }
  50% { transform: translate3d(var(--tx,0), var(--ty,-24px), 0) rotate(calc(var(--r,0deg) * -1)); }
}

.tech-dot { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-400);
  box-shadow: 0 0 12px 2px rgba(251,191,36,.55); animation: fxDrift var(--d,13s) linear var(--dl,0s) infinite; }
@keyframes fxDrift {
  0% { transform: translate(0,0); opacity: 0; }
  12% { opacity: .8; } 88% { opacity: .8; }
  100% { transform: translate(var(--tx,40px), var(--ty,-80px)); opacity: 0; }
}

/* Fewer / calmer objects on small screens for performance & clarity */
@media (max-width: 700px) {
  .tech-obj { font-size: .72rem; padding: 7px 10px; }
  .tech-obj:nth-of-type(n+5), .tech-dot:nth-of-type(n+4) { display: none; }
  .tech-ring { width: 420px; height: 420px; }
}
@media (prefers-reduced-motion: reduce) {
  .tech-dot { display: none; }
}

/* Hero visual panel */
.hero__panel { position: relative; }
.hero__card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg);
  padding: 22px; backdrop-filter: blur(10px); box-shadow: var(--shadow-lg);
}
.hero__card + .hero__card { margin-top: 16px; }
.hero__card-row { display: flex; align-items: center; gap: 14px; }
.hero__ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; flex: none;
  background: var(--grad-brand); color: #fff; }
.hero__card h4 { color: #fff; font-size: 1.02rem; }
.hero__card p { color: var(--ink-300); font-size: .9rem; margin-top: 2px; }
.hero__bar { height: 8px; border-radius: 99px; background: rgba(255,255,255,.14); margin-top: 14px; overflow: hidden; }
.hero__bar > i { display: block; height: 100%; border-radius: 99px; background: var(--grad-brand); }

/* ---- Page hero (inner pages) --------------------------------------------- */
.page-hero { position: relative; padding: calc(var(--nav-h) + clamp(48px,7vw,84px)) 0 clamp(40px,6vw,64px);
  background: var(--grad-dark); color: var(--ink-200); overflow: hidden; }
.page-hero__inner { position: relative; max-width: 820px; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.4vw, 3.1rem); margin: 16px 0 14px; }
.page-hero p { color: var(--ink-300); font-size: 1.14rem; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .9rem; color: var(--ink-400); flex-wrap: wrap; }
.breadcrumb a { color: var(--ink-300); }
.breadcrumb a:hover { color: #fff; }

/* ---- Cards / grids ------------------------------------------------------- */
.grid { display: grid; gap: clamp(18px, 2.4vw, 26px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--white); border: 1px solid var(--ink-100); border-radius: var(--radius-lg); padding: 30px;
  box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card__ico { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; color: #fff;
  background: var(--grad-brand); box-shadow: var(--shadow-glow); margin-bottom: 20px; }
.card__ico .ic { width: 28px; height: 28px; }
.card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.card p { color: var(--ink-500); font-size: 1rem; }
.card__cat { font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--brand-600); }
.card .link-arrow { margin-top: 18px; }
.card--link::after { content: ""; position: absolute; inset: 0; }

/* Feature list check items */
.checks { display: grid; gap: 12px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-600); }
.checks .ic { color: var(--ok-500); margin-top: 3px; flex: none; }

/* ---- Split (two column) -------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.split__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.media-frame { position: relative; border-radius: var(--radius-lg); padding: 14px; background: var(--grad-brand-soft);
  border: 1px solid var(--ink-100); }
.media-frame img { border-radius: 16px; width: 100%; }

/* ---- Process timeline ---------------------------------------------------- */
.process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; position: relative; }
.process::before { content: ""; position: absolute; top: 34px; left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, var(--brand-400), var(--accent-400)); opacity: .4; }
.process__step { text-align: center; position: relative; }
.process__dot { width: 70px; height: 70px; border-radius: 50%; margin: 0 auto 16px; display: grid; place-items: center;
  background: var(--white); border: 2px solid var(--ink-100); color: var(--brand-600); box-shadow: var(--shadow-md); position: relative; z-index: 1; }
.process__dot .ic { width: 26px; height: 26px; }
.process__num { position: absolute; top: -6px; right: calc(50% - 44px); width: 26px; height: 26px; border-radius: 50%;
  background: var(--grad-brand); color: #fff; font-size: .72rem; font-weight: 700; display: grid; place-items: center; z-index: 2; }
.process__step h4 { font-size: 1.08rem; margin-bottom: 6px; }
.process__step p { font-size: .92rem; color: var(--ink-500); }

/* ---- Stats --------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 28px 18px; border-radius: var(--radius); background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12); }
.bg-soft .stat { background: var(--white); border-color: var(--ink-100); box-shadow: var(--shadow-sm); }
.stat__num { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800;
  background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__label { color: var(--ink-400); font-weight: 500; margin-top: 4px; }
.bg-soft .stat__label { color: var(--ink-500); }

/* ---- Industries chips ---------------------------------------------------- */
.chips { display: flex; flex-wrap: wrap; gap: 14px; }
.chip { display: inline-flex; align-items: center; gap: 10px; padding: 13px 20px; border-radius: var(--radius-pill);
  background: var(--white); border: 1px solid var(--ink-100); box-shadow: var(--shadow-sm); font-weight: 600; color: var(--ink-700);
  transition: transform .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease); }
.chip:hover { transform: translateY(-3px); border-color: var(--brand-400); color: var(--brand-600); }
.chip .ic { color: var(--brand-600); }

/* ---- FAQ ----------------------------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq__item { border: 1px solid var(--ink-100); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm);
  overflow: hidden; transition: border-color .2s var(--ease); }
.faq__item.is-open { border-color: var(--brand-400); }
.faq__q { width: 100%; text-align: left; background: none; border: 0; padding: 22px 24px; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; color: var(--ink-900); }
.faq__q .ic { color: var(--brand-600); transition: transform .3s var(--ease); flex: none; }
.faq__item.is-open .faq__q .ic { transform: rotate(180deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a > div { padding: 0 24px 22px; color: var(--ink-500); }

/* ---- CTA band ------------------------------------------------------------ */
.cta-band { position: relative; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 72px); overflow: hidden;
  background: var(--grad-dark); color: #fff; text-align: center; box-shadow: var(--shadow-lg); }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 14px; }
.cta-band p { color: var(--ink-300); font-size: 1.14rem; max-width: 620px; margin: 0 auto 28px; }
.cta-band .hero__cta { justify-content: center; }

/* ---- Forms --------------------------------------------------------------- */
.form-card { background: var(--white); border: 1px solid var(--ink-100); border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 44px); box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: .92rem; color: var(--ink-700); }
.field label .req { color: var(--err-500); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--ink-200);
  background: var(--ink-50); color: var(--ink-900); font: inherit; font-size: 1rem; transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent-500); background: var(--white); box-shadow: 0 0 0 4px rgba(245,158,11,.18);
}
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--err-500); background: #fef2f2; }
.field__error { color: var(--err-500); font-size: .84rem; min-height: 1em; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .85rem; color: var(--ink-400); margin-top: 4px; }
.form-note a { font-weight: 600; }

/* ---- Toast --------------------------------------------------------------- */
.toast-wrap { position: fixed; top: calc(var(--nav-h) + 12px); right: 18px; z-index: 300; display: flex; flex-direction: column; gap: 12px; max-width: min(400px, calc(100vw - 36px)); }
.toast { display: flex; gap: 12px; align-items: flex-start; background: var(--white); border: 1px solid var(--ink-100);
  border-left: 4px solid var(--brand-600); border-radius: var(--radius); padding: 16px 18px; box-shadow: var(--shadow-lg);
  transform: translateX(120%); opacity: 0; transition: transform .4s var(--ease), opacity .4s var(--ease); }
.toast.is-show { transform: translateX(0); opacity: 1; }
.toast--ok { border-left-color: var(--ok-500); }
.toast--err { border-left-color: var(--err-500); }
.toast__ico { flex: none; }
.toast--ok .toast__ico { color: var(--ok-500); }
.toast--err .toast__ico { color: var(--err-500); }
.toast strong { display: block; color: var(--ink-900); font-family: var(--font-display); }
.toast p { font-size: .92rem; color: var(--ink-500); }
.toast__close { margin-left: auto; background: none; border: 0; color: var(--ink-400); }

/* ---- Login / Employee ---------------------------------------------------- */
.login-card { max-width: 460px; margin-inline: auto; text-align: center; }
.google-btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px; width: 100%;
  background: #fff; color: #1f2937; border: 1.5px solid var(--ink-200); border-radius: var(--radius-pill);
  padding: 15px 24px; font-weight: 600; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.google-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.google-btn svg { width: 22px; height: 22px; }

/* ---- Empty state --------------------------------------------------------- */
.empty { text-align: center; max-width: 560px; margin: 0 auto; padding: 48px 24px;
  border: 1.5px dashed var(--ink-200); border-radius: var(--radius-lg); background: var(--ink-50); }
.empty__ico { width: 64px; height: 64px; border-radius: 18px; margin: 0 auto 18px; display: grid; place-items: center;
  background: var(--grad-brand-soft); color: var(--brand-600); }
.empty h3 { margin-bottom: 8px; }
.empty p { color: var(--ink-500); }

/* ---- Footer -------------------------------------------------------------- */
.footer { background: var(--ink-900); color: var(--ink-300); padding: clamp(56px,7vw,80px) 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer p { color: var(--ink-400); font-size: .95rem; max-width: 320px; }
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; }
.footer__links { display: grid; gap: 11px; }
.footer__links a { color: var(--ink-400); font-size: .96rem; transition: color .2s var(--ease); }
.footer__links a:hover { color: #fff; }
.footer__contact { display: grid; gap: 12px; }
.footer__contact li { display: flex; gap: 11px; color: var(--ink-400); font-size: .95rem; align-items: flex-start; }
.footer__contact .ic { color: var(--accent-400); margin-top: 3px; flex: none; }
.footer__contact a { color: var(--ink-400); }
.footer__contact a:hover { color: #fff; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); font-size: .9rem; color: var(--ink-500); }
.footer__bottom a { color: var(--ink-400); }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(255,255,255,.06); color: var(--ink-300); transition: background .2s var(--ease), color .2s var(--ease); }
.footer__social a:hover { background: var(--grad-brand); color: #fff; }

/* ---- Scroll reveal ------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* ---- Utilities ----------------------------------------------------------- */
.stack-sm > * + * { margin-top: 14px; }
.mt-6 { margin-top: 24px; } .mt-8 { margin-top: 32px; }
.text-center { text-align: center; }
.prose p { margin-bottom: 16px; color: var(--ink-600); }
.prose p:last-child { margin-bottom: 0; }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tag { display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; border-radius: var(--radius-pill);
  background: var(--ink-50); border: 1px solid var(--ink-100); font-size: .88rem; font-weight: 600; color: var(--ink-600); }

/* ---- Responsive ---------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .process::before { display: none; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__panel { max-width: 520px; }
}
@media (max-width: 820px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split__reverse .split__media { order: -1; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand-col { grid-column: 1 / -1; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid-4, .stats { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero__cta .btn, .cta-band .btn { width: 100%; }
}
