/* ==========================================================================
   PT. Modsolide Kreasi Sukses — Design System
   Aesthetic: clinical trust, organic warmth. Forest green + warm gold,
   editorial serif headings over a clean grotesque body face.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  /* Color */
  --ink: #1b231c;
  --ink-soft: #3d453d;
  --paper: #fbf9f4;
  --paper-dim: #f2efe6;
  --sage-100: #eef3ea;
  --sage-200: #dbe6d2;
  --green-900: #1f4527;
  --green-700: #2e5e3a;
  --green-600: #3d7a49;
  --green-500: #4c8c4a;
  --gold-600: #c8842b;
  --gold-500: #e3a23c;
  --gold-300: #f3cf8e;
  --line: rgba(27, 35, 28, 0.12);
  --shadow-soft: 0 20px 60px -25px rgba(27, 53, 30, 0.35);

  /* Type */
  --font-display: 'Fraunces', 'Iowan Old Style', serif;
  --font-body: 'Manrope', 'Segoe UI', sans-serif;

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
  color: var(--green-900);
}

p {
  margin: 0 0 1em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--green-900);
  color: #fff;
  padding: 0.6em 1em;
  z-index: 200;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85em 1.6em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn:active {
  transform: scale(0.97);
}
.btn-primary {
  background: var(--green-700);
  color: #fff;
  box-shadow: 0 12px 24px -12px rgba(46, 94, 58, 0.65);
}
.btn-primary:hover {
  background: var(--green-900);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -12px rgba(46, 94, 58, 0.75);
}
.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--green-900);
}
.btn-ghost:hover {
  border-color: var(--green-700);
  background: var(--sage-100);
}
.btn-gold {
  background: var(--gold-500);
  color: var(--green-900);
  box-shadow: 0 12px 24px -12px rgba(200, 132, 43, 0.6);
}
.btn-gold:hover {
  background: var(--gold-600);
  transform: translateY(-2px);
}
.btn-lg {
  padding: 1em 2em;
  font-size: 1.02rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 249, 244, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.85rem;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.brand-mark {
  width: 42px;
  height: 42px;
  flex: none;
}
.brand-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--green-900);
  line-height: 1.15;
}
.brand-word small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.main-nav ul {
  display: flex;
  gap: 1.9rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  position: relative;
  padding-bottom: 4px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: width 0.25s ease;
}
.main-nav a:hover,
.main-nav a[aria-current='page'] {
  color: var(--green-900);
}
.main-nav a:hover::after,
.main-nav a[aria-current='page']::after {
  width: 100%;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle svg {
  width: 26px;
  height: 26px;
  color: var(--green-900);
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }
  .main-nav {
    position: fixed;
    inset: 68px 0 0 0;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem var(--gutter) 2rem;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    overflow-y: auto;
  }
  .main-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }
  .main-nav li {
    border-bottom: 1px solid var(--line);
  }
  .main-nav a {
    display: block;
    padding: 1rem 0.2rem;
  }
  .main-nav .btn {
    margin-top: 1.2rem;
    width: 100%;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem);
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -12%;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle at 30% 30%, rgba(227, 162, 60, 0.28), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(46, 94, 58, 0.22), transparent 65%);
  filter: blur(6px);
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  max-width: 14ch;
}
.hero-copy .lede {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-top: 1.1rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: clamp(1.6rem, 4vw, 2.8rem);
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.hero-stats .stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--green-800, var(--green-700));
}
.hero-stats .stat span {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.hero-art {
  position: relative;
  aspect-ratio: 1 / 1.05;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--green-700), var(--green-900) 70%);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.hero-art::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 26px);
}
.hero-art .art-badge {
  position: absolute;
  top: 8%;
  left: 8%;
  background: var(--paper);
  color: var(--green-900);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
  box-shadow: var(--shadow-soft);
}
.hero-art .art-badge.badge-2 {
  top: auto;
  left: auto;
  bottom: 9%;
  right: 8%;
  background: var(--gold-500);
  color: var(--green-900);
}
.hero-art svg {
  width: 62%;
  height: 62%;
  position: relative;
  z-index: 1;
}

/* ---------- Sections ---------- */
section {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}
.section-head {
  max-width: 640px;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}
.section-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin-top: 0.4rem;
}
.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.section-alt {
  background: var(--sage-100);
}

/* ---------- Offer / zig-zag rows ---------- */
.offer-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(2.2rem, 5vw, 3.2rem);
  border-bottom: 1px solid var(--line);
}
.offer-row:last-child {
  border-bottom: none;
}
.offer-row:nth-child(even) {
  grid-template-columns: 1.15fr 0.85fr;
}
.offer-row:nth-child(even) .offer-visual {
  order: 2;
}
.offer-visual {
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  background: var(--sage-100);
  display: grid;
  place-items: center;
  position: relative;
  border: 1px solid var(--sage-200);
}
.offer-visual svg {
  width: 46%;
  height: 46%;
  color: var(--green-700);
}
.offer-visual .tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--paper);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-600);
  box-shadow: var(--shadow-soft);
}
.offer-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gold-600);
  font-weight: 700;
}
.offer-copy h3 {
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
}
.offer-list {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.offer-list li {
  display: flex;
  gap: 0.65rem;
  font-size: 0.96rem;
  color: var(--ink-soft);
}
.offer-list li svg {
  flex: none;
  width: 18px;
  height: 18px;
  color: var(--green-600);
  margin-top: 3px;
}

/* ---------- Stat band ---------- */
.stat-band {
  background: var(--green-900);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  overflow: hidden;
}
.stat-band::after {
  content: '';
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 162, 60, 0.35), transparent 70%);
}
.stat-band .stat b {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--gold-300);
  display: block;
}
.stat-band .stat span {
  font-size: 0.92rem;
  opacity: 0.85;
}

/* ---------- Partners ---------- */
.partner-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.partner-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: scroll-left 32s linear infinite;
}
.partner-track:hover {
  animation-play-state: paused;
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.partner-chip {
  flex: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--paper);
  border: 1px solid var(--sage-200);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--green-900);
  white-space: nowrap;
}
.partner-chip .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
}
.partner-grid-note {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.card .icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--sage-100);
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
}
.card .icon-wrap svg {
  width: 26px;
  height: 26px;
  color: var(--green-700);
}
.card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}
.card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ---------- Timeline / legality ---------- */
.legal-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.legal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}
.legal-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
}
.legal-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.legal-list .num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--green-700);
  font-family: var(--font-display);
  font-weight: 700;
  display: grid;
  place-items: center;
}
.legal-list h4 {
  margin: 0 0 0.25rem;
  font-size: 1.02rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--green-900);
}
.legal-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.legal-doc {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: var(--shadow-soft);
}
.legal-doc dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1rem;
  margin: 0;
  font-size: 0.92rem;
}
.legal-doc dt {
  color: var(--ink-soft);
  font-weight: 600;
}
.legal-doc dd {
  margin: 0;
  color: var(--ink);
}
.legal-doc-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px dashed var(--line);
}
.legal-doc-head svg {
  width: 34px;
  height: 34px;
  color: var(--gold-600);
}

/* ---------- Vision / mission ---------- */
.vm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}
.vm-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--line);
  position: relative;
}
.vm-card.vision {
  background: linear-gradient(160deg, var(--green-700), var(--green-900));
  color: var(--paper);
  border: none;
}
.vm-card.vision h3 {
  color: var(--paper);
}
.vm-card.vision p {
  color: rgba(251, 249, 244, 0.85);
}
.vm-card .kicker {
  font-family: var(--font-display);
  font-size: 3rem;
  opacity: 0.18;
  position: absolute;
  top: 1rem;
  right: 1.4rem;
  line-height: 1;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--gold-500);
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 6vw, 3.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  left: -40px;
  top: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}
.cta-band h2 {
  color: var(--green-900);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  max-width: 24ch;
  margin: 0;
}
.cta-band .btn-primary {
  background: var(--green-900);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.contact-card {
  background: var(--green-900);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.4rem);
}
.contact-card h3 {
  color: var(--paper);
  font-size: 1.3rem;
}
.contact-info-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.2rem;
}
.contact-info-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.contact-info-list svg {
  flex: none;
  width: 20px;
  height: 20px;
  color: var(--gold-300);
  margin-top: 2px;
}
.contact-info-list b {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-300);
  margin-bottom: 0.15rem;
}
.contact-info-list span, .contact-info-list a {
  color: rgba(251, 249, 244, 0.92);
  font-size: 0.96rem;
}
.contact-info-list a:hover {
  color: var(--gold-300);
}

.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-soft);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.field {
  margin-bottom: 1.1rem;
}
.field label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
  color: var(--green-900);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8em 1em;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.96rem;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(76, 140, 74, 0.16);
}
.field textarea {
  min-height: 130px;
  resize: vertical;
}
.honeypot {
  position: absolute;
  left: -9999px;
}
.form-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 0.6rem;
}
.form-status {
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  display: none;
}
.form-status.is-success {
  display: block;
  background: var(--sage-100);
  color: var(--green-900);
  border: 1px solid var(--sage-200);
}
.form-status.is-error {
  display: block;
  background: #fbe9e7;
  color: #9c3b2c;
  border: 1px solid #f0c4bc;
}

.map-embed {
  margin-top: 2rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16/7;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-900);
  color: rgba(251, 249, 244, 0.85);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 1.6rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 2.5rem;
}
.footer-brand .brand-word,
.footer-brand .brand-word small {
  color: var(--paper);
}
.footer-brand .brand-word small {
  color: var(--gold-300);
}
.footer-tagline {
  margin-top: 1rem;
  font-size: 0.9rem;
  max-width: 32ch;
  color: rgba(251, 249, 244, 0.7);
}
.footer-col h5 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 1rem;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.footer-col a {
  font-size: 0.92rem;
  color: rgba(251, 249, 244, 0.85);
}
.footer-col a:hover {
  color: var(--gold-300);
}
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(251, 249, 244, 0.15);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(251, 249, 244, 0.6);
}

/* ---------- Page hero (secondary pages) ---------- */
.page-hero {
  padding: clamp(2.6rem, 6vw, 4rem) 0 2.5rem;
  position: relative;
}
.page-hero h1 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  max-width: 20ch;
}
.page-hero .lede {
  max-width: 52ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.breadcrumb {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.breadcrumb a {
  color: var(--green-700);
  font-weight: 600;
}

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .partner-track {
    animation: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid,
  .contact-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }
  .hero-art {
    max-width: 420px;
    margin: 0 auto;
  }
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .offer-row,
  .offer-row:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .offer-row:nth-child(even) .offer-visual {
    order: 0;
  }
  .offer-visual {
    max-width: 320px;
  }
  .stat-band,
  .vm-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}
