/* =========================================================
   PIMS Technologies — corporate marketing site
   Palette: deep navy (#0A2A5E) + green gradient (#2BB673→#8DC63F) + white
   ========================================================= */

:root {
  /* Brand */
  --navy-900: #071E45;
  --navy-800: #0A2A5E;
  --navy-700: #123E86;
  --navy-600: #1B4FA6;
  --green-500: #2BB673;
  --green-400: #57C05B;
  --green-300: #8DC63F;
  --blue-bright: #1C7CE5;

  /* Neutrals */
  --white: #ffffff;
  --paper: #f6f8fc;
  --paper-2: #eef2f9;
  --ink-900: #0e1830;
  --ink-700: #33405c;
  --ink-500: #64708c;
  --line: #e2e8f4;

  /* Gradients */
  --grad-brand: linear-gradient(100deg, var(--green-500) 0%, var(--green-300) 100%);
  --grad-navy: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
  --grad-hero: radial-gradient(1200px 700px at 15% -10%, #113a86 0%, transparent 55%),
               radial-gradient(1000px 800px at 100% 0%, #0d357a 0%, transparent 50%),
               linear-gradient(160deg, #071e45 0%, #0a2a5e 55%, #08234f 100%);

  /* Shape */
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 8px rgba(10, 42, 94, 0.06);
  --shadow-md: 0 14px 40px rgba(10, 42, 94, 0.10);
  --shadow-lg: 0 30px 70px rgba(8, 30, 70, 0.16);

  --maxw: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink-700);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, .brand-name {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--ink-900);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }

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

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy-800); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: "Plus Jakarta Sans", sans-serif; font-weight: 600; font-size: 15px;
  padding: 12px 22px; border-radius: 100px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-primary {
  color: #fff; background: var(--grad-brand);
  box-shadow: 0 10px 26px rgba(43, 182, 115, 0.32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(43, 182, 115, 0.42); }

.btn-ghost { color: #fff; border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.04); }
.btn-ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }

.btn-nav { color: #fff; background: var(--navy-800); padding: 10px 20px; }
.btn-nav:hover { background: var(--navy-700); transform: translateY(-1px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s, border-color .3s, background .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }

.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark { width: 40px; height: 40px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-weight: 800; font-size: 20px; letter-spacing: -0.01em; color: var(--navy-800); }
.brand-sub { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue-bright); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--ink-700); transition: color .2s; }
.nav-links a:not(.btn):hover { color: var(--navy-800); }
.nav-links a:not(.btn) { position: relative; }
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--grad-brand); border-radius: 2px; transition: width .25s var(--ease);
}
.nav-links a:not(.btn):hover::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy-800); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; flex-direction: column; gap: 4px; padding: 12px 24px 22px; background: #fff; border-bottom: 1px solid var(--line); }
.mobile-menu a { padding: 12px 6px; font-weight: 600; color: var(--ink-900); border-bottom: 1px solid var(--paper-2); }
.mobile-menu a.btn { border: 0; margin-top: 10px; color: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  padding: clamp(120px, 18vh, 190px) 0 clamp(90px, 12vh, 130px);
  background: var(--grad-hero);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55; }
.orb-1 { width: 520px; height: 520px; top: -160px; right: -120px;
  background: radial-gradient(circle, rgba(141,198,63,.55), transparent 70%); animation: float1 16s ease-in-out infinite; }
.orb-2 { width: 460px; height: 460px; bottom: -180px; left: -140px;
  background: radial-gradient(circle, rgba(43,182,115,.5), transparent 70%); animation: float2 20s ease-in-out infinite; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 78%);
}
@keyframes float1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,26px)} }
@keyframes float2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(28px,-24px)} }

.hero-inner { position: relative; z-index: 1; text-align: center; max-width: 900px; }
.hero-eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: #a9d5ff; padding: 8px 16px; border: 1px solid rgba(255,255,255,.16); border-radius: 100px;
  background: rgba(255,255,255,.05); margin-bottom: 26px;
}
.hero-title { color: #fff; font-size: clamp(2.1rem, 5.4vw, 4rem); font-weight: 800; letter-spacing: -0.03em; }
.hero-lead { margin: 26px auto 0; max-width: 660px; font-size: clamp(1.02rem, 2vw, 1.22rem); color: #cdd9ee; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 38px; }

.hero-badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 44px; }
.chip {
  display: inline-flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 500;
  color: #dbe6f7; padding: 9px 16px; border-radius: 100px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
}
.chip-dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.dot-live { background: var(--green-300); box-shadow: 0 0 0 4px rgba(141,198,63,.2); }
.dot-navy { background: #7fb0ff; }

.hero-scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 1;
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.3); border-radius: 100px; }
.hero-scroll span { position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: #fff; border-radius: 4px; animation: scrolldot 1.8s ease-in-out infinite; }
@keyframes scrolldot { 0%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 80%{opacity:0;transform:translate(-50%,14px)} }

.only-lg { display: none; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--navy-900); color: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; padding: 0; }
.trust-item { padding: 30px 26px; position: relative; }
.trust-item::after { content:""; position:absolute; right:0; top:24%; height:52%; width:1px; background: rgba(255,255,255,.12); }
.trust-item:last-child::after { display: none; }
.trust-k { display: block; font-family: "Plus Jakarta Sans"; font-weight: 700; font-size: 17px; color: #fff; margin-bottom: 4px; }
.trust-v { display: block; font-size: 14px; color: #9fb2d6; }

/* ---------- Section scaffolding ---------- */
.section { padding: clamp(72px, 10vw, 120px) 0; }
.section-alt { background: var(--paper); }
.section-head { max-width: 760px; margin: 0 auto clamp(44px, 6vw, 66px); text-align: center; }
.kicker {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green-500); margin-bottom: 16px;
}
.kicker-light { color: var(--green-300); }
.section-title { font-size: clamp(1.7rem, 3.8vw, 2.7rem); font-weight: 800; }
.section-lead { margin-top: 20px; font-size: clamp(1rem, 1.6vw, 1.15rem); color: var(--ink-500); }
.section-lead-light { color: #c3d1ea; }

/* ---------- Card grids ---------- */
.cards-grid { display: grid; gap: 22px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

.feature-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #d3ddf0; }
.feature-card h3 { font-size: 19px; margin-bottom: 8px; }
.feature-card p { font-size: 15px; color: var(--ink-500); }
.feature-ic {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 20px;
  background: var(--grad-navy); position: relative;
}
.feature-ic::after {
  content:""; position:absolute; inset:0; border-radius:14px;
  background: var(--grad-brand); opacity: .0; transition: opacity .3s;
}
.feature-card:hover .feature-ic::after { opacity: .18; }
.feature-ic::before {
  content:""; position:absolute; inset:0; margin:auto; width:22px; height:22px;
  background: #fff; -webkit-mask-size: contain; mask-size: contain; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
}
.ic-platform::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M3 3h8v8H3V3zm10 0h8v8h-8V3zM3 13h8v8H3v-8zm10 0h8v8h-8v-8z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M3 3h8v8H3V3zm10 0h8v8h-8V3zM3 13h8v8H3v-8zm10 0h8v8h-8v-8z'/%3E%3C/svg%3E"); }
.ic-pos::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M6 2h12a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm1 4v3h10V6H7zm0 6h3v2H7v-2zm5 0h3v2h-3v-2z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M6 2h12a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm1 4v3h10V6H7zm0 6h3v2H7v-2zm5 0h3v2h-3v-2z'/%3E%3C/svg%3E"); }
.ic-pay::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M2 6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v2H2V6zm0 4h20v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-8zm3 5h6v2H5v-2z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M2 6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v2H2V6zm0 4h20v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-8zm3 5h6v2H5v-2z'/%3E%3C/svg%3E"); }
.ic-cloud::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M6 19a5 5 0 0 1-.5-9.98 6 6 0 0 1 11.6-1.4A4.5 4.5 0 0 1 17.5 19H6z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M6 19a5 5 0 0 1-.5-9.98 6 6 0 0 1 11.6-1.4A4.5 4.5 0 0 1 17.5 19H6z'/%3E%3C/svg%3E"); }

/* ---------- Compliance ---------- */
.section-compliance { background: var(--grad-navy); color: #fff; position: relative; overflow: hidden; }
.section-compliance::before {
  content:""; position:absolute; top:-140px; right:-120px; width:420px; height:420px; border-radius:50%;
  background: radial-gradient(circle, rgba(141,198,63,.28), transparent 70%); filter: blur(30px);
}
.compliance-inner { position: relative; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.compliance-copy .section-title { color: #fff; text-align: left; }
.compliance-copy .kicker { text-align: left; }
.compliance-copy .section-lead { text-align: left; }
.compliance-list { margin-top: 34px; display: flex; flex-direction: column; gap: 22px; }
.compliance-list li { display: flex; gap: 16px; }
.cl-ic { flex: none; width: 30px; height: 30px; border-radius: 9px; background: var(--grad-brand);
  color: #063; display: grid; place-items: center; font-weight: 800; color: #04351f; }
.compliance-list strong { display: block; color: #fff; font-family: "Plus Jakarta Sans"; font-size: 17px; margin-bottom: 4px; }
.compliance-list p { color: #b9c8e4; font-size: 15px; }
.compliance-list em { color: #d7f0c8; font-style: normal; font-weight: 600; }

.compliance-panel {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg);
  padding: 30px 28px; backdrop-filter: blur(6px);
}
.panel-label { display: block; font-family: "Plus Jakarta Sans"; font-weight: 700; color: #fff; font-size: 15px;
  letter-spacing: .02em; margin-bottom: 22px; }
.flow { display: flex; flex-direction: column; gap: 0; }
.flow-step { display: flex; gap: 16px; padding-bottom: 22px; position: relative; }
.flow-step:not(:last-child)::before {
  content:""; position:absolute; left: 15px; top: 34px; bottom: 2px; width: 2px;
  background: linear-gradient(var(--green-500), rgba(141,198,63,.25));
}
.flow-n { flex: none; width: 32px; height: 32px; border-radius: 50%; background: var(--grad-brand);
  color: #04351f; font-weight: 800; display: grid; place-items: center; font-family: "Plus Jakarta Sans"; font-size: 14px; z-index: 1; }
.flow-step strong { display: block; color: #fff; font-size: 15px; font-family: "Plus Jakarta Sans"; }
.flow-step span { font-size: 13.5px; color: #a9bbdb; }
.panel-note { margin-top: 6px; font-size: 13px; color: #d7f0c8; background: rgba(43,182,115,.14);
  border: 1px solid rgba(141,198,63,.3); border-radius: 10px; padding: 12px 14px; }

/* ---------- Status legend ---------- */
.section-legend { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.legend-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 28px; padding: 22px 24px; justify-content: center; }
.legend-title { font-family: "Plus Jakarta Sans"; font-weight: 700; color: var(--ink-900); font-size: 15px; }
.legend-items { display: flex; flex-wrap: wrap; gap: 12px 22px; }
.legend-item { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; color: var(--ink-500); }

/* ---------- Badges ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px; font-family: "Plus Jakarta Sans"; font-weight: 700;
  font-size: 11.5px; letter-spacing: .04em; text-transform: uppercase; padding: 5px 11px; border-radius: 100px;
  white-space: nowrap;
}
.badge::before { content:""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.badge-live { color: #1c8a4e; background: #e2f6e9; }
.badge-dev  { color: #b06a00; background: #fdf0dc; }
.badge-road { color: #4a5878; background: #e7ecf6; }

/* ---------- Flagship ---------- */
.flagship-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.flagship-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 38px 34px; box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.flagship-card::before {
  content:""; position:absolute; left:0; top:0; height:5px; width:100%; background: var(--grad-brand);
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease);
}
.flagship-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.flagship-card:hover::before { transform: scaleX(1); }
.flagship-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.prod-mark {
  width: 60px; height: 60px; border-radius: 16px; background: var(--grad-navy); color: #fff;
  display: grid; place-items: center; font-family: "Plus Jakarta Sans"; font-weight: 800; font-size: 18px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.flagship-card h3 { font-size: 26px; }
.prod-tagline { font-weight: 600; color: var(--green-500); margin-top: 4px; font-size: 15px; }
.prod-desc { margin-top: 14px; font-size: 15.5px; color: var(--ink-500); }
.prod-feats { margin-top: 22px; display: grid; gap: 11px; }
.prod-feats li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--ink-700); }
.prod-feats li::before {
  content:""; flex: none; margin-top: 7px; width: 8px; height: 8px; border-radius: 50%;
  background: var(--grad-brand);
}

/* ---------- Product cards (in dev) ---------- */
.product-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #d3ddf0; }
.pc-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 14px; }
.pc-name { font-family: "Plus Jakarta Sans"; font-weight: 800; font-size: 17px; color: var(--navy-800); }
.pc-tag { font-weight: 600; color: var(--ink-900); font-size: 14px; }
.pc-desc { margin-top: 8px; font-size: 14px; color: var(--ink-500); }

/* ---------- Roadmap ---------- */
.roadmap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.roadmap-item {
  background: linear-gradient(180deg, #fff, var(--paper)); border: 1px dashed #c8d4ea; border-radius: var(--radius-sm);
  padding: 24px 20px; text-align: center; transition: transform .3s var(--ease), border-color .3s, background .3s;
}
.roadmap-item:hover { transform: translateY(-4px); border-color: var(--green-300); background: #fff; }
.rm-name { display: block; font-family: "Plus Jakarta Sans"; font-weight: 700; color: var(--navy-800); font-size: 16px; }
.rm-desc { display: block; margin-top: 5px; font-size: 13.5px; color: var(--ink-500); }
.roadmap-foot { text-align: center; margin-top: 30px; font-size: 13.5px; color: var(--ink-500); font-style: italic; }

/* ---------- Purpose / values ---------- */
.section-purpose { background: var(--grad-hero); color: #fff; }
.section-purpose .section-title { color: #fff; max-width: 900px; margin: 0 auto; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius);
  padding: 32px 26px; text-align: center; transition: transform .3s var(--ease), background .3s;
}
.value-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.09); }
.value-ic {
  display: grid; place-items: center; width: 56px; height: 56px; margin: 0 auto 18px; border-radius: 16px;
  background: var(--grad-brand); color: #04351f; font-size: 22px; font-weight: 800;
}
.value-card h3 { color: #fff; font-size: 20px; }
.value-card p { margin-top: 8px; color: #c3d1ea; font-size: 15px; }

/* ---------- Contact ---------- */
.section-contact { background: var(--paper); }
.contact-inner { display: grid; grid-template-columns: 1fr 0.85fr; gap: 56px; align-items: center; }
.contact-copy .kicker, .contact-copy .section-title, .contact-copy .section-lead { text-align: left; }
.contact-copy .section-title { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
.contact-copy .btn { margin-top: 26px; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 12px 30px; box-shadow: var(--shadow-md); }
.cc-row { display: flex; flex-direction: column; gap: 3px; padding: 20px 0; border-bottom: 1px solid var(--paper-2); }
.cc-row:last-child { border-bottom: 0; }
.cc-k { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green-500); }
.cc-v { font-size: 16px; color: var(--ink-900); font-weight: 500; }
a.cc-v:hover { color: var(--navy-700); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #fff; padding: 56px 0 30px; }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 26px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand { display: flex; align-items: center; gap: 11px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: #8db4ff; }
.footer-tagline { color: #9fb2d6; font-size: 15px; max-width: 420px; }
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-nav a { color: #cdd9ee; font-size: 14px; font-weight: 500; transition: color .2s; }
.footer-nav a:hover { color: #fff; }
.footer-legal { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 22px; font-size: 13px; color: #7f92b8; }
.footer-motto { letter-spacing: .06em; }

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

/* =========================================================
   Responsive
   ========================================================= */
@media (min-width: 1024px) { .only-lg { display: inline; } }

@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .roadmap-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item::after { display: none; }
  .compliance-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .flagship-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: left; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .site-header.menu-open .mobile-menu { display: flex; }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .roadmap-grid { grid-template-columns: repeat(2, 1fr); }
  .legend-inner { justify-content: flex-start; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .grid-4, .grid-5, .values-grid, .roadmap-grid, .trust-grid { grid-template-columns: 1fr; }
  .btn-lg { width: 100%; }
  .hero-cta { flex-direction: column; }
  .flagship-card { padding: 30px 24px; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-orb, .hero-scroll span { animation: none !important; }
  * { transition-duration: .01ms !important; }
}
