/* =========================================================================
   Rivomera Group LLC — styles.css
   Apple-inspired premium minimalism. White / black / off-white.
   Bank-friendly, calm, professional.
   ========================================================================= */

:root {
  --bg: #F7F7F5;
  --section-bg: #FFFFFF;
  --surface: #F2F2EF;
  --text: #050505;
  --text-2: #5F6368;
  --border: rgba(0, 0, 0, 0.08);
  --card-bg: rgba(255, 255, 255, 0.82);
  --dark: #050505;

  /* accents — used only inside visuals / small details */
  --river-cyan: #34c9d6;
  --soft-blue: #5aa9ff;
  --green: #7bd6a8;
  --amber: #f3b65a;
  --silver: #c8cdd2;

  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.07);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.10);

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

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Segoe UI", sans-serif;
}

/* ----------------------------- Reset ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }

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

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

/* ----------------------------- Buttons ----------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-size: 16px; font-weight: 500; letter-spacing: -0.01em;
  padding: 14px 26px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .35s var(--ease), background .25s var(--ease),
              box-shadow .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap; font-family: inherit;
}
.btn-primary { background: var(--text); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.18); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-block { width: 100%; }

/* ----------------------------- Header ----------------------------- */
.site-header {
  position: fixed; top: 14px; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: center; padding: 0 16px;
}
.header-inner {
  width: 100%; max-width: var(--maxw);
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 10px 12px 10px 22px;
  background: rgba(255,255,255,0.72);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: box-shadow .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}
.site-header.scrolled .header-inner {
  box-shadow: var(--shadow-md);
  border-color: rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.85);
}
.brand { font-size: 21px; font-weight: 600; letter-spacing: -0.03em; }
.nav-center { display: flex; gap: 26px; }
.nav-center a { font-size: 15px; color: var(--text-2); transition: color .2s var(--ease); }
.nav-center a:hover { color: var(--text); }
.header-actions { display: flex; align-items: center; gap: 10px; }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px;
  border: 1px solid var(--border); border-radius: 50%; background: #fff;
  align-items: center; justify-content: center; cursor: pointer;
}
.menu-toggle span { width: 18px; height: 1.5px; background: var(--text); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column; gap: 4px;
  position: absolute; top: 70px; left: 16px; right: 16px;
  background: rgba(255,255,255,0.96);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  border: 1px solid var(--border); border-radius: 22px; padding: 14px;
  box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(-8px); pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.mobile-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-nav a { padding: 13px 14px; border-radius: 12px; font-size: 17px; color: var(--text); }
.mobile-nav a:hover { background: var(--surface); }
.mobile-nav .btn { margin-top: 8px; }

/* ----------------------------- Sections ----------------------------- */
.section { padding: 110px 0; }
.section-alt { background: var(--section-bg); }
.section-head { max-width: 860px; margin: 0 auto 64px; text-align: center; }
.section-title { font-size: clamp(30px, 4.2vw, 48px); }
.section-sub { margin-top: 22px; font-size: clamp(17px, 1.4vw, 20px); color: var(--text-2); }
.section-eyebrow {
  text-align: center; font-size: clamp(20px, 2.4vw, 28px); font-weight: 500;
  color: var(--text); letter-spacing: -0.02em; max-width: 760px; margin: 0 auto;
}
.section-eyebrow-sub { text-align: center; margin-top: 12px; font-size: 14px; color: var(--text-2); letter-spacing: 0.02em; }

/* ----------------------------- Hero ----------------------------- */
.hero { padding: 170px 0 90px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center; }
.hero-title { font-size: clamp(42px, 7.2vw, 92px); letter-spacing: -0.035em; line-height: 1.03; }
.hero-sub { margin-top: 26px; max-width: 540px; font-size: clamp(17px, 1.5vw, 20px); color: var(--text-2); }
.hero-support { margin-top: 16px; max-width: 520px; font-size: 17px; color: var(--text-2); }
.hero-cta { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-microcopy { margin-top: 26px; font-size: 14px; color: var(--text-2); letter-spacing: 0.01em; }

.hero-visual { position: relative; }
.hv-stage {
  position: relative; width: 100%; aspect-ratio: 1 / 0.92;
  background: linear-gradient(160deg, #ffffff 0%, #f4f5f3 100%);
  border: 1px solid var(--border); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.hv-flow { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.9; }
.hv-river { stroke-dasharray: 6 10; opacity: 0.85; animation: riverFlow 8s linear infinite; }
.hv-river-2 { opacity: 0.4; animation-duration: 12s; }
@keyframes riverFlow { to { stroke-dashoffset: -160; } }

.hv-card {
  position: absolute; display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; background: rgba(255,255,255,0.9);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow-md);
}
.hv-card .hv-label { font-size: 12px; color: var(--text-2); }
.hv-card .hv-val { font-size: 14px; font-weight: 600; letter-spacing: -0.01em; }
.hv-card-1 { top: 12%; left: 8%; }
.hv-card-2 { top: 44%; right: 6%; }
.hv-card-3 { bottom: 12%; left: 14%; }
.hv-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--river-cyan); box-shadow: 0 0 0 4px rgba(52,201,214,0.15); }
.hv-dot.dot-blue { background: var(--soft-blue); box-shadow: 0 0 0 4px rgba(90,169,255,0.15); }
.hv-dot.dot-green { background: var(--green); box-shadow: 0 0 0 4px rgba(123,214,168,0.18); }

.hv-chip {
  position: absolute; font-size: 12px; font-weight: 500; color: var(--text-2);
  padding: 7px 13px; background: rgba(255,255,255,0.85);
  border: 1px solid var(--border); border-radius: 999px; box-shadow: var(--shadow-sm);
}
.chip-1 { top: 26%; right: 24%; }
.chip-2 { bottom: 30%; right: 16%; }

.hv-node { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--soft-blue); opacity: .8; }
.node-1 { top: 36%; left: 30%; animation: pulse 3s ease-in-out infinite; }
.node-2 { top: 58%; left: 50%; background: var(--river-cyan); animation: pulse 3.6s ease-in-out infinite .4s; }
.node-3 { top: 22%; left: 62%; background: var(--green); animation: pulse 4s ease-in-out infinite .8s; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity:.6;} 50% { transform: scale(1.6); opacity:1;} }

.float-a { animation: floatY 7s ease-in-out infinite; }
.float-b { animation: floatY 9s ease-in-out infinite .6s; }
.float-c { animation: floatY 8s ease-in-out infinite 1.2s; }
@keyframes floatY { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-10px);} }

/* ----------------------------- Grids & Cards ----------------------------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(0,0,0,0.12); }
.card h3 { font-size: 21px; margin-bottom: 12px; }
.card p { color: var(--text-2); font-size: 16px; }

/* Activity cards */
.check-list { display: flex; flex-direction: column; gap: 12px; margin-top: 6px; }
.check-list li { position: relative; padding-left: 26px; color: var(--text-2); font-size: 16px; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 14px; height: 9px;
  border-left: 2px solid var(--green); border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

/* Services */
.service-card { display: flex; flex-direction: column; }
.service-index { font-size: 14px; font-weight: 600; color: var(--text-2); margin-bottom: 14px; letter-spacing: 0.04em; }
.service-card > p { margin-bottom: 18px; }
.service-card ul { margin-top: auto; display: flex; flex-direction: column; gap: 10px; padding-top: 6px; border-top: 1px solid var(--border); }
.service-card ul { padding-top: 18px; }
.service-card li { position: relative; padding-left: 22px; color: var(--text-2); font-size: 15px; }
.service-card li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px;
  border-radius: 50%; background: var(--river-cyan);
}

.disclaimer {
  margin: 44px auto 0; max-width: 820px; text-align: center;
  font-size: 13px; color: var(--text-2); line-height: 1.7;
}

/* Challenge cards */
.challenge-card { position: relative; overflow: hidden; }
.card-line {
  display: block; width: 40px; height: 3px; border-radius: 3px; margin-bottom: 20px;
  background: linear-gradient(90deg, var(--river-cyan), var(--soft-blue));
  transition: width .45s var(--ease);
}
.challenge-card:hover .card-line { width: 72px; }

/* ----------------------------- Process ----------------------------- */
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.process-step { display: flex; flex-direction: column; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 600; color: var(--text);
  background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}
.process-step h3 { font-size: 19px; margin-bottom: 8px; }
.process-step p { font-size: 15px; }

/* ----------------------------- Platforms ----------------------------- */
.platforms { padding: 90px 0; }
.marquee {
  margin: 44px 0; overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track { display: flex; gap: 18px; width: max-content; animation: marquee 48s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0);} to { transform: translateX(-50%);} }
.logo-badge {
  flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 24px; font-size: 16px; font-weight: 600; letter-spacing: -0.01em;
  color: #6b7075; background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; opacity: 0.72;
  transition: opacity .3s var(--ease), transform .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.logo-badge:hover { opacity: 1; color: var(--text); transform: translateY(-3px); box-shadow: var(--shadow-sm); background: #fff; }
.logo-img {
  height: 20px; width: auto; display: block; flex: 0 0 auto;
  filter: grayscale(100%) contrast(0.85);
  opacity: 0.78; transition: filter .3s var(--ease), opacity .3s var(--ease);
}
.logo-badge:hover .logo-img { filter: grayscale(0%); opacity: 1; }

/* ----------------------------- Company / mini cards ----------------------------- */
.mini-grid { gap: 16px; }
.mini-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 26px; font-size: 17px; font-weight: 500; color: var(--text);
  box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 14px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.mini-card::before {
  content: ""; flex: 0 0 auto; width: 10px; height: 10px; border-radius: 50%;
  background: linear-gradient(135deg, var(--river-cyan), var(--soft-blue));
}
.mini-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* ----------------------------- Boundaries ----------------------------- */
.boundaries-card {
  max-width: 920px; margin: 0 auto; text-align: center;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 56px; box-shadow: var(--shadow-md);
}
.boundaries-title { font-size: clamp(26px, 3.4vw, 40px); margin-bottom: 22px; }
.boundaries-card p { color: var(--text-2); font-size: clamp(16px, 1.4vw, 19px); max-width: 720px; margin: 0 auto; }

/* ----------------------------- Company snapshot ----------------------------- */
.snapshot-card {
  max-width: 960px; margin: 0 auto;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 44px 48px; box-shadow: var(--shadow-md);
}
.snapshot-grid {
  margin: 0; display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 26px 48px;
}
.snap-item { display: flex; flex-direction: column; gap: 5px; }
.snap-item:last-child { grid-column: 1 / -1; }
.snap-item dt { font-size: 13px; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; color: var(--text-2); }
.snap-item dd { margin: 0; font-size: 17px; color: var(--text); font-weight: 500; line-height: 1.5; }
.snap-item dd a { color: var(--text); border-bottom: 1px solid var(--border); }
.snap-item dd a:hover { border-color: var(--text); }
.snapshot-note {
  margin-top: 32px; padding-top: 26px; border-top: 1px solid var(--border);
  font-size: 14px; color: var(--text-2); line-height: 1.7;
}

/* ----------------------------- Documents available ----------------------------- */
.documents-card {
  max-width: 920px; margin: 0 auto; text-align: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 52px; box-shadow: var(--shadow-sm);
}
.documents-title { font-size: clamp(24px, 3vw, 36px); margin-bottom: 20px; }
.documents-card p { color: var(--text-2); font-size: clamp(16px, 1.4vw, 18px); max-width: 720px; margin: 0 auto; }

/* ----------------------------- Contact ----------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-copy .section-title, .contact-copy .section-sub { text-align: left; }
.company-info {
  margin-top: 30px; padding: 24px 26px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.ci-name { font-size: 18px; font-weight: 600; }
.ci-line { font-size: 16px; color: var(--text-2); margin-top: 6px; }
.ci-line a { color: var(--text); font-weight: 500; border-bottom: 1px solid var(--border); }
.ci-line a:hover { border-color: var(--text); }
.contact-note { margin-top: 20px; font-size: 14px; color: var(--text-2); }

.contact-form {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 34px; box-shadow: var(--shadow-md);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; font-family: inherit; font-size: 16px; color: var(--text);
  padding: 14px 16px; background: var(--bg); border: 1px solid var(--border);
  border-radius: 14px; transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.field select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235F6368' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: rgba(0,0,0,0.28); background: #fff;
  box-shadow: 0 0 0 4px rgba(0,0,0,0.04);
}
.field textarea { resize: vertical; }
.form-status { margin-top: 14px; font-size: 14px; color: var(--text-2); min-height: 18px; }

/* ----------------------------- Footer ----------------------------- */
.site-footer { background: var(--section-bg); border-top: 1px solid var(--border); padding: 70px 0 40px; }
.footer-grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.footer-brand .brand { font-size: 22px; }
.footer-legal-name { margin-top: 8px; font-size: 15px; color: var(--text); font-weight: 500; }
.footer-tagline { margin-top: 4px; font-size: 14px; color: var(--text-2); }
.footer-contact { margin-top: 4px; font-size: 14px; color: var(--text-2); }
.footer-contact a { color: var(--text); border-bottom: 1px solid var(--border); }
.footer-contact a:hover { border-color: var(--text); }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px 28px; align-content: flex-start; max-width: 460px; }
.footer-links a { font-size: 15px; color: var(--text-2); transition: color .2s var(--ease); }
.footer-links a:hover { color: var(--text); }
.footer-disclaimer { margin-top: 30px; font-size: 13px; color: var(--text-2); max-width: 880px; line-height: 1.7; }
.footer-copy { margin-top: 18px; font-size: 13px; color: var(--text-2); }

/* ----------------------------- Legal pages ----------------------------- */
.legal { padding: 150px 0 90px; }
.legal-head { max-width: 820px; margin: 0 auto 50px; }
.legal-head h1 { font-size: clamp(34px, 5vw, 56px); letter-spacing: -0.03em; }
.legal-updated { margin-top: 16px; font-size: 15px; color: var(--text-2); }
.legal-body { max-width: 820px; margin: 0 auto; }
.legal-body h2 { font-size: 24px; margin: 44px 0 14px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { color: var(--text-2); font-size: 17px; margin-bottom: 14px; }
.legal-body ul { margin: 0 0 16px; padding-left: 0; display: flex; flex-direction: column; gap: 10px; }
.legal-body li { position: relative; padding-left: 22px; color: var(--text-2); font-size: 17px; }
.legal-body li::before { content: ""; position: absolute; left: 0; top: 11px; width: 6px; height: 6px; border-radius: 50%; background: var(--river-cyan); }
.legal-body a { color: var(--text); font-weight: 500; border-bottom: 1px solid var(--border); }
.legal-body a:hover { border-color: var(--text); }
.legal-snapshot { margin: 8px 0 8px; padding: 28px 30px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.legal-back { display: inline-flex; align-items: center; gap: 8px; margin-top: 50px; font-size: 16px; font-weight: 500; }
.legal-back::before { content: "←"; }

/* ----------------------------- Scroll reveal ----------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ----------------------------- Responsive ----------------------------- */
@media (max-width: 1040px) {
  .process-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 980px) {
  .nav-center { display: none; }
  .header-actions .btn-sm { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: flex; }

  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 480px; margin: 0 auto; width: 100%; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }

  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  body { font-size: 17px; }
  .section { padding: 76px 0; }
  .hero { padding: 140px 0 60px; }
  .hero-title { font-size: clamp(38px, 11vw, 52px); }
  .header-inner { padding: 9px 10px 9px 18px; }
  .section-head { margin-bottom: 44px; }

  .grid-3, .process-grid { grid-template-columns: 1fr; }
  .snapshot-grid { grid-template-columns: 1fr; gap: 22px; }
  .snapshot-card { padding: 30px 24px; }
  .documents-card { padding: 34px 24px; }
  .boundaries-card { padding: 32px 24px; }
  .contact-form { padding: 24px; }
  .footer-grid { flex-direction: column; gap: 28px; }
  .legal { padding: 130px 0 70px; }
}

/* ----------------------------- Reduced motion ----------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}
