/* =========================================================
   DigiFiler — Global Stylesheet
   Fonts: Plus Jakarta Sans (headings) + Inter (body)
   ========================================================= */

:root {
  /* Brand colours */
  --primary: #1147c2;
  --primary-600: #0f44b8;
  --primary-700: #14399f;
  --primary-light: #2563eb;
  --navy: #13236e;
  --navy-900: #0f1d5c;
  --green: #0a8f55;
  --green-600: #008458;
  --green-light: #22c55e;

  /* Neutrals */
  --heading: #0b1535;
  --text: #0f172a;
  --muted: #5b6478;
  --muted-2: #7a8499;
  --border: #e3e8f2;
  --border-2: #d6deec;
  --bg: #fbfcfe;
  --bg-soft: #ebf1fd;
  --bg-blue-100: #dbe9ff;
  --white: #ffffff;

  /* Gradients */
  --grad-hero: linear-gradient(135deg, #0a4fd4 0%, #1239a6 45%, #13247a 100%);
  --grad-btn: linear-gradient(135deg, #1449c6 0%, #13298a 100%);
  --grad-icon: linear-gradient(135deg, #1550d0 0%, #14328f 100%);

  /* Misc */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .05);
  --shadow: 0 4px 18px -6px rgba(17, 71, 194, .12), 0 1px 3px rgba(15, 23, 42, .05);
  --shadow-lg: 0 18px 40px -14px rgba(17, 71, 194, .28);
  --shadow-btn: 0 8px 20px -6px rgba(19, 41, 138, .55);
  --container: 1152px;
  --header-h: 68px;

  --font-head: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, picture { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; }
ul { list-style: none; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--heading);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}
:focus-visible { outline: 2px solid var(--primary-light); outline-offset: 3px; border-radius: 6px; }
::selection { background: #cfe0ff; color: var(--heading); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Icons ---------- */
.icon { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.icon-sm { width: 16px; height: 16px; }
.icon-xs { width: 14px; height: 14px; }
.icon-lg { width: 24px; height: 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  padding: 13px 26px; border-radius: 10px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn .icon { width: 16px; height: 16px; transition: transform .2s ease; }
.btn:hover .icon-arrow { transform: translateX(3px); }
.btn-primary { background: var(--grad-btn); color: #fff; box-shadow: var(--shadow-btn); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -8px rgba(19, 41, 138, .65); }
.btn-outline { background: #fff; color: var(--primary-700); border: 1.5px solid var(--border-2); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-white { background: #fff; color: var(--primary-700); box-shadow: 0 8px 20px -8px rgba(0,0,0,.35); }
.btn-white:hover { transform: translateY(-2px); }
.btn-ghost-light { color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.btn-ghost-light:hover { background: rgba(255,255,255,.1); }
.btn-sm { padding: 9px 18px; font-size: 13px; border-radius: 9px; }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 252, 254, .85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 4px 20px -10px rgba(15, 23, 42, .15); }
.nav { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-head); font-weight: 800; font-size: 19px; letter-spacing: -0.03em; color: var(--heading); }
.logo-mark {
  width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  background: var(--grad-icon); color: #fff; box-shadow: 0 4px 10px -3px rgba(20, 57, 159, .5);
}
.logo-mark .icon { width: 18px; height: 18px; }
.logo .accent { color: var(--primary); }
.logo-light { color: #fff; }
.logo-light .logo-mark { background: var(--green); box-shadow: 0 4px 10px -3px rgba(10, 143, 85, .6); }
.logo-light .accent { color: #fff; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 14px; font-weight: 500; color: #3b4458;
  padding: 8px 14px; border-radius: 8px; transition: background .2s ease, color .2s ease;
}
.nav-link:hover { color: var(--primary); background: #eef4ff; }
.nav-link.active { color: var(--primary); background: var(--bg-blue-100); font-weight: 600; }
.nav-link .icon { width: 15px; height: 15px; transition: transform .2s ease; }
.nav-cta { margin-left: 8px; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 270px; background: #fff; border: 1px solid var(--border);
  border-radius: 14px; box-shadow: 0 20px 45px -15px rgba(15, 23, 42, .25);
  padding: 8px; opacity: 0; visibility: hidden; transition: all .2s ease;
}
.dropdown-menu::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu, .dropdown.open .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown:hover > .nav-link .icon, .dropdown.open > .nav-link .icon { transform: rotate(180deg); }
.dropdown-item { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 10px; transition: background .2s ease; }
.dropdown-item:hover { background: #f1f6ff; }
.dropdown-item .di-icon {
  width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center;
  background: #e8f0ff; color: var(--primary);
}
.dropdown-item .di-icon .icon { width: 17px; height: 17px; }
.dropdown-item strong { display: block; font-family: var(--font-head); font-size: 13.5px; font-weight: 700; color: var(--heading); }
.dropdown-item span { display: block; font-size: 12px; color: var(--muted-2); line-height: 1.4; }
.dropdown-divider { height: 1px; background: var(--border); margin: 6px 4px; }

.menu-toggle { display: none; width: 42px; height: 42px; border-radius: 10px; place-items: center; color: var(--heading); border: 1px solid var(--border); background: #fff; }
.menu-toggle .icon { width: 22px; height: 22px; }
.menu-toggle .icon-close { display: none; }
body.nav-open .menu-toggle .icon-open { display: none; }
body.nav-open .menu-toggle .icon-close { display: block; }

/* Mobile nav panel */
.mobile-nav {
  display: none; position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0; z-index: 99;
  background: var(--bg); padding: 16px 24px 32px; overflow-y: auto;
  transform: translateY(-8px); opacity: 0; visibility: hidden; transition: all .25s ease;
}
body.nav-open .mobile-nav { opacity: 1; visibility: visible; transform: none; }
body.nav-open { overflow: hidden; }
.mobile-nav a.m-link { display: flex; align-items: center; justify-content: space-between; padding: 14px 12px; font-weight: 600; font-family: var(--font-head); font-size: 16px; color: var(--heading); border-bottom: 1px solid var(--border); }
.mobile-nav a.m-link.active { color: var(--primary); }
.mobile-nav .m-sub { padding: 6px 0 10px 12px; border-bottom: 1px solid var(--border); }
.mobile-nav .m-sub a { display: flex; align-items: center; gap: 10px; padding: 9px 0; font-size: 14.5px; color: var(--muted); }
.mobile-nav .m-sub a .icon { width: 16px; height: 16px; color: var(--primary); }
.mobile-nav .m-label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green-600); padding: 16px 12px 4px; }
.mobile-nav .btn { margin-top: 22px; width: 100%; }

/* ---------- Section basics ---------- */
.section { padding: 96px 0; }
.section-sm { padding: 72px 0; }
.section-soft { background: var(--bg-soft); }
.section-white { background: #fff; }
.eyebrow {
  display: inline-block; font-family: var(--font-body);
  font-size: 11.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--green-600); margin-bottom: 12px;
}
.section-head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 38px); font-weight: 700; }
.section-head p { margin-top: 14px; color: var(--muted); font-size: 16px; }
.text-blue { color: var(--primary); }
.text-green { color: var(--green); }

/* ---------- Home hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: 96px 0 104px;
  background:
    radial-gradient(900px 480px at 30% -5%, rgba(59, 130, 246, .16), transparent 65%),
    radial-gradient(600px 400px at 95% 20%, rgba(96, 165, 250, .10), transparent 70%),
    linear-gradient(180deg, #f4f8ff 0%, var(--bg) 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.02fr 1fr; gap: 56px; align-items: center; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: #e3eeff; border: 1px solid #c4d8fb;
  font-family: var(--font-head); font-size: 12.5px; font-weight: 600; color: var(--primary-700);
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(10, 143, 85, .18); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(10,143,85,.18); } 50% { box-shadow: 0 0 0 6px rgba(10,143,85,.06); } }
.hero h1 {
  margin-top: 26px;
  font-size: clamp(38px, 5.2vw, 60px); font-weight: 800; letter-spacing: -0.035em; line-height: 1.12;
}
.hero-lead { margin-top: 24px; font-size: 17.5px; line-height: 1.75; color: var(--muted); max-width: 540px; }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-actions .btn { padding: 15px 28px; }
.hero-trust { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px 26px; }
.hero-trust li { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: #334155; }
.hero-trust .icon { width: 17px; height: 17px; color: var(--green); }
.hero-visual { position: relative; }
.hero-visual .frame {
  position: relative; border-radius: 22px; background: #fff; padding: 14px;
  box-shadow: 0 30px 60px -25px rgba(17, 71, 194, .28), 0 0 0 1px rgba(17, 71, 194, .05);
  animation: float 6s ease-in-out infinite;
}
.hero-visual .frame img { border-radius: 14px; width: 100%; height: auto; }
.hero-visual::before {
  content: ""; position: absolute; inset: 8% -6% -8% 8%; z-index: -1;
  background: radial-gradient(closest-side, rgba(37, 99, 235, .2), transparent);
  filter: blur(20px);
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.floating-chip {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 10px 14px; box-shadow: var(--shadow-lg); font-size: 12.5px;
}
.floating-chip strong { display: block; font-family: var(--font-head); font-size: 14px; color: var(--heading); line-height: 1.2; }
.floating-chip span { color: var(--muted-2); }
.floating-chip .fc-icon { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: #e6f6ee; color: var(--green); }
.floating-chip .fc-icon.blue { background: #e7efff; color: var(--primary); }
.chip-1 { left: -26px; bottom: 34px; animation: float 5s ease-in-out infinite .5s; }
.chip-2 { right: -18px; top: 22px; animation: float 5.5s ease-in-out infinite 1s; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative; overflow: hidden; text-align: center; color: #fff;
  background: var(--grad-hero);
  padding: 84px 0 88px;
}
.page-hero::before, .page-hero::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none;
}
.page-hero::before { width: 520px; height: 520px; top: -260px; left: -140px; background: radial-gradient(closest-side, rgba(96, 165, 250, .25), transparent); }
.page-hero::after { width: 460px; height: 460px; bottom: -260px; right: -120px; background: radial-gradient(closest-side, rgba(10, 143, 85, .18), transparent); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: #10b26a; margin-bottom: 14px; }
.page-hero h1 { color: #fff; font-size: clamp(32px, 4.4vw, 46px); font-weight: 800; max-width: 760px; margin: 0 auto; letter-spacing: -0.03em; }
.page-hero p { margin: 18px auto 0; max-width: 640px; color: rgba(235, 242, 255, .9); font-size: 16.5px; line-height: 1.7; }
.page-hero .crumbs { margin-top: 26px; display: inline-flex; gap: 8px; align-items: center; font-size: 13px; color: rgba(235,242,255,.75); }
.page-hero .crumbs a:hover { color: #fff; }

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #cbd9f5; }
.icon-tile {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: var(--grad-icon); color: #fff; box-shadow: 0 6px 14px -5px rgba(20, 57, 159, .55);
}
.icon-tile .icon { width: 22px; height: 22px; }
.icon-tile.soft { background: #e3edff; color: var(--primary); box-shadow: none; width: 42px; height: 42px; border-radius: 11px; }
.icon-tile.soft .icon { width: 20px; height: 20px; }
.icon-tile.green { background: var(--green); box-shadow: 0 6px 14px -5px rgba(10, 143, 85, .55); }

/* Core service card */
.core-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.core-card { padding: 34px 32px 30px; }
.core-card h3 { font-size: 22px; margin-top: 24px; }
.core-card p { margin-top: 12px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.check-list { margin-top: 20px; display: grid; gap: 11px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: #2a3346; }
.check-list .icon { width: 17px; height: 17px; color: var(--green); margin-top: 2px; }
.link-arrow { margin-top: 24px; display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--primary); }
.link-arrow .icon { width: 16px; height: 16px; transition: transform .2s ease; }
.link-arrow:hover .icon { transform: translateX(4px); }

/* More services — blue gradient section */
.section-gradient { position: relative; background: var(--grad-hero); color: #fff; overflow: hidden; }
.section-gradient::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(700px 360px at 15% 0%, rgba(96, 165, 250, .22), transparent 70%);
}
.section-gradient .container { position: relative; }
.section-gradient h2 { color: #fff; }
.section-gradient .section-head p { color: rgba(226, 236, 255, .85); }
.glass-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.glass-card {
  padding: 24px 22px 26px; border-radius: 18px;
  background: rgba(255, 255, 255, .09); border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(6px); transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.glass-card:hover { transform: translateY(-5px); background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .3); }
.glass-card .icon-tile { width: 44px; height: 44px; border-radius: 11px; }
.glass-card h3 { color: #fff; font-size: 17px; margin-top: 18px; }
.glass-card p { margin-top: 8px; color: rgba(226, 236, 255, .82); font-size: 14px; line-height: 1.6; }

/* Small service cards (services page) */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card { padding: 26px 24px 28px; }
.svc-card h3 { font-size: 17.5px; margin-top: 18px; }
.svc-card p { margin-top: 8px; color: var(--muted); font-size: 14.5px; line-height: 1.65; }

/* ---------- Stats band ---------- */
.stats-band { margin-top: -52px; position: relative; z-index: 2; }
.stats-wrap {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: #fff; border: 1px solid var(--border); border-radius: 20px; box-shadow: var(--shadow-lg);
}
.stat { padding: 28px 20px; text-align: center; }
.stat + .stat { border-left: 1px solid var(--border); }
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: 34px; color: var(--primary); letter-spacing: -0.03em; line-height: 1.1; }
.stat .lbl { margin-top: 6px; font-size: 13.5px; color: var(--muted); }

/* ---------- Why choose ---------- */
.why-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 64px; align-items: center; }
.why-copy h2 { font-size: clamp(28px, 3.4vw, 38px); }
.why-copy > p { margin-top: 16px; color: var(--muted); font-size: 16px; line-height: 1.75; }
.why-copy .btn { margin-top: 30px; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.feature { padding: 24px; }
.feature h3 { font-size: 16.5px; margin-top: 16px; }
.feature p { margin-top: 6px; font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; counter-reset: step; }
.steps::before {
  content: ""; position: absolute; top: 34px; left: 12%; right: 12%; height: 2px;
  background: repeating-linear-gradient(90deg, #b8cdf5 0 8px, transparent 8px 16px);
}
.step { position: relative; text-align: center; padding: 0 8px; }
.step-num {
  position: relative; width: 68px; height: 68px; margin: 0 auto; border-radius: 20px;
  display: grid; place-items: center; background: #fff; border: 1px solid var(--border);
  box-shadow: var(--shadow); color: var(--primary);
}
.step-num .icon { width: 26px; height: 26px; }
.step-num::after {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: -9px; right: -9px; width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center; background: var(--green); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 11px; box-shadow: 0 0 0 3px var(--bg-soft);
}
.step h3 { margin-top: 22px; font-size: 17px; }
.step p { margin-top: 8px; font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ---------- Industries ---------- */
.ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ind-card { display: flex; align-items: center; gap: 14px; padding: 18px 20px; border-radius: 16px; }
.ind-card h3 { font-size: 15px; }
.ind-card p { font-size: 12.5px; color: var(--muted-2); margin-top: 2px; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.faq-item.open { border-color: #c7d8f8; box-shadow: var(--shadow); }
.faq-q {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--heading);
}
.faq-q .plus { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: #eef4ff; color: var(--primary); flex-shrink: 0; transition: transform .25s ease, background .25s ease, color .25s ease; }
.faq-q .plus .icon { width: 16px; height: 16px; }
.faq-item.open .plus { transform: rotate(45deg); background: var(--primary); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 24px 22px; color: var(--muted); font-size: 15px; line-height: 1.75; }

/* ---------- CTA box ---------- */
.cta-box {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(180deg, #d9e9ff 0%, #d2e4ff 100%);
  border-radius: 24px; padding: 64px 32px;
}
.cta-box::before, .cta-box::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; }
.cta-box::before { width: 280px; height: 280px; left: -90px; top: -120px; background: radial-gradient(closest-side, rgba(255,255,255,.7), transparent); }
.cta-box::after { width: 300px; height: 300px; right: -100px; bottom: -140px; background: radial-gradient(closest-side, rgba(37,99,235,.15), transparent); }
.cta-box > * { position: relative; }
.cta-box h2 { font-size: clamp(26px, 3.4vw, 36px); }
.cta-box p { margin: 14px auto 0; max-width: 520px; color: var(--muted); font-size: 15.5px; }
.cta-box .btn { margin-top: 28px; }

.cta-simple { text-align: center; max-width: 560px; margin: 0 auto; }
.cta-simple .cta-icon { width: 44px; height: 44px; margin: 0 auto 14px; color: var(--green); }
.cta-simple .cta-icon .icon { width: 36px; height: 36px; margin: 0 auto; }
.cta-simple h2 { font-size: clamp(24px, 3vw, 30px); }
.cta-simple p { margin-top: 12px; color: var(--muted); font-size: 15px; }
.cta-simple .btn { margin-top: 26px; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.about-copy h2 { font-size: clamp(26px, 3vw, 32px); }
.about-copy p { margin-top: 16px; color: var(--muted); font-size: 15.5px; line-height: 1.75; }
.about-copy .text-blue { font-weight: 600; }
.stat-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.stat-card { padding: 30px 20px; text-align: center; }
.stat-card .num { font-family: var(--font-head); font-weight: 800; font-size: 36px; color: var(--primary); letter-spacing: -0.03em; line-height: 1.1; }
.stat-card .lbl { margin-top: 6px; font-size: 13.5px; color: var(--muted); }
.callout {
  margin-top: 32px; display: flex; gap: 14px; align-items: flex-start;
  background: #dcebff; border: 1px solid #bcd5fb; border-radius: 14px; padding: 18px 20px;
}
.callout .icon { width: 26px; height: 26px; color: var(--green); flex-shrink: 0; }
.callout p { margin: 0; font-size: 14px; color: #1e293b; line-height: 1.6; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { padding: 34px 28px; text-align: center; }
.value-card .icon-tile { margin: 0 auto; }
.value-card h3 { margin-top: 22px; font-size: 18px; }
.value-card p { margin-top: 10px; color: var(--muted); font-size: 14.5px; line-height: 1.65; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.team-card { padding: 28px 20px; text-align: center; }
.team-card .avatar {
  width: 72px; height: 72px; margin: 0 auto; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad-icon); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 22px;
}
.team-card h3 { margin-top: 16px; font-size: 16px; }
.team-card p { margin-top: 4px; font-size: 13.5px; color: var(--muted); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.72fr 1fr; gap: 28px; align-items: start; }
.info-stack { display: grid; gap: 16px; }
.info-card { display: flex; gap: 16px; align-items: flex-start; padding: 22px; border-radius: 16px; }
.info-card .icon-tile { width: 42px; height: 42px; border-radius: 11px; }
.info-card .icon-tile .icon { width: 19px; height: 19px; }
.info-card h3 { font-size: 15.5px; }
.info-card p, .info-card a { font-size: 14px; color: var(--muted); line-height: 1.6; }
.info-card a:hover { color: var(--primary); }
.form-card { padding: 32px; border-radius: 20px; }
.form-card:hover { transform: none; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 13.5px; font-weight: 600; color: var(--heading); }
.form-group label .req { color: #e11d48; }
.form-control {
  width: 100%; padding: 12px 14px; font-size: 14.5px;
  background: #f8fafd; border: 1px solid var(--border-2); border-radius: 10px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; outline: none;
}
.form-control::placeholder { color: #9aa3b5; }
.form-control:focus { border-color: var(--primary-light); background: #fff; box-shadow: 0 0 0 4px rgba(37, 99, 235, .12); }
.form-control.invalid { border-color: #e11d48; box-shadow: 0 0 0 4px rgba(225, 29, 72, .1); }
select.form-control { appearance: none; -webkit-appearance: none; padding-right: 40px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235b6478' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; }
textarea.form-control { min-height: 130px; resize: vertical; }
.error-msg { font-size: 12.5px; color: #e11d48; display: none; }
.form-group.has-error .error-msg { display: block; }
.form-actions { margin-top: 24px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.form-note { font-size: 12.5px; color: var(--muted-2); }
.form-success {
  display: none; margin-top: 20px; padding: 14px 16px; border-radius: 12px;
  background: #e6f6ee; border: 1px solid #b6e3cb; color: #065f3b; font-size: 14px;
  align-items: center; gap: 10px;
}
.form-success.show { display: flex; }
.map-card { margin-top: 28px; border-radius: 20px; overflow: hidden; border: 1px solid var(--border); background: #fff; }
.map-card iframe { display: block; width: 100%; height: 360px; border: 0; }

/* ---------- Blogs ---------- */
.blog-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 40px; }
.filter-btn { padding: 8px 18px; border-radius: 999px; font-size: 13.5px; font-weight: 600; color: var(--muted); background: #fff; border: 1px solid var(--border); transition: all .2s ease; }
.filter-btn:hover { color: var(--primary); border-color: #c7d8f8; }
.filter-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card { overflow: hidden; display: flex; flex-direction: column; }
.blog-thumb { position: relative; height: 180px; display: grid; place-items: center; color: #fff; background: var(--grad-hero); overflow: hidden; }
.blog-thumb.t2 { background: linear-gradient(135deg, #0a8f55, #0f5f7a); }
.blog-thumb.t3 { background: linear-gradient(135deg, #2563eb, #7c3aed); }
.blog-thumb::after { content: ""; position: absolute; inset: 0; background: radial-gradient(300px 160px at 20% 0%, rgba(255,255,255,.25), transparent 70%); }
.blog-thumb .icon { width: 54px; height: 54px; stroke-width: 1.5; opacity: .92; position: relative; z-index: 1; }
.blog-tag { position: absolute; top: 14px; left: 14px; z-index: 1; padding: 4px 11px; border-radius: 999px; background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.35); font-size: 11.5px; font-weight: 600; backdrop-filter: blur(4px); }
.blog-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.blog-meta { display: flex; align-items: center; gap: 14px; font-size: 12.5px; color: var(--muted-2); }
.blog-meta span { display: inline-flex; align-items: center; gap: 5px; }
.blog-meta .icon { width: 13px; height: 13px; }
.blog-body h3 { margin-top: 12px; font-size: 17.5px; line-height: 1.35; }
.blog-body p { margin-top: 10px; font-size: 14px; color: var(--muted); line-height: 1.65; flex: 1; }
.blog-card.hidden { display: none; }
.newsletter { display: flex; gap: 10px; max-width: 460px; margin: 26px auto 0; }
.newsletter .form-control { background: #fff; }

/* ---------- Legal pages ---------- */
.legal-grid { display: grid; grid-template-columns: 250px 1fr; gap: 40px; align-items: start; }
.toc { position: sticky; top: calc(var(--header-h) + 24px); padding: 22px; border-radius: 16px; }
.toc:hover { transform: none; }
.toc h4 { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--green-600); font-family: var(--font-body); margin-bottom: 12px; }
.toc a { display: block; padding: 7px 10px; font-size: 13.5px; color: var(--muted); border-radius: 8px; transition: all .2s ease; }
.toc a:hover, .toc a.active { color: var(--primary); background: #eef4ff; }
.legal-body { padding: 44px 48px; border-radius: 20px; }
.legal-body:hover { transform: none; }
.legal-body .updated { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted-2); padding: 6px 12px; background: #f1f5fb; border-radius: 999px; }
.legal-body .updated .icon { width: 14px; height: 14px; }
.legal-body .intro { margin-top: 20px; color: var(--muted); font-size: 15.5px; line-height: 1.8; }
.legal-body section { padding-top: 30px; scroll-margin-top: calc(var(--header-h) + 24px); }
.legal-body h2 { font-size: 21px; display: flex; align-items: center; gap: 12px; }
.legal-body h2 .n { width: 30px; height: 30px; border-radius: 9px; display: inline-grid; place-items: center; background: #e3edff; color: var(--primary); font-size: 13px; flex-shrink: 0; }
.legal-body h3 { font-size: 16px; margin-top: 18px; }
.legal-body p { margin-top: 12px; color: var(--muted); font-size: 15px; line-height: 1.8; }
.legal-body ul { margin-top: 12px; display: grid; gap: 8px; }
.legal-body ul li { position: relative; padding-left: 22px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.legal-body ul li::before { content: ""; position: absolute; left: 4px; top: 10px; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.legal-body a { color: var(--primary); font-weight: 500; }
.legal-body a:hover { text-decoration: underline; }
.legal-contact { margin-top: 18px; padding: 20px 22px; border-radius: 14px; background: var(--bg-soft); border: 1px solid #d3e1fa; }
.legal-contact p { margin: 4px 0 0; font-size: 14.5px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(226, 234, 255, .82); }
.footer-top { display: grid; grid-template-columns: 1.15fr 1fr 1fr 1.1fr; gap: 40px; padding-top: 64px; padding-bottom: 52px; }
.footer-brand p { margin-top: 16px; font-size: 14px; line-height: 1.7; max-width: 280px; }
.socials { margin-top: 22px; display: flex; gap: 10px; }
.socials a { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .1); color: #fff; transition: background .2s ease, transform .2s ease; }
.socials a:hover { background: var(--green); transform: translateY(-2px); }
.socials .icon { width: 15px; height: 15px; }
.footer-col h4 { font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #12b76a; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: 14px; color: rgba(226, 234, 255, .85); transition: color .2s ease, padding .2s ease; }
.footer-col a:hover { color: #fff; padding-left: 3px; }
.footer-contact li { display: flex; gap: 11px; font-size: 14px; line-height: 1.6; }
.footer-contact .icon { width: 16px; height: 16px; color: #12b76a; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 22px; padding-bottom: 22px; font-size: 13px; }
.footer-bottom nav { display: flex; gap: 22px; }
.footer-bottom a:hover { color: #fff; }

/* Back to top */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; background: var(--grad-btn); color: #fff; box-shadow: var(--shadow-btn);
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .25s ease;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top .icon { width: 18px; height: 18px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
.no-js .reveal { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1100px) {
  .glass-grid { grid-template-columns: repeat(3, 1fr); }
  .ind-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: grid; }
  .mobile-nav { display: block; }
  .section { padding: 76px 0; }
  .hero { padding: 64px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 620px; margin: 0 auto; width: 100%; }
  .why-grid, .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 44px 24px; }
  .steps::before { display: none; }
  .svc-grid, .blog-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .legal-grid { grid-template-columns: 1fr; }
  .toc { position: static; }
  .stats-wrap { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: none; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--border); }
}

@media (max-width: 767px) {
  .core-grid { grid-template-columns: 1fr; }
  .glass-grid { grid-template-columns: repeat(2, 1fr); }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .legal-body { padding: 30px 22px; }
  .page-hero { padding: 64px 0 68px; }
  .chip-1 { left: 6px; bottom: -18px; }
  .chip-2 { right: 6px; top: -16px; }
}

@media (max-width: 575px) {
  .container { padding: 0 16px; }
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 38px; }
  .hero h1 { font-size: 36px; }
  .hero-lead { font-size: 16px; }
  .hero-actions .btn { flex: 1 1 100%; }
  .core-card { padding: 26px 22px; }
  .glass-grid, .svc-grid, .blog-grid, .values-grid, .feature-grid, .ind-grid, .team-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 24px 18px; }
  .footer-top { grid-template-columns: 1fr; padding-top: 52px; padding-bottom: 40px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .cta-box { padding: 48px 20px; border-radius: 20px; }
  .floating-chip { display: none; }
  .stat .num { font-size: 28px; }
  .newsletter { flex-direction: column; }
  .stat-cards { gap: 12px; }
  .stat-card { padding: 22px 12px; }
  .stat-card .num { font-size: 28px; }
}

/* ---------- Dynamic additions (PHP version) ---------- */
.logo-img img { display: block; max-width: 220px; object-fit: contain; }
.form-error { display: none; margin-top: 16px; padding: 12px 16px; border-radius: 12px; background: #fff1f3; border: 1px solid #fbc8d2; color: #9f1239; font-size: 14px; }
.form-error.show { display: block; }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.about-copy .reveal p:first-child { margin-top: 16px; }
.feature-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 991px) { .feature-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .feature-grid-4 { grid-template-columns: 1fr; } }
.wa-float {
  position: fixed; left: 22px; bottom: 22px; z-index: 90; width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; background: #25d366; color: #fff; box-shadow: 0 10px 24px -8px rgba(37, 211, 102, .7);
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float .icon { width: 26px; height: 26px; }
