/* ============================================================
   Syncious — Enterprise B2B Website
   Design system + components
   ============================================================ */

:root {
  /* Brand palette — built around the Syncious logo
     primary blue #2072b8 and accent cyan #00afef, softened */
  --navy-900: #143a5c;   /* softened deep blue (was near-black) */
  --navy-800: #1a4e7e;
  --navy-700: #1f63a0;
  --blue-600: #2072b8;   /* logo primary */
  --blue-500: #3a8fd0;
  --cyan-500: #00afef;   /* logo accent */
  --cyan-400: #4cc6f5;

  /* Neutrals — cooler, softer slate tinted toward brand */
  --ink: #1e3a52;
  --slate-700: #41566b;
  --slate-500: #6b7f92;
  --slate-400: #9bacbd;
  --slate-200: #e3eaf1;
  --slate-100: #eef3f8;
  --slate-50: #f6f9fc;
  --white: #ffffff;

  --bg: #ffffff;
  --surface: #f4f8fc;

  /* Effects */
  --grad-brand: linear-gradient(120deg, #2072b8 0%, #2f9cd6 55%, #00afef 100%);
  --grad-hero: radial-gradient(1200px 700px at 78% -10%, rgba(0,175,239,.28), transparent 60%),
               radial-gradient(900px 600px at 8% 12%, rgba(32,114,184,.40), transparent 58%),
               linear-gradient(155deg, #1a4e7e 0%, #1f63a0 48%, #2072b8 100%);
  --shadow-sm: 0 1px 2px rgba(32,114,184,.06), 0 2px 6px rgba(32,114,184,.08);
  --shadow-md: 0 12px 30px -14px rgba(32,114,184,.30);
  --shadow-lg: 0 30px 60px -22px rgba(32,114,184,.32);
  --ring: 0 0 0 1px rgba(32,114,184,.10);

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

  --container: 1200px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { color: var(--navy-800); line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.02em; }

p { margin: 0 0 1rem; color: var(--slate-700); }

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

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 14px;
}

.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 44px); }
.section-head p { font-size: 18px; color: var(--slate-500); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--grad-brand); color: #fff; box-shadow: 0 10px 24px -10px rgba(21,101,192,.7); }
.btn-primary:hover { box-shadow: 0 16px 30px -10px rgba(21,101,192,.8); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.25); }
.btn-ghost:hover { background: rgba(255,255,255,.16); }
.btn-light { background: #fff; color: var(--navy-800); box-shadow: var(--shadow-sm); }
.btn-outline { background: transparent; color: var(--navy-700); border-color: var(--slate-200); }
.btn-outline:hover { border-color: var(--blue-500); color: var(--blue-600); }

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--slate-200);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav-brand img { height: 26px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--slate-700);
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-links > li > a:hover { color: var(--navy-800); background: var(--slate-100); }
.caret { font-size: 10px; opacity: .6; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .22s ease;
}
.nav-links > li:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 11px 12px;
  border-radius: 10px;
  transition: background .15s;
}
.dropdown-menu a:hover { background: var(--slate-50); }
.dropdown-menu .ic {
  width: 46px; height: 46px; flex: none;
  display: grid; place-items: center;
  border-radius: 10px; background: var(--slate-100);
}
.dropdown-menu .ic img { width: 34px; height: 34px; object-fit: contain; }
.dropdown-menu .ic .fa { color: var(--blue-600); font-size: 26px; }
/* stack the text block (title over description) */
.dropdown-menu a > span:last-child { display: flex; flex-direction: column; }
.dropdown-menu .dm-title { display: block; font-weight: 600; color: var(--navy-800); font-size: 14px; line-height: 1.3; }
.dropdown-menu .dm-sub { display: block; font-size: 12.5px; color: var(--slate-500); line-height: 1.35; margin-top: 2px; }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 42px; height: 42px; border-radius: 10px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy-800); margin: 4px auto; transition: .3s; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  background: var(--grad-hero);
  color: #fff;
  overflow: hidden;
  padding: 53px 0 18px;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(900px 500px at 70% 20%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: .95fr 1.5fr; gap: 30px; align-items: center; }
.hero h1 { color: #fff; font-size: clamp(34px, 3vw, 45px); letter-spacing: -.03em; margin-bottom: 22px; }
.hero h1 .grad {
  background: linear-gradient(90deg, #4cc6f5, #aee6fb);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead { font-size: 19px; color: rgba(255,255,255,.82); max-width: 560px; margin-bottom: 32px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; margin-bottom: 26px;
  font-size: 13px; font-weight: 600; letter-spacing: .02em;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px; color: #d6f1fd;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #4cc6f5; box-shadow: 0 0 0 4px rgba(0,175,239,.25); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero-trust { margin-top: 38px; display: flex; gap: 26px; flex-wrap: wrap; color: rgba(255,255,255,.7); font-size: 13.5px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust .fa { color: #4cc6f5; }

.hero-visual { position: relative; }
/* .hero-visual .panel {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(6px);
}
.hero-visual .panel img { border-radius: 14px; } */
.hero-orbit {
  position: absolute; top: -30%;
  opacity: .25; animation: spin 30s linear infinite; pointer-events: none;
}
@keyframes spin { to { transform: rotate(-360deg); } }

/* ============================================================
   Logo marquee
   ============================================================ */
.logos { padding: 40px 0; border-bottom: 1px solid var(--slate-200); background: #fff; }
.logos-label { text-align: center; font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--slate-400); margin-bottom: 26px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; align-items: center; gap: 64px; width: max-content; animation: scroll 38s linear infinite; }
.marquee-track img { height: 38px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .65; transition: .3s; }
.marquee-track img:hover { filter: none; opacity: 1; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ============================================================
   Stat band
   ============================================================ */
.stats { background: var(--navy-800); color: #fff; }
.stats .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat .num { font-size: clamp(34px, 4vw, 48px); font-weight: 800; letter-spacing: -.02em; background: linear-gradient(90deg, #fff, #aee6fb); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .lbl { color: rgba(255,255,255,.7); font-size: 15px; margin-top: 4px; }

/* ============================================================
   Pillars (Deploy / Manage / Access)
   ============================================================ */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pillar {
  position: relative;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.pillar .step { font-size: 13px; font-weight: 700; color: var(--blue-500); letter-spacing: .08em; }
.pillar .ic { width: 54px; height: 54px; border-radius: 14px; background: var(--grad-brand); display: grid; place-items: center; margin: 16px 0 18px; }
.pillar .ic img { width: 34px; filter: brightness(0) invert(1); }
.pillar h3 { font-size: 22px; }

/* ============================================================
   Value proposition (dark band)
   ============================================================ */
.valueprop { background: var(--grad-hero); color: #fff; position: relative; overflow: hidden; }
.valueprop::after {
  content:""; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(800px 400px at 80% 0%, #000 30%, transparent 75%);
  pointer-events: none;
}
.valueprop .container { position: relative; z-index: 2; }
.vp-head { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.vp-head h2 { color: #fff; font-size: clamp(26px, 3.6vw, 40px); }
.vp-head p { color: rgba(255,255,255,.78); font-size: 18px; }
.vp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.vp-item {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 26px 22px; backdrop-filter: blur(6px);
}
.vp-item .fa { font-size: 24px; color: var(--cyan-400); margin-bottom: 14px; display: block; }
.vp-item strong { display: block; color: #fff; font-size: 17px; margin-bottom: 6px; }
.vp-item span { color: rgba(255,255,255,.74); font-size: 14.5px; }

/* ============================================================
   Deployment models
   ============================================================ */
.deploy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: start; }
.deploy-card {
  position: relative; background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg); padding: 34px 30px; box-shadow: var(--shadow-sm);
  transition: transform .28s, box-shadow .28s;
}
.deploy-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.deploy-card.featured { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-8px); }
.deploy-card.featured::before { content:""; position:absolute; inset:0; border-radius: var(--radius-lg); padding:2px; background: var(--grad-brand); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events:none; }
.deploy-card .dc-num { font-size: 14px; font-weight: 800; color: var(--blue-500); letter-spacing: .1em; }
.deploy-card .dc-tag { position: absolute; top: -13px; left: 30px; background: var(--grad-brand); color: #fff; font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 999px; letter-spacing: .03em; }
.deploy-card h3 { font-size: 24px; margin: 10px 0 4px; }
.deploy-card .dc-for { color: var(--blue-600); font-weight: 600; font-size: 14px; margin-bottom: 14px; }
.deploy-card p { color: var(--slate-500); font-size: 15px; }
.deploy-card ul { list-style: none; padding: 0; margin: 16px 0 0; }
.deploy-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--slate-700); padding: 7px 0; border-top: 1px solid var(--slate-100); }
.deploy-card li:first-child { border-top: none; }
.deploy-card li .fa { color: var(--cyan-500); margin-top: 4px; }

/* ============================================================
   Products
   ============================================================ */
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .28s, box-shadow .28s;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-card .pc-top { padding: 32px 30px 0; }
.product-card .pc-logo { height: 34px; width: auto; margin-bottom: 18px; justify-self: anchor-center; }
.product-card h3 { font-size: 23px; margin-bottom: 10px; }
.product-card p { color: var(--slate-500); font-size: 15.5px; }
.product-card ul { list-style: none; padding: 0; margin: 6px 0 22px; }
.product-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--slate-700); padding: 7px 0; }
.product-card li .fa { color: var(--cyan-500); margin-top: 4px; }
.product-card .pc-foot { margin-top: auto; padding: 0 30px 30px; }
.product-card .pc-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--blue-600); }
.product-card .pc-link .fa { transition: transform .2s; }
.product-card:hover .pc-link .fa { transform: translateX(5px); }
.product-card .pc-bar { height: 5px; background: var(--grad-brand); }

/* ============================================================
   Split feature
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.rev .split-media { order: 2; }
/* .split-media img { border-radius: var(--radius); box-shadow: var(--shadow-md); border: 1px solid var(--slate-200); padding: 7px; } */
.feature-list { list-style: none; padding: 0; margin: 18px 0 0; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; border-top: 1px solid var(--slate-200); }
.feature-list li:first-child { border-top: none; }
.feature-list .fa { color: var(--blue-500); margin-top: 5px; font-size: 18px; }
.feature-list strong { color: var(--navy-800); display: block; }
.feature-list span { color: var(--slate-500); font-size: 14.5px; }

/* ============================================================
   Industries
   ============================================================ */
.industries { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ind-card {
  background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius);
  padding: 26px 24px; text-align: center; transition: .25s; box-shadow: var(--shadow-sm);
}
.ind-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.ind-card img { width: 64px; height: 64px; object-fit: contain; margin: 0 auto 16px; }
.ind-card h4 { font-size: 17px; margin: 0; }

/* ============================================================
   Apps grid
   ============================================================ */
.apps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.app-chip {
  display: grid; place-items: center;
  background: #fff; border: 1px solid var(--slate-200); border-radius: 14px;
  height: 96px; padding: 18px; box-shadow: var(--shadow-sm); transition: .2s;
}
.app-chip:hover { border-color: var(--blue-500); transform: translateY(-3px); }
.app-chip img { max-height: 69px; width: auto; object-fit: contain; }

/* ============================================================
   Clouds
   ============================================================ */
.clouds { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; align-items: center; }
.cloud-chip { background: #fff; border-radius: var(--radius); padding: 18px; display: grid; place-items: center; }
.cloud-chip img { max-height: 96px; }

/* ============================================================
   Security / certifications
   ============================================================ */
.security { background: var(--navy-900); color: #fff; position: relative; overflow: hidden; }
.security::before { content:""; position:absolute; inset:0; background: radial-gradient(700px 400px at 85% 10%, rgba(43,196,212,.18), transparent 60%); }
.security .container { position: relative; z-index: 2; }
.security .section-head h2 { color: #fff; }
.security .section-head p { color: rgba(255,255,255,.7); }
.cert-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.cert {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg); padding: 32px; display: flex; gap: 22px; align-items: flex-start;
}
.cert img { width: 84px; height: 84px; object-fit: contain; background: #fff; border-radius: 14px; padding: 10px; flex: none; }
.cert h3 { color: #fff; font-size: 20px; }
.cert p { color: rgba(255,255,255,.72); font-size: 14.5px; margin: 0; }

/* ============================================================
   Blog / events cards
   ============================================================ */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card {
  background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: .25s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-card .bimg { aspect-ratio: 16/9; overflow: hidden; background: var(--slate-100); }
.blog-card .bimg img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .bimg img { transform: scale(1.05); }
.blog-card .bbody { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.blog-card h4 { font-size: 17px; line-height: 1.35; }
.blog-card .read { margin-top: auto; font-weight: 600; color: var(--blue-600); display: inline-flex; gap: 7px; align-items: center; }

/* ============================================================
   Workflow videos
   ============================================================ */
.videos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.video-card {
  background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: .25s;
}
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.video-frame { position: relative; aspect-ratio: 16/9; background: var(--slate-100); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ============================================================
   CTA
   ============================================================ */
.cta-band { background: var(--grad-brand); color: #fff; border-radius: var(--radius-lg); padding: 56px; text-align: center; position: relative; overflow: hidden; }
.cta-band::after { content:""; position:absolute; inset:0; background: radial-gradient(600px 300px at 20% 0%, rgba(255,255,255,.18), transparent 60%); }
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; font-size: clamp(28px, 4vw, 40px); }
.cta-band p { color: rgba(255,255,255,.9); font-size: 18px; max-width: 620px; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--navy-900); color: rgba(255,255,255,.7); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer h5 { color: #fff; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px; }
.footer a { display: block; padding: 6px 0; color: rgba(255,255,255,.7); font-size: 14.5px; transition: color .2s; }
.footer a:hover { color: #fff; }
.footer a.f-green { color: #4fd08a; }
.footer a.f-green:hover { color: #6fe0a3; }
.footer .f-logo { height: 30px; margin-bottom: 18px; }
.footer .f-about { font-size: 14.5px; max-width: 320px; }
.footer .badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.footer .badges span { font-size: 12px; padding: 5px 11px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: rgba(255,255,255,.8); }
.footer .contact-line { display: flex; gap: 10px; align-items: flex-start; padding: 6px 0; font-size: 14.5px; }
.footer .contact-line .fa { color: var(--cyan-400); margin-top: 4px; width: 16px; }
.footer .chat-link { display: inline-flex; align-items: center; gap: 10px; padding: 11px 16px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: rgba(255,255,255,.85); font-size: 14px; line-height: 1.3; transition: .2s; }
.footer .chat-link .fa { color: var(--cyan-400); font-size: 16px; transition: .2s; }
.footer .chat-link:hover { background: var(--blue-500); border-color: transparent; color: #fff; transform: translateY(-2px); }
.footer .chat-link:hover .fa { color: #fff; }
.socials { display: flex; gap: 12px; margin-top: 16px; }
.socials a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 10px; background: rgba(255,255,255,.07); color: #fff; padding: 0; transition: .2s; }
.socials a:hover { background: var(--blue-500); transform: translateY(-3px); }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; }

/* ============================================================
   Product sub-page
   ============================================================ */
.subhero { background: var(--grad-hero); color: #fff; position: relative; overflow: hidden; padding: 84px 0 88px; }
.subhero::after {
  content:""; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(900px 500px at 75% 10%, #000 30%, transparent 75%);
  pointer-events: none;
}
.subhero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.subhero .crumbs { font-size: 13.5px; color: rgba(255,255,255,.6); margin-bottom: 18px; }
.subhero .crumbs a { color: rgba(255,255,255,.85); }
.subhero .product-mark { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.subhero .product-mark img { height: 55px; border-radius: 12px; padding: 7px 10px; }
.subhero h1 { color: #fff; font-size: clamp(32px, 4.4vw, 50px); margin-bottom: 18px; }
.subhero h1 .grad { background: linear-gradient(90deg, #4cc6f5, #aee6fb); -webkit-background-clip: text; background-clip: text; color: transparent; }
.subhero p.lead { font-size: 18px; color: rgba(255,255,255,.82); max-width: 540px; margin-bottom: 28px; }
.subhero .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
/* .subhero-visual .panel { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-lg); padding: 14px; box-shadow: var(--shadow-lg); }
.subhero-visual .panel img { border-radius: 12px; } */

/* Feature grid (reused look) */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feat-card { background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-sm); transition: .25s; }
.feat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feat-card .fic { width: 48px; height: 48px; border-radius: 12px; background: var(--grad-brand); display: grid; place-items: center; margin-bottom: 16px; }
.feat-card .fic .fa { color: #fff; font-size: 20px; }
.feat-card .fic img { width: 24px; filter: brightness(0) invert(1); }
.feat-card h4 { font-size: 17px; margin-bottom: 6px; }
.feat-card p { color: var(--slate-500); font-size: 14.5px; margin: 0; }

/* Workflow / use-case cards with pros & cons */
.usecase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.usecase {
  background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.usecase .uc-tag { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; font-size: 12.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--blue-600); background: var(--slate-100); padding: 6px 12px; border-radius: 999px; margin-bottom: 14px; }
.usecase h3 { font-size: 23px; margin-bottom: 12px; }
.usecase .uc-media { margin: 4px 0 20px; border-radius: 12px; overflow: hidden; border: 1px solid var(--slate-200); background: var(--surface); }
.usecase .uc-media img { display: block; width: 100%; height: auto; }
.usecase .uc-steps { list-style: none; padding: 0; margin: 0 0 22px; }
.usecase .uc-steps li { display: flex; gap: 12px; align-items: flex-start; padding: 8px 0; font-size: 14.5px; color: var(--slate-700); }
.usecase .uc-steps li .n { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--grad-brand); color: #fff; font-size: 12px; font-weight: 700; display: grid; place-items: center; margin-top: 1px; }
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: auto; }
.pc-box { border-radius: 14px; padding: 18px; }
.pc-box.pros { background: #ecfaf1; border: 1px solid #c9eed8; }
.pc-box.cons { background: #fdf0ef; border: 1px solid #f6d6d3; }
.pc-box h5 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.pc-box.pros h5 { color: #1a8a4f; }
.pc-box.cons h5 { color: #c0453b; }
.pc-box ul { list-style: none; padding: 0; margin: 0; }
.pc-box li { font-size: 13.5px; color: var(--slate-700); padding: 5px 0 5px 22px; position: relative; }
.pc-box.pros li::before { content: "\f00c"; font-family: FontAwesome; position: absolute; left: 0; color: #2ba85f; font-size: 12px; }
.pc-box.cons li::before { content: "\f068"; font-family: FontAwesome; position: absolute; left: 0; color: #d9655c; font-size: 11px; top: 7px; }

/* Investment callout row */
.invest { display: flex; gap: 14px; align-items: flex-start; background: var(--slate-50); border: 1px dashed var(--slate-200); border-radius: 14px; padding: 16px 18px; margin-top: 18px; }
.invest .fa { color: var(--blue-500); font-size: 18px; margin-top: 3px; }
.invest strong { display: block; color: var(--navy-800); font-size: 14px; }
.invest span { color: var(--slate-500); font-size: 14px; }

/* ============================================================
   Generic page hero (About / Careers / Contact)
   ============================================================ */
.page-hero { background: var(--surface); border-bottom: 1px solid var(--slate-200); padding: 72px 0; }
.page-hero .container { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.page-hero h1 { font-size: clamp(30px, 4.2vw, 48px); margin-bottom: 16px; }
.page-hero p.lead { font-size: 18px; color: var(--slate-500); margin: 0; }
.page-hero .crumbs { font-size: 13.5px; color: var(--slate-400); margin-bottom: 16px; }
.page-hero .crumbs a { color: var(--blue-600); }
.page-hero-media img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.page-hero.solo .container { grid-template-columns: 1fr; text-align: center; max-width: 820px; }
.page-hero.solo p.lead { max-width: 620px; margin: 0 auto; }

/* Mission / Vision / Values + Career value cards */
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mvv-card { text-align: center; background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius); padding: 34px 28px; box-shadow: var(--shadow-sm); transition: .25s; }
.mvv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.mvv-card img { width: 72px; height: 72px; object-fit: contain; margin: 0 auto 16px; }
.mvv-card h3 { font-size: 20px; margin-bottom: 10px; }
.mvv-card p { color: var(--slate-500); font-size: 15px; margin: 0; }

/* Openings / generic info panel */
.panel-note { background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); max-width: 860px; margin: 0 auto; text-align: center; }
.panel-note p { font-size: 16px; color: var(--slate-700); }
.panel-note .btn { margin-top: 10px; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.contact-cards { display: grid; gap: 16px; }
.contact-card { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow-sm); }
.contact-card .ci { width: 50px; height: 50px; flex: none; border-radius: 13px; background: var(--grad-brand); display: grid; place-items: center; }
.contact-card .ci .fa { color: #fff; font-size: 20px; }
.contact-card h4 { font-size: 16px; margin: 0 0 4px; }
.contact-card p, .contact-card a { color: var(--slate-500); font-size: 14.5px; margin: 0; }
.contact-card a:hover { color: var(--blue-600); }

.contact-form { background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-md); }
.contact-form h3 { font-size: 22px; margin-bottom: 6px; }
.contact-form .sub { color: var(--slate-500); font-size: 15px; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--navy-800); margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%; padding: 12px 14px; font: inherit; font-size: 15px; color: var(--ink);
  background: var(--slate-50); border: 1px solid var(--slate-200); border-radius: 10px;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue-500); background: #fff; box-shadow: 0 0 0 3px rgba(58,143,208,.18); }
.field textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-msg { display: none; margin-top: 14px; padding: 13px 16px; border-radius: 10px; font-size: 14.5px; }
.form-msg.ok { display: block; background: #ecfaf1; border: 1px solid #c9eed8; color: #1a8a4f; }
.form-msg.err { display: block; background: #fdf0ef; border: 1px solid #f6d6d3; color: #c0453b; }

/* ============================================================
   Legal pages (Privacy / Terms)
   ============================================================ */
.legal { padding: 64px 0 80px; }
.legal .container { max-width: 880px; }
.legal .updated { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--blue-600); background: var(--slate-100); padding: 7px 14px; border-radius: 999px; margin-bottom: 8px; }
.legal .intro { font-size: 17px; color: var(--slate-700); line-height: 1.7; margin: 18px 0 8px; }
.legal h2 { font-size: 22px; margin: 40px 0 14px; padding-top: 22px; border-top: 1px solid var(--slate-200); }
.legal h2:first-of-type { border-top: none; padding-top: 0; margin-top: 26px; }
.legal h3 { font-size: 16px; margin: 22px 0 8px; color: var(--navy-700); }
.legal p { color: var(--slate-700); font-size: 15.5px; line-height: 1.78; margin: 0 0 14px; }
.legal ul { margin: 0 0 16px; padding-left: 4px; list-style: none; }
.legal li { position: relative; color: var(--slate-700); font-size: 15.5px; line-height: 1.72; margin-bottom: 9px; padding-left: 22px; }
.legal li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan-500); }
.legal ul.lower-alpha { counter-reset: la; }
.legal ul.lower-alpha li { padding-left: 28px; }
.legal ul.lower-alpha li::before { content: counter(la, lower-alpha) ")"; counter-increment: la; background: none; width: auto; height: auto; top: 0; left: 4px; font-weight: 600; color: var(--blue-600); font-size: 14px; }
.legal a { color: var(--blue-600); text-decoration: underline; }
.legal .legal-note { background: var(--surface); border: 1px solid var(--slate-200); border-radius: 12px; padding: 16px 18px; margin: 20px 0; font-size: 14.5px; color: var(--slate-700); }
.legal .legal-note strong { color: var(--navy-800); }
.legal .toc { background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius); padding: 22px 26px; margin-bottom: 30px; box-shadow: var(--shadow-sm); }
.legal .toc h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--slate-500); margin-bottom: 12px; }
.legal .toc-grid { columns: 2; column-gap: 28px; }
.legal .toc-grid a { display: block; padding: 5px 0; font-size: 14px; text-decoration: none; color: var(--slate-700); break-inside: avoid; }
.legal .toc-grid a:hover { color: var(--blue-600); }
@media (max-width: 600px) { .legal .toc-grid { columns: 1; } }

/* ============================================================
   Documentation page
   ============================================================ */
.docs-section { padding: 16px 0 80px; }
.doc-head {
  position: sticky; top: 72px; z-index: 20;
  display: flex; align-items: center; justify-content: space-between; gap: 12px 24px; flex-wrap: wrap;
  padding: 14px 0; margin-bottom: 0;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--slate-200);
}
.doc-title { font-size: 22px; margin: 0; color: var(--navy-800); white-space: nowrap; }
.doc-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.doc-tab {
  font: inherit; font-size: 14.5px; font-weight: 600; cursor: pointer;
  color: var(--slate-500); background: var(--slate-100);
  border: 1px solid transparent; border-radius: 999px; padding: 9px 18px;
  transition: all .2s ease;
}
.doc-tab:hover { color: var(--navy-800); background: var(--slate-200); }
.doc-tab.active { color: #fff; background: var(--grad-brand); box-shadow: 0 8px 18px -8px rgba(32,114,184,.6); }

.doc-content { max-width: 1040px; color: var(--slate-700); font-size: 16px; line-height: 1.75; }
.doc-loading, .doc-error { color: var(--slate-500); font-size: 15px; padding: 30px 0; }
.doc-error a { color: var(--blue-600); }

/* TOC sidebar (left) + body (right) */
.doc-content .md-header { display: none; }
.doc-content .data-container { display: flex; align-items: flex-start; gap: 44px; }
.doc-content .data-container.no-toc { display: block; }
.doc-content .data-container.no-toc .table-of-content { display: none; }
.doc-content .table-of-content {
  flex: 0 0 252px; position: sticky; top: 140px;
  max-height: calc(100vh - 160px); overflow-y: auto;
  padding-right: 22px; border-right: 1px solid var(--slate-200);
  font-size: 14px; line-height: 1.5;
}
.doc-content .table-of-content h2 {
  font-size: 12px; text-transform: uppercase; letter-spacing: .06em;
  color: var(--slate-500); margin: 0 0 12px;
}
.doc-content .table-of-content ol,
.doc-content .table-of-content ul { margin: 0; padding-left: 20px; }
.doc-content .table-of-content li { margin: 5px 0; }
.doc-content .table-of-content a { color: var(--slate-700); }
.doc-content .table-of-content a:hover { color: var(--blue-600); }
.doc-content .main-content { flex: 1 1 auto; min-width: 0; }
.doc-content .main-content > :first-child,
.doc-content .table-of-content > :first-child { margin-top: 0; }
@media (max-width: 768px) {
  .doc-content .data-container { display: block; }
  .doc-content .table-of-content {
    position: static; max-height: none; overflow: visible;
    border-right: none; padding-right: 0;
    border-bottom: 1px solid var(--slate-200); padding-bottom: 18px; margin-bottom: 28px;
  }
}

.doc-content h1, .doc-content h2, .doc-content h3, .doc-content h4 { color: var(--navy-800); line-height: 1.25; scroll-margin-top: 150px; }
/* inline <a id> anchor targets (e.g. VDI guide #intro) must clear the sticky nav + tab bar too */
.doc-content [id] { scroll-margin-top: 150px; }
.doc-content h1 { font-size: 32px; margin: 8px 0 18px; }
.doc-content h2 { font-size: 25px; margin: 44px 0 14px; padding-top: 24px; border-top: 1px solid var(--slate-200); }
.doc-content h3 { font-size: 20px; margin: 30px 0 10px; }
.doc-content h4 { font-size: 17px; margin: 22px 0 8px; }
.doc-content p { margin: 0 0 16px; }
.doc-content a { color: var(--blue-600); text-decoration: underline; text-underline-offset: 2px; }
.doc-content ul, .doc-content ol { margin: 0 0 18px; padding-left: 24px; }
.doc-content li { margin-bottom: 8px; }
.doc-content img {
  display: block; max-width: 100%; height: auto; margin: 22px 0;
  border: 1px solid var(--slate-200); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm);
}
.doc-content blockquote {
  margin: 20px 0; padding: 14px 20px; background: var(--surface);
  border-left: 3px solid var(--blue-500); border-radius: 0 10px 10px 0; color: var(--slate-700);
}
.doc-content code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: .88em; background: var(--slate-100); color: #b5325a;
  padding: 2px 6px; border-radius: 6px;
}
.doc-content pre {
  background: var(--navy-900); color: #e6eefc; border-radius: var(--radius-sm);
  padding: 18px 20px; overflow-x: auto; margin: 0 0 20px; font-size: 14px; line-height: 1.6;
}
.doc-content pre code { background: none; color: inherit; padding: 0; font-size: inherit; }
.doc-table-wrap { overflow-x: auto; margin: 0 0 22px; border: 1px solid var(--slate-200); border-radius: var(--radius-sm); }
.doc-content table { border-collapse: collapse; width: 100%; font-size: 14.5px; }
.doc-content th, .doc-content td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--slate-200); }
.doc-content thead th { background: var(--surface); color: var(--navy-800); font-weight: 700; }
.doc-content tbody tr:last-child td { border-bottom: none; }
.doc-content hr { border: none; border-top: 1px solid var(--slate-200); margin: 32px 0; }

@media (max-width: 768px) {
  .doc-head { top: 64px; }
  .doc-title { font-size: 19px; }
  .doc-content { font-size: 15.5px; }
  .doc-content h1 { font-size: 26px; }
  .doc-content h2 { font-size: 21px; }
}

/* ============================================================
   Release notes
   ============================================================ */
.rn-wrap { max-width: 960px; margin: 0 auto; }
.rn-legend { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 36px; }
.rn-quarter { margin-bottom: 40px; scroll-margin-top: 90px; }
.rn-qhead { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px 14px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--slate-200); }
.rn-qhead h2 { font-size: 23px; margin: 0; color: var(--navy-800); }
.rn-qhead .rn-count { font-size: 13.5px; color: var(--slate-500); }
.rn-scroll { overflow-x: auto; border: 1px solid var(--slate-200); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.rn-table { width: 100%; border-collapse: collapse; background: #fff; font-size: 14.5px; }
.rn-table th { text-align: left; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--slate-500); background: var(--slate-50); padding: 12px 16px; border-bottom: 1px solid var(--slate-200); white-space: nowrap; }
.rn-table td { padding: 14px 16px; border-top: 1px solid var(--slate-100); vertical-align: top; color: var(--slate-700); line-height: 1.5; }
.rn-table tr:first-child td { border-top: none; }
.rn-table td.v { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; color: var(--navy-800); font-weight: 600; white-space: nowrap; }
.rn-badge { display: inline-block; font-size: 12px; font-weight: 600; padding: 4px 11px; border-radius: 999px; white-space: nowrap; }
.rn-badge.feature { background: #e7f6ee; color: #1a8a4f; }
.rn-badge.bug { background: #fdeceb; color: #c0453b; }
.rn-badge.other { background: var(--slate-100); color: var(--slate-700); }
@media (max-width: 768px) {
  .rn-qhead h2 { font-size: 20px; }
  .rn-table td, .rn-table th { padding: 11px 12px; }
}

/* ============================================================
   Highlights band (product pages)
   ============================================================ */
.section.highlights { padding: 40px 0; }
.hl-head { text-align: center; margin-bottom: 32px; }
.hl-title { font-size: clamp(20px, 3vw, 26px); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--slate-500); }
.hl-rule { display: block; width: 96px; height: 3px; border-radius: 2px; background: var(--blue-600); margin: 14px auto 0; }
.highlight-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; max-width: 940px; margin: 0 auto; }
.highlight { text-align: center; }
.hl-ic { width: 104px; height: 104px; border-radius: 50%; background: var(--blue-600); display: grid; place-items: center; margin: 0 auto 18px; box-shadow: 0 16px 32px -14px rgba(32,114,184,.55); transition: transform .25s ease; }
.highlight:hover .hl-ic { transform: translateY(-6px); }
.hl-ic .fa { color: #fff; font-size: 42px; }
.highlight h4 { font-size: 19px; color: var(--navy-800); margin: 0; }
@media (max-width: 768px) {
  .highlight-grid { grid-template-columns: 1fr 1fr; gap: 30px 18px; }
  .hl-ic { width: 92px; height: 92px; }
  .hl-ic .fa { font-size: 38px; }
}

/* ============================================================
   Events grid
   ============================================================ */
.events-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.event-card { background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: .25s; display: flex; flex-direction: column; }
.event-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.event-card .ev-img { aspect-ratio: 4/3; overflow: hidden; background: var(--slate-100); }
.event-card .ev-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.event-card:hover .ev-img img { transform: scale(1.04); }
.event-card .ev-body { padding: 15px 16px; }
.event-card h4 { font-size: 15px; line-height: 1.35; margin: 0 0 4px; color: var(--navy-800); }
.event-card .ev-date { font-size: 13px; color: var(--slate-500); }
@media (max-width: 1024px) { .events-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .events-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .events-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
/* ---- Large desktops / 1080p+ : let content use the extra width ---- */
@media (min-width: 1600px) {
  :root { --container: 1380px; }
  .section { padding: 104px 0; }
  .section--tight { padding: 72px 0; }
}
@media (min-width: 1920px) {
  :root { --container: 1500px; }
  .container { padding: 0 40px; }
}

/* ---- Tablet (<=1024px) ---- */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: block; order: 2; margin-top: 24px; }
  .hero-visual .panel img { margin-top: 0 !important; width: 100%; height: auto; }
  .hero-actions { justify-content: center; }
  .products, .pillars, .industries { grid-template-columns: repeat(2, 1fr); }
  .apps, .clouds { grid-template-columns: repeat(4, 1fr); }
  .cards-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .vp-grid, .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .subhero .container, .page-hero .container { gap: 36px; }
}

/* ---- Phones & small tablets (<=768px) ---- */
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section--tight { padding: 44px 0; }
  .section-head { margin-bottom: 40px; }

  /* Nav */
  .nav { height: 64px; }
  .nav-links, .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: block; }
  .site-header.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 64px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--slate-200);
    padding: 12px 20px 20px; gap: 2px; box-shadow: var(--shadow-md);
    max-height: calc(100vh - 64px); overflow-y: auto;
  }
  .site-header.open .nav-links > li { padding: 0; }
  .site-header.open .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 2px 0 8px 8px; min-width: 0; }

  /* Heroes */
  .hero { padding: 56px 0 64px; }
  .subhero { padding: 48px 0 52px; }
  .subhero .container, .page-hero .container { grid-template-columns: 1fr; gap: 30px; }
  .subhero-visual { order: 2; }
  .page-hero { padding: 44px 0; }
  .page-hero.solo .container { text-align: left; }
  .page-hero.solo p.lead { margin: 0; }

  /* Grids collapse to one column */
  .stats .grid { grid-template-columns: 1fr 1fr; gap: 30px 16px; }
  .pillars, .products, .industries, .cards-3, .clouds,
  .vp-grid, .feat-grid, .deploy-grid, .usecase-grid,
  .mvv-grid, .contact-cards, .videos { grid-template-columns: 1fr; }
  .apps { grid-template-columns: repeat(3, 1fr); }
  .proscons, .form-row { grid-template-columns: 1fr; }

  /* Featured deploy card: drop the lift offset on mobile */
  .deploy-card.featured { transform: none; }

  /* Split sections: image first, stacked */
  .split, .split.rev .split-media { grid-template-columns: 1fr; gap: 32px; order: 0; }
  .split-media { order: -1 !important; }

  .cert-grid { grid-template-columns: 1fr; }
  .cert { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-layout { grid-template-columns: 1fr; gap: 28px; }
  .contact-form { padding: 24px; }
  .panel-note { padding: 28px 22px; }
  .cta-band { padding: 36px 22px; }
  .legal { padding: 44px 0 56px; }
}

/* ---- Tablets & large phones: keep two columns instead of one sparse column ---- */
@media (min-width: 600px) and (max-width: 768px) {
  .pillars, .products, .industries, .feat-grid,
  .vp-grid, .mvv-grid, .cards-3, .deploy-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- Small phones (<=480px) ---- */
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .nav-cta .btn-primary { display: none; }   /* leave just the hamburger */
  .apps { grid-template-columns: repeat(2, 1fr); }
  .clouds { grid-template-columns: repeat(2, 1fr); }
  .hero-actions, .cta-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn, .cta-actions .btn, .subhero .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { gap: 14px; }
  .btn { padding: 12px 22px; }
}
