/* ============================================================
   RESTROMANDU — Design system
   Brands: #0065ED primary blue, #001534 dark navy, #F4F8FF light
   ============================================================ */

:root {
  --primary: #0065ED;
  --primary-dark: #0052C4;
  --primary-soft: #4DA3FF;
  --navy: #001534;
  --ink: #182233;
  --body: #3B4658;
  --muted: #6B7687;
  --light: #F4F8FF;
  --blue-ish: #EAF2FF;
  --white: #FFFFFF;
  --border: #E3EAF3;
  --border-strong: #C9D6E8;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(0, 21, 52, 0.06);
  --shadow-md: 0 10px 30px rgba(0, 21, 52, 0.10);
  --shadow-lg: 0 24px 60px rgba(0, 21, 52, 0.14);
  --glow: 0 12px 40px rgba(0, 101, 237, 0.22);
  --glow-soft: 0 6px 18px rgba(0, 101, 237, 0.14);
  --font: 'Times New Roman', 'Liberation Serif', Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --dur-s: 0.18s;
  --dur-m: 0.4s;
  --dur-l: 0.7s;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

html, body { overflow-x: clip; }

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

/* Skip link: first focus target for keyboard users */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 10px 0;
  font-weight: 600;
}
.skip-link:focus {
  left: 0;
}

/* Visually hidden utility (for table captions etc.) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

a:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; border-radius: 2px; }
a { color: var(--primary); text-decoration: none; }
h1, h2, h3, h4 { color: var(--navy); font-weight: 700; line-height: 1.15; margin: 0 0 0.5em; letter-spacing: -0.02em; }
p { margin: 0 0 1em; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.w-full { width: 100%; }
.center { text-align: center; }
.anchor { position: relative; top: -72px; display: block; visibility: hidden; }

.text-blue { color: var(--primary); }
.muted { color: var(--muted); }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--blue-ish);
  border: 1px solid #D6E6FF;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section { padding: 96px 0; }
.section-tint { background: var(--light); }
.section-dark { background: var(--navy); }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); }
.section-sub { font-size: 18px; color: var(--muted); }
.section-head-dark h2 { color: var(--white); }
.section-head-dark .section-sub { color: #A9B7CC; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s, color 0.2s, border-color 0.2s;
  user-select: none;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.btn:focus-visible { outline: 3px solid rgba(0, 101, 237, 0.4); outline-offset: 2px; }

.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--primary-dark); box-shadow: var(--glow); transform: translateY(-1px); }

.btn-ghost { background: #fff; color: var(--navy); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-1px); box-shadow: var(--shadow-sm); }

.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--blue-ish); transform: translateY(-1px); }

.btn-ghost-light { background: rgba(255,255,255,0.06); color: #EAF2FF; border-color: rgba(255,255,255,0.25); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.5); }

.btn-lg { padding: 15px 32px; font-size: 16px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.25s, background 0.25s;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-md);
}

.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 72px; }
.nav.scrolled { height: 60px; }
.nav { transition: height 0.25s; }

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; color: var(--navy); }
.brand-mark { flex: none; filter: drop-shadow(0 4px 10px rgba(0, 101, 237, 0.3)); }
.brand-logo { height: auto; width: auto; display: block; }
.site-header .brand-logo { width: 210px; transition: width 0.25s; }
.site-header.scrolled .brand-logo { width: 180px; }
.site-footer .brand-logo { width: 260px; }
.brand-light .brand-text { color: #fff; }

.nav-links { display: flex; list-style: none; gap: 30px; margin: 0; padding: 0; }
.nav-link {
  position: relative;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--primary); }
.nav-link.active { color: var(--primary); font-weight: 600; }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--primary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { height: 2px; background: var(--navy); border-radius: 2px; transition: transform 0.25s, opacity 0.2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-toggle:focus-visible { outline: 3px solid rgba(0, 101, 237, 0.4); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-link { padding: 12px 4px; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--border); }
.mobile-link:last-of-type { border-bottom: 0; }
.mobile-link:hover { color: var(--primary); }
.mobile-menu .btn { margin-top: 14px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 96px 0 110px; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(0,101,237,0.10) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 40%, transparent 100%);
}
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.45; animation: drift 18s var(--ease) infinite alternate; will-change: transform; }
.blob-1 { width: 480px; height: 480px; left: -140px; top: -120px; background: radial-gradient(circle at 30% 30%, #4DA3FF, #0065ED 70%); }
.blob-2 { width: 420px; height: 420px; right: -120px; bottom: -160px; background: radial-gradient(circle at 60% 40%, #7CB8FF, #0065ED 75%); animation-delay: -6s; }
@keyframes drift { from { transform: translate(0, 0); } to { transform: translate(24px, 18px); } }

.hero-inner-full { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; max-width: 100%; padding: 0 48px; }
.hero h1 { font-size: clamp(34px, 5vw, 54px); margin-bottom: 20px; }
.hero .lead { font-size: 19px; color: var(--muted); max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-actions.center { justify-content: center; }

.hero-stats { display: flex; gap: 40px; margin-top: 48px; }
.stat-num { display: block; font-size: 30px; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-label { font-size: 13px; color: var(--muted); }

/* ---------- Screenshot component ---------- */
.shot {
  position: relative;
  border-radius: 0;
  border: 1px solid var(--border);
  background: #0B1F3C;
  box-shadow: var(--shadow-lg), var(--glow);
  overflow: hidden;
}
.shot-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 16px;
  background: #0E2446;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.shot-bar .dot { width: 10px; height: 10px; border-radius: 50%; background: #263B5C; }
.shot-bar .dot:first-child { background: #FF5F57; }
.shot-bar .dot:nth-child(2) { background: #FEBC2E; }
.shot-bar .dot:nth-child(3) { background: #28C840; }
.shot-bar-title { margin-left: 10px; font-size: 12px; color: #9FB4D4; font-weight: 500; }
.shot-body { display: grid; place-items: center; }
.hero-visual-full { margin-top: 0; width: 100%; }
.hero-shot-full { width: 100%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-image-full { width: 100%; height: auto; display: block; }

.placeholder-mark { text-align: center; color: #7E93B5; }
.placeholder-icon { margin: 0 auto 14px; color: #4DA3FF; opacity: 0.7; }
.placeholder-label { font-size: 17px; font-weight: 700; color: #EAF2FF; letter-spacing: 0.02em; }
.placeholder-sub { font-size: 13.5px; color: #9FB4D4; margin-top: 4px; }

/* ---------- 10-suite tabs ---------- */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.tab-btn {
  appearance: none;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.tab-btn:hover { border-color: var(--primary); color: var(--primary); }
.tab-btn.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: var(--glow);
}
.tab-btn:focus-visible { outline: 3px solid rgba(0, 101, 237, 0.4); outline-offset: 2px; }

.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: fadeIn 0.35s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.suite-panel-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 48px;
  box-shadow: var(--shadow-sm);
}
.suite-copy h3 { font-size: 26px; margin-bottom: 14px; }
.suite-copy p { font-size: 16px; color: var(--muted); max-width: 480px; }
.suite-visual { width: 100%; }
.suite-visual .shot-tall .shot-body { aspect-ratio: auto !important; padding: 0 !important; }
.shot-tall .hero-image { width: 100%; height: 100%; object-fit: cover; display: block; }

.module-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.module-list li {
  background: var(--light);
  border: 1px solid var(--blue-ish);
  color: var(--primary);
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 999px;
  padding: 7px 14px;
}

/* ---------- Product spotlight (alternating) ---------- */
.spotlight-grid { display: flex; flex-direction: column; gap: 40px; }
.spotlight-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}
.spotlight-row-reverse .spotlight-copy { order: 2; }
.spotlight-row-reverse .spotlight-visual { order: 1; }
.spotlight-copy h3 { font-size: 24px; margin-bottom: 12px; }
.spotlight-copy p { font-size: 15.5px; color: var(--muted); max-width: 460px; }
.spotlight-visual { width: 100%; }
.spotlight-visual .shot-body { aspect-ratio: 16 / 10; }

/* ---------- Hero 3D product scene ---------- */
.scene {
  position: relative;
  height: 420px;
  perspective: 1400px;
}
.panel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 420px;
  max-width: 88%;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,0.12);
  background: #0B1F3C;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.panel-main {
  transform: translate(-50%, -50%) rotateY(-12deg) rotateX(6deg);
  border-color: rgba(255,255,255,0.18);
  background: #0B1F3C;
  box-shadow: 0 30px 80px rgba(0, 21, 52, 0.45), var(--glow);
  z-index: 3;
  animation: floatMain 8s ease-in-out infinite;
}
.panel-main .shot-body { aspect-ratio: 16 / 9; }
.panel-middle {
  transform: translate(-58%, -48%) rotateY(-26deg) rotateX(8deg) translateZ(-60px);
  z-index: 2;
  opacity: 0.5;
  pointer-events: none;
}
.panel-back {
  transform: translate(-64%, -44%) rotateY(-38deg) rotateX(10deg) translateZ(-140px);
  z-index: 1;
  opacity: 0.28;
  pointer-events: none;
}
.mini-label { padding: 12px 16px; font-size: 11px; color: #9FB4D4; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 12px; }
.mini-grid span { height: 34px; border-radius: 6px; background: rgba(255,255,255,0.06); }
@keyframes floatMain {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -10px; }
}

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--navy); padding: 28px 0; }
.trust-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 48px; }
.trust-item { color: #C9D8EF; font-size: 14px; letter-spacing: 0.02em; }
.trust-item strong { color: #fff; font-weight: 600; }
/* (trust-strip retired: replaced by .clients logo strip) */

/* ---------- Clients / logo strip ---------- */
.clients { padding: 64px 0; background: var(--white); border-bottom: 1px solid var(--border); }
.clients-label {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 36px;
}
.clients-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: stretch;
}
.clients-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 32s linear infinite;
  will-change: transform;
}
.marquee-track .client-logo { width: 220px; flex: none; }
.clients-marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 16px;
  border: 1px dashed var(--border-strong);
  border-radius: 0;
  background: var(--light);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}
.client-logo:hover { border-color: var(--primary); color: var(--primary); background: var(--blue-ish); }
img.client-logo { border: none; background: none; padding: 0; width: 180px; height: auto; display: block; color: transparent; }
.marquee-track img.client-logo { width: 180px; }
.client-note {
  margin: 28px 0 0;
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
}
.client-note code {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 12px;
  color: var(--primary);
}

/* ---------- WhatsApp floating button ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.wa-float:hover { transform: translateY(-3px) scale(1.04); background: #1EBE5B; box-shadow: 0 16px 34px rgba(37, 211, 102, 0.55); }
.wa-float:focus-visible { outline: 3px solid rgba(37, 211, 102, 0.5); outline-offset: 3px; }
.wa-float svg { display: block; }

/* ---------- Problem / Solution ---------- */
.problem-wrap { display: flex; flex-direction: column; gap: 48px; }

.frag-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 820px;
  margin: 0 auto;
  padding: 28px;
  background: linear-gradient(180deg, var(--light), var(--white));
  border: 1px solid var(--border);
  border-radius: 0;
}
.frag-chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
}
.frag-link { width: 26px; height: 2px; border-radius: 2px; background: linear-gradient(90deg, #C9D6E8, var(--primary-soft)); }

.split-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
}
.split-pain,
.split-solution {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 36px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.split-pain::before,
.split-solution::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
}
.split-pain::before { background: #C9D6E8; }
.split-solution::before { background: linear-gradient(90deg, var(--primary), var(--primary-soft)); }
.split-pain { background: var(--white); }
.split-solution { background: linear-gradient(180deg, var(--blue-ish), var(--white)); }

.split-pain h3,
.split-solution h3 { font-size: 21px; margin-bottom: 12px; }
.pain-copy { font-size: 14.5px; color: var(--muted); margin-bottom: 18px; }
.pain-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.pain-list li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  color: var(--body);
}
.pain-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #B42318;
  background: #FEF3F2;
  border: 1px solid #FECACA;
  border-radius: 50%;
}
.pain-list-solution li::before {
  content: "✓";
  color: #047857;
  background: #ECFDF5;
  border-color: #A7F3D0;
}

.split-divider { display: flex; align-items: center; justify-content: center; }
.split-vs {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow);
}

/* legacy compare (kept for safety, unused in template) */
.compare-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 14px;
}
.compare-tag-blue { color: var(--primary); background: var(--blue-ish); border-color: #D6E6FF; }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }

/* ---------- Suites ---------- */
.suite-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
.suite-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 26px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.suite-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #BBD4F7; }
.suite-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.suite-num { font-size: 13px; font-weight: 800; color: var(--primary); letter-spacing: 0.1em; }
.suite-icon { font-size: 18px; color: var(--primary); }
.suite-card h3 { font-size: 18px; }
.suite-card p { margin: 0; font-size: 14.5px; }

/* ---------- Workflow ---------- */
.workflow { display: flex; align-items: stretch; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.wf-node {
  flex: 1 1 110px;
  text-align: center;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 18px 12px;
  min-width: 110px;
}
.wf-node strong { display: block; color: var(--navy); font-size: 15px; }
.wf-node small { color: var(--muted); font-size: 12px; }
.wf-line { flex: 0 0 18px; align-self: center; height: 2px; background: linear-gradient(90deg, var(--primary-soft), var(--primary)); border-radius: 2px; }

/* ---------- Features ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 24px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.feature-card h3 { font-size: 16px; display: flex; align-items: center; gap: 10px; }
.feature-card h3::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--primary); flex: none; }
.feature-card p { margin: 0; font-size: 14.5px; }

/* ---------- Who it's for ---------- */
.who-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 18px; }
.who-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 22px; transition: transform 0.25s, box-shadow 0.25s; }
.who-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.who-card h3 { font-size: 16px; }
.who-card p { margin: 0; font-size: 14px; color: var(--muted); }

/* ---------- Deployment ---------- */
.deploy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 44px; }
.deploy-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; text-align: center; box-shadow: var(--shadow-sm); transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; }
.deploy-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #BBD4F7; }
.deploy-card h3 { font-size: 18px; }
.deploy-card p { margin: 0; font-size: 14.5px; }

/* ---------- Dark / About ---------- */
.section-dark { background: var(--navy); }
.section-light { background: var(--white); }
.section-light .section-head h2 { color: var(--navy); }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 80px; }
.why-card { background: var(--light); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; transition: transform var(--dur-s) var(--ease), box-shadow var(--dur-s) var(--ease), border-color var(--dur-s) var(--ease); }
.why-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-card h3 { color: var(--navy); font-size: 16px; }
.why-card p { margin: 0; font-size: 14px; color: var(--body); }

.about-section { max-width: 820px; margin: 0 auto; text-align: center; }
.about-copy { color: var(--body); font-size: 17px; }
.about-principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.principle { background: var(--light); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: transform var(--dur-s) var(--ease), box-shadow var(--dur-s) var(--ease); }
.principle:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.principle h4 { color: var(--primary); font-size: 15px; margin-bottom: 8px; }
.principle p { margin: 0; font-size: 14px; color: var(--body); }

/* keep dark variants available */
.section-dark .why-card { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); }
.section-dark .why-card h3 { color: #fff; }
.section-dark .why-card p { color: #A9B7CC; }
.section-dark .principle { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); }
.section-dark .principle h4 { color: var(--primary-soft); }
.section-dark .principle p { color: #A9B7CC; }
.section-dark .about-copy { color: #B7C5DC; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.plan-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan-featured { border: 2px solid var(--primary); box-shadow: var(--glow); }
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  padding: 6px 18px; border-radius: 999px; white-space: nowrap;
}
.plan-name { font-size: 17px; margin-bottom: 14px; }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; font-variant-numeric: tabular-nums; }
.price-amount { font-size: 30px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.price-period { font-size: 14px; color: var(--muted); font-weight: 500; }
.plan-vat { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.plan-desc { font-size: 14.5px; color: var(--muted); }
.plan-list { list-style: none; margin: 20px 0 28px; padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); flex-grow: 1; }
.plan-list li { position: relative; padding: 7px 0 7px 24px; font-size: 14px; color: var(--body); }
.plan-list li::before { content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
.plan-featured .plan-list li::before { color: var(--primary); }

.pricing-note {
  margin-top: 44px;
  background: var(--blue-ish);
  border: 1px solid #D6E6FF;
  border-radius: 0;
  padding: 32px;
  text-align: center;
}
.pricing-note h3 { font-size: 19px; }
.pricing-note p { margin: 0; color: var(--muted); font-size: 15px; max-width: 680px; margin: 0 auto; }

/* ---------- Comparison table ---------- */
.compare { margin-top: 64px; }
.compare-heading { text-align: center; font-size: 24px; margin-bottom: 28px; }
.table-scroll { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-lg); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 680px; background: var(--white); }
.compare-table th, .compare-table td { padding: 14px 18px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--border); }
.compare-table thead th { background: var(--navy); color: #fff; font-size: 13px; letter-spacing: 0.04em; }
.compare-table thead th.col-featured { background: var(--primary); }
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table td:first-child { font-weight: 600; color: var(--navy); white-space: nowrap; }
.compare-table tbody tr:hover { background: var(--light); }
.yes { color: var(--primary); font-weight: 800; }
.muted { color: var(--muted); }

/* ---------- Contact form ---------- */
.contact-layout { display: grid; grid-template-columns: 1.05fr 0.75fr; gap: 48px; align-items: start; max-width: 1040px; margin: 0 auto; }
.demo-form { width: 100%; }

.form-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.form-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-soft));
}

.form-error-box {
  background: #FEF3F2;
  border: 1px solid #FECACA;
  border-radius: 0;
  padding: 16px 20px;
  margin-bottom: 22px;
  color: #B42318;
  font-size: 14.5px;
}
.form-error-box strong { display: block; margin-bottom: 6px; }
.form-error-box ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.form-error-box a { color: #B42318; text-decoration: underline; font-weight: 600; }
.form-error-box[hidden] { display: none; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-weight: 600; font-size: 14px; color: var(--navy); margin-bottom: 8px; }
.form-field .req { color: #D92D20; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 15px;
  color: var(--ink);
  padding: 13px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: var(--white);
  transition: border-color var(--dur-s) var(--ease), box-shadow var(--dur-s) var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 101, 237, 0.15);
  outline: none;
}
.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: #D92D20;
  box-shadow: 0 0 0 3px rgba(217, 45, 32, 0.12);
}
.field-hint { display: block; color: var(--muted); font-size: 12.5px; margin-top: 6px; }
.field-error { display: block; color: #D92D20; font-size: 13px; margin-top: 6px; min-height: 0; font-weight: 500; }

.form-status { border-radius: var(--radius); padding: 18px 22px; font-size: 15px; margin-bottom: 28px; }
.form-success { background: #ECFDF5; border: 1px solid #A7F3D0; color: #065F46; }
.form-error { background: #FEF3F2; border: 1px solid #FECACA; color: #B42318; }
.form-status[hidden] { display: none; }

/* Contact aside */
.contact-aside { display: flex; flex-direction: column; gap: 24px; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.contact-card h3 { font-size: 19px; margin-bottom: 8px; }
.contact-card > p { font-size: 14px; }
.contact-methods { list-style: none; margin: 20px 0 24px; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.contact-methods li { display: flex; align-items: center; gap: 14px; }
.method-icon {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: var(--blue-ish);
  border: 1px solid #D6E6FF;
}
.method-label { display: block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.method-value { display: block; font-size: 14.5px; color: var(--navy); font-weight: 600; }
.contact-note { margin-top: 14px; font-size: 12px; color: var(--muted); }

.contact-info { border-top: 1px solid var(--border); padding-top: 24px; }
.contact-placeholder { background: var(--light); border: 1px dashed var(--border-strong); border-radius: var(--radius); padding: 16px; font-size: 14px; }

/* ---------- Final CTA (white gradient) ---------- */
.cta-final { position: relative; overflow: hidden; padding: 110px 0; background: linear-gradient(180deg, #FFFFFF 0%, #F4F8FF 55%, #EAF2FF 100%); }
.cta-bg-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(0,101,237,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 40%, #000 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 70% 80% at 50% 40%, #000 30%, transparent 100%);
  pointer-events: none;
}
.cta-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 90% at 50% 120%, rgba(0,101,237,0.16), transparent 70%);
  pointer-events: none;
}
.cta-orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.45; will-change: transform; animation: ctaDrift 16s var(--ease) infinite alternate; }
.cta-orb-1 { width: 340px; height: 340px; left: -80px; top: -80px; background: radial-gradient(circle at 40% 40%, #D6E6FF, transparent 70%); }
.cta-orb-2 { width: 300px; height: 300px; right: -60px; top: 20%; background: radial-gradient(circle at 60% 40%, #BDD8FF, transparent 70%); animation-delay: -5s; }
.cta-orb-3 { width: 260px; height: 260px; left: 45%; bottom: -60px; background: radial-gradient(circle at 50% 50%, #C9E0FF, transparent 70%); animation-delay: -9s; }
@keyframes ctaDrift { from { transform: translate(0, 0) scale(1); } to { transform: translate(28px, -18px) scale(1.08); } }

.cta-inner { position: relative; z-index: 1; }
.cta-card {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 48px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: perspective(1200px) rotateX(2.5deg);
  transition: transform var(--dur-m) var(--ease), box-shadow var(--dur-m) var(--ease);
}
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-soft));
}
.cta-card:hover { transform: perspective(1200px) rotateX(0deg) translateY(-4px); box-shadow: var(--shadow-lg), var(--glow-soft); }
.cta-eyebrow { margin-bottom: 20px; }
.cta-inner h2 { color: var(--navy); font-size: clamp(28px, 4vw, 42px); margin-bottom: 14px; }
.cta-inner p { color: var(--body); font-size: 17px; max-width: 560px; margin: 0 auto 32px; }

/* ---------- Footer ---------- */
.site-footer { position: relative; overflow: hidden; background: linear-gradient(180deg, #EAF2FF 0%, #F4F8FF 100%); color: var(--body); padding: 72px 0 0; }
.footer-glow {
  position: absolute;
  inset: -1px 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary) 30%, var(--primary-soft) 70%, transparent);
  opacity: 0.9;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 44px; padding-bottom: 52px; }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; }
.footer-brand .brand-text { color: var(--navy); }
.footer-tagline { font-size: 14px; margin-top: 16px; max-width: 320px; line-height: 1.6; color: var(--body); }
.footer-power { font-size: 13px; color: var(--muted); margin-top: 12px; letter-spacing: 0.04em; }
.footer-heading { color: var(--navy); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; font-weight: 700; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links a { display: inline-block; color: var(--body); font-size: 14.5px; padding: 7px 0; transition: color var(--dur-s) var(--ease), transform var(--dur-s) var(--ease); }
.footer-links a:hover { color: var(--primary); transform: translateX(3px); }
.footer-cta-text { margin-top: 18px; font-size: 13px; line-height: 1.6; }
.footer-bottom { border-top: 1px solid var(--border); padding: 24px 24px; font-size: 13px; color: var(--muted); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-l) var(--ease), transform var(--dur-l) var(--ease);
  will-change: opacity, transform;
}
.reveal.revealed { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ---------- Micro-motion ---------- */
/* Frag chips: entrance stagger + hover lift */
.frag-chip { transition: transform var(--dur-s) var(--ease), box-shadow var(--dur-s) var(--ease), border-color var(--dur-s) var(--ease); animation: chipIn var(--dur-m) var(--ease) both; }
.frag-chip:nth-child(1) { animation-delay: 0.05s; }
.frag-chip:nth-child(3) { animation-delay: 0.12s; }
.frag-chip:nth-child(5) { animation-delay: 0.19s; }
.frag-chip:nth-child(7) { animation-delay: 0.26s; }
.frag-chip:nth-child(9) { animation-delay: 0.33s; }
.frag-chip:nth-child(11) { animation-delay: 0.4s; }
.frag-chip:hover { transform: translateY(-4px); box-shadow: var(--glow-soft); border-color: var(--primary); }
@keyframes chipIn { from { opacity: 0; transform: translateY(14px) scale(0.9); } to { opacity: 1; transform: none; } }

/* Compare split cards: hover rise with brand border echo */
.split-pain, .split-solution {
  transition: transform var(--dur-s) var(--ease), box-shadow var(--dur-s) var(--ease), border-color var(--dur-s) var(--ease);
}
.split-solution:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #BBD4F7; }
.split-pain:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* Spotlight screenshot panels: gentle lift + glow */
.spotlight-row .shot { transition: transform var(--dur-s) var(--ease), box-shadow var(--dur-s) var(--ease); }
.spotlight-row .spotlight-visual:hover .shot { transform: translateY(-4px) scale(1.01); box-shadow: var(--shadow-lg), var(--glow-soft); }

/* Suite tab panel: fade-up on switch (JS toggles is-active) */
.tab-panel.is-active { animation: fadeUp var(--dur-m) var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* Hero headline entrance */
.hero-content h1 { animation: heroText var(--dur-l) var(--ease) both; }
@keyframes heroText { from { opacity: 0; transform: translateY(26px); filter: blur(4px); } to { opacity: 1; transform: none; filter: blur(0); } }
.hero-content .eyebrow { animation: heroText var(--dur-m) var(--ease) 0.08s both; }
.hero-content .lead { animation: heroText var(--dur-m) var(--ease) 0.16s both; }
.hero-actions { animation: heroText var(--dur-m) var(--ease) 0.24s both; }

/* Buttons: arrow nudge on primary hover */
.btn-primary { position: relative; }
.btn-primary:hover { transition-duration: var(--dur-s); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .blob, .ecosystem-orb, .panel-main, .frag-chip,
  .hero-content h1, .hero-content .eyebrow, .hero-content .lead, .hero-actions,
  .marquee-track, .tab-panel.is-active, .cta-orb { animation: none !important; }
  .cta-card { transform: none; }
  .panel-main { transform: translate(-50%, -50%) rotateY(-12deg) rotateX(0); }
  .panel-middle { transform: translate(-58%, -48%) rotateY(-26deg) translateZ(-60px); }
  .panel-back { transform: translate(-64%, -44%) rotateY(-38deg) translateZ(-140px); }
  .frag-chip, .spotlight-row .shot, .split-pain, .split-solution { transform: none !important; }
  .site-header, .nav { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .scene { height: 380px; }
  .panel { width: 380px; }
  .suite-panel-grid { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
  .spotlight-row { grid-template-columns: 1fr; gap: 32px; }
  .spotlight-row-reverse .spotlight-copy,
  .spotlight-row-reverse .spotlight-visual { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .deploy-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto 44px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav .btn-primary { display: none; }
  .nav-toggle { display: flex; }
  .tabs { gap: 8px; }
  .tab-btn { padding: 8px 14px; font-size: 13px; }
  .suite-panel-grid { padding: 24px; }
  .section { padding: 72px 0; }
  .compare-grid { grid-template-columns: 1fr; }
  .split-row { grid-template-columns: 1fr; gap: 20px; }
  .split-divider { transform: rotate(90deg); }
  .frag-grid { padding: 20px; }
  .why-grid { grid-template-columns: 1fr; }
  .about-principles { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .marquee-track .client-logo { width: 150px; }
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .form-card { padding: 22px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .workflow { flex-direction: column; align-items: stretch; }
  .wf-line { height: 18px; width: 2px; margin: 0 auto; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero { padding: 64px 0 80px; }
  .scene { height: 300px; }
  .panel { width: 320px; }
  .panel-middle { transform: translate(-58%, -46%) rotateY(-20deg) translateZ(-40px); }
  .panel-back { transform: translate(-62%, -42%) rotateY(-30deg) translateZ(-90px); }
  .hero-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .suite-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .stat-num { font-size: 24px; }
}

/* ---------- News / Blog ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card { background: var(--light); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; }
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.news-card-link { display: flex; flex-direction: column; height: 100%; color: inherit; text-decoration: none; }
.news-card-media { aspect-ratio: 16/9; background: var(--blue-ish); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.news-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-card-fallback { color: var(--primary); display: flex; }
.news-card-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.news-card-meta { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--muted); margin: 0; }
.news-card-cat { color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.news-card-title { font-size: 17px; font-weight: 700; color: var(--navy); margin: 0; line-height: 1.3; }
.news-card-title:hover { color: var(--primary); }
.news-card-excerpt { font-size: 13.5px; color: var(--muted); margin: 0 0 auto; line-height: 1.55; }
.news-all { margin-top: 32px; text-align: center; }
.news-empty { color: var(--muted); text-align: center; padding: 24px 0; }
.pagination { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 40px; }
.pagination-info { color: var(--muted); font-size: 14px; }

/* ---------- Post detail ---------- */
.post-container { max-width: 760px; }
.post-header { text-align: center; }
.post-header h1 { font-size: clamp(28px, 4vw, 40px); }
.post-meta { color: var(--muted); font-size: 14px; margin-top: 12px; }
.post-figure { margin: 28px 0 0; }
.post-image { width: 100%; border-radius: var(--radius); display: block; }
.post-body { font-size: 16px; line-height: 1.75; color: var(--body); margin-top: 8px; }
.post-body p { margin: 0 0 1.2em; }
.post-back { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--border); }

/* News responsive */
@media (max-width: 900px) {
  .news-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .news-grid { grid-template-columns: 1fr; }
}@media (max-width: 768px) {
  .hero-inner-full { grid-template-columns: 1fr; gap: 32px; padding: 0 24px; }
}
@media (max-width: 768px) {
  .hero-inner-full { grid-template-columns: 1fr; gap: 32px; padding: 0 24px; }
}
