/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:      #F5F2EB;
  --card:       #EEE9DD;
  --ink:        #282828;
  --body-text:  #5B5854;
  --muted:      #6B6860;
  --ghost:      rgba(40,38,34,0.21);
  --green-900:  #34571D;
  --green-700:  #4B6A36;
  --green-600:  #597943;
  --dot:        #DED5C3;
  --white:      #FFFFFF;

  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-head: 'PT Serif', Georgia, serif;

  --wrap: 1180px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

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

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

.icon { width: 100%; height: 100%; display: block; }

/* ══════════════════════════════
   TYPE
══════════════════════════════ */
.display {
  font-family: var(--font-head);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.08;
  font-size: clamp(34px, 4.6vw, 64px);
}
.display-sm { font-size: clamp(28px, 3.2vw, 44px); }

.serif-sub {
  font-family: var(--font-head);
  font-weight: 400;
  color: var(--ink);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.serif-sub-small { font-size: 20px; margin-top: 28px; }

.lead {
  font-size: clamp(16px, 1.4vw, 22px);
  color: var(--muted);
  margin-top: 14px;
  max-width: 32em;
}

.body-text {
  font-size: 16px;
  line-height: 1.55;
  color: var(--body-text);
  margin-top: 14px;
  max-width: 34em;
}

.accent { color: var(--green-600); }

hr {
  border: none;
  border-top: 1px solid var(--dot);
  margin: 14px 0 0;
}

/* ══════════════════════════════
   BUTTONS / PILLS / CHIPS
══════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 500;
  border-radius: 12px;
  text-decoration: none;
  white-space: nowrap;
}
.btn-dark {
  background: var(--ink);
  color: var(--white);
  font-size: 17px;
  padding: 16px 24px;
}
.btn-dark:hover { background: #171614; }
.btn-sm { font-size: 14px; padding: 10px 18px; border-radius: 10px; }

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  font-weight: 700;
  font-size: clamp(14px, 1.4vw, 20px);
  letter-spacing: -0.02em;
  padding: 10px 16px;
}
.pill-eyebrow { background: var(--card); color: var(--ink); }
.pill-mark { background: var(--green-600); color: var(--white); border-radius: 20px; padding: 8px 14px; font-size: 18px; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: 1000px;
  padding: 6px 14px 6px 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  box-shadow: 1px 2px 20px rgba(0,0,0,0.08);
}
.chip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  padding: 5px;
  flex-shrink: 0;
  color: var(--white);
}
.chip-icon-green   { background: #C3DAB3; color: var(--green-900); }
.chip-icon-blue    { background: #4A7FE0; }
.chip-icon-mail    { background: #E8E5DC; color: var(--ink); }
.chip-icon-whatsapp{ background: #4CB963; }
.chip-icon-sm      { width: 24px; height: 24px; padding: 4px; border-radius: 1000px; background: var(--green-900); }

/* ══════════════════════════════
   NAV
══════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245,242,235,0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--dot);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.nav-links { display: flex; gap: 28px; flex: 1; justify-content: center; }
.nav-links a {
  color: var(--body-text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}
.nav-links a:hover { color: var(--ink); }

@media (max-width: 760px) {
  .nav-links { display: none; }
}

/* ══════════════════════════════
   SECTION SHELL
══════════════════════════════ */
.section { padding: 96px 0; }
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero { padding: 64px 0 96px; }
.hero-row {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.hero-copy { flex: 1 1 420px; min-width: 320px; }
.hero-copy .pill { margin-bottom: 24px; }
.hero-copy .btn { margin-top: 32px; }

.hero-art {
  position: relative;
  flex: 1 1 420px;
  width: 100%;
  min-width: 280px;
  max-width: 477px;
  aspect-ratio: 477 / 520;
  margin: 0 auto;
}
.hero-photo {
  position: absolute;
  left: 17.19%;
  top: 0;
  width: 67.09%;
  height: 100%;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }

.tag {
  position: absolute;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
  padding: 6px 8px;
  white-space: nowrap;
}
.tag-logo { top: 47.12%; left: 40.25%; background: var(--cream); color: var(--ink); }
.tag-syncing {
  top: 56.35%; left: 43.19%;
  background: none; color: var(--white);
  font-style: italic; font-weight: 400; font-size: 13px;
  padding: 0;
}

.chip-float { position: absolute; }
.chip-1 { top: 66.35%; left: 55.35%; }
.chip-2 { top: 14.81%; left: 53.04%; }
.chip-3 { top: 61.73%; left: 4.61%;  }
.chip-4 { top: 41.92%; left: 74.00%; }
.chip-5 { top: 29.23%; left: 0%;     }

@media (max-width: 900px) {
  .hero-art { margin: 40px auto 0; }
}

/* ══════════════════════════════
   EMPATHY BUILDER (carousel)
══════════════════════════════ */
.carousel-controls { display: flex; align-items: center; gap: 14px; }
.carousel-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--dot);
  background: none;
  color: var(--muted);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.carousel-arrow svg { width: 15px; height: 15px; }
.carousel-arrow:hover { border-color: var(--muted); color: var(--ink); }

.progress-dots { display: flex; align-items: center; gap: 6px; }
.dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 28px;
  background: var(--dot);
  cursor: pointer;
  transition: width 0.2s ease;
}
.dot-active { width: 44px; background: var(--ink); }

.empathy-carousel { overflow: hidden; }
.empathy-track {
  display: flex;
  transition: transform 0.4s ease;
}
.empathy-slide {
  flex: 0 0 100%;
  min-width: 0;
}

.empathy-row {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}
.empathy-card {
  position: relative;
  flex: 0 0 auto;
  width: 320px;
  max-width: 100%;
  aspect-ratio: 400 / 480;
  border-radius: 20px;
  overflow: hidden;
  background: var(--card);
}
.empathy-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.empathy-icon { position: absolute; top: 13.125%; left: 15.75%; width: 68.1%; opacity: 0.9; }
.empathy-icon-2 { top: 18.333%; left: 22%;   width: 56.25%; }
.empathy-icon-3 { top: 9.792%;  left: 12%;   width: 76.25%; }
.empathy-icon-4 { top: 6.25%;   left: 7.5%;  width: 84.75%; }
.empathy-caption {
  position: absolute;
  left: 8%; top: 77.083%;
  color: var(--white);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2;
}
.empathy-text { flex: 1 1 420px; min-width: 300px; padding-top: 4px; }

/* ══════════════════════════════
   COST
══════════════════════════════ */
.cost-grid {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  padding-bottom: 4px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}
.cost-grid::-webkit-scrollbar { display: none; }
.cost-card {
  position: relative;
  border: 2px solid var(--card);
  border-radius: 20px;
  padding: 24px;
  width: 400px;
  height: 480px;
  flex: 0 0 400px;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
}
.cost-card-filled { background: var(--card); border-color: var(--card); }
.eyebrow {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.cost-title {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 40px;
  letter-spacing: -0.07em;
  margin-top: 10px;
  line-height: 1.15;
}
.cost-icon { position: absolute; }
.cost-icon-1 { left: 94px;  top: 212px; width: 204px; height: 103px; }
.cost-icon-2 { left: 124px; top: 189px; width: 152px; height: 149px; }
.cost-icon-3 { left: 113px; top: 196px; width: 154px; height: 135px; }
.cost-icon-4 { left: 83px;  top: 190px; width: 148px; height: 147px; }
.cost-icon-5 { left: 121px; top: 185px; width: 158px; height: 160px; }
.cost-stat {
  margin-top: auto;
  padding-top: 24px;
  font-size: 20px;
  letter-spacing: -0.07em;
  color: var(--muted);
  line-height: 1.4;
  position: relative;
}
.cost-source {
  margin-top: 28px;
  font-size: 15px;
  letter-spacing: -0.07em;
  color: var(--muted);
  font-weight: 300;
}

/* ══════════════════════════════
   SPIN
══════════════════════════════ */
.spin { padding: 40px 0 120px; }
.spin-quote {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.25;
  text-align: center;
  letter-spacing: -0.02em;
  max-width: 16em;
  margin: 0 auto;
}

/* ══════════════════════════════
   VALUE / INTEGRATIONS CARD GRIDS
══════════════════════════════ */
.value-grid {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  padding-bottom: 4px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}
.value-grid::-webkit-scrollbar { display: none; }

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.value-card {
  position: relative;
  background: var(--card);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.value-grid .value-card {
  width: 433px;
  height: 630px;
  flex: 0 0 433px;
  scroll-snap-align: start;
}
.integrations-grid .value-card { min-height: 420px; }
.value-card-dark {
  background: linear-gradient(150deg, #7a6b1e 0%, var(--green-900) 55%, #24401a 100%);
  color: var(--white);
}
.value-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; opacity: 0.5; }
.value-caption {
  margin-top: auto;
  padding-top: 24px;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.25;
  position: relative;
}
.value-grid .value-caption {
  font-size: 32px;
  letter-spacing: -0.07em;
  line-height: 1.15;
}
.value-caption-light { color: var(--white); }

.value-grid .value-caption {
  position: absolute;
  left: 24px;
  top: 510px;
  width: calc(100% - 48px);
  margin: 0;
  padding: 0;
}

@media (max-width: 1000px) {
  .integrations-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .integrations-grid { grid-template-columns: 1fr; }
}

/* Mind-map card */
.mindmap {
  position: absolute;
  inset: 0;
}
.mm-line {
  position: absolute;
  left: 216.5px;
  top: 260px;
  height: 0;
  border-top: 1px dashed rgba(255,255,255,0.35);
  transform-origin: left center;
  z-index: 1;
}
.mindmap-center {
  position: absolute;
  top: 214px; left: 144px;
  background: var(--white);
  color: var(--green-900);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.04em;
  border-radius: 9px;
  padding: 8px 12px;
  white-space: nowrap;
  z-index: 3;
}
.chip-mm {
  position: absolute;
  background: var(--green-700);
  color: var(--white);
  font-size: 14px;
  letter-spacing: -0.06em;
  padding: 5px 12px 5px 4px;
  z-index: 2;
}
.chip-mm-1 { top: 56px;  left: 151px; }
.chip-mm-2 { top: 104px; left: 35px;  }
.chip-mm-3 { top: 104px; left: 310px; }
.chip-mm-4 { top: 229px; left: 33px;  }
.chip-mm-5 { top: 229px; left: 317px; }
.chip-mm-6 { top: 342px; left: 35px;  }
.chip-mm-7 { top: 406px; left: 157px; }
.chip-mm-8 { top: 342px; left: 299px; }

/* Issues list card */
.issues-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border-radius: 1000px;
  padding: 6px 14px 6px 6px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.05em;
  color: var(--green-600);
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  width: fit-content;
}
.pill-icon { width: 24px; height: 24px; display: flex; }
.issues-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  padding-left: 14px;
  border-left: 1px dashed var(--muted);
}
.value-grid .issues-pill { position: absolute; left: 27px; top: 161px; margin: 0; }
.value-grid .issues-list { position: absolute; left: 122px; top: 225px; width: 267px; margin: 0; }
.issues-list li {
  font-size: 14px;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.35;
}

/* Task list card */
.task-list { display: flex; flex-direction: column; gap: 16px; }
.value-grid .task-list { position: absolute; left: 88px; top: 151px; width: 257px; }
.task-row {
  background: var(--white);
  border-radius: 9px;
  padding: 10px 14px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}
.status {
  font-size: 12px;
  letter-spacing: -0.02em;
  font-weight: 700;
  border-radius: 1000px;
  padding: 3px 10px;
  width: fit-content;
  background: #EAEAEA;
  color: #3D3D3D;
}
.status-done { background: var(--green-600); color: var(--white); }
.task-count { justify-self: end; font-size: 14px; letter-spacing: -0.04em; font-weight: 600; color: #838383; }
.task-name { grid-column: 1 / -1; font-size: 16px; letter-spacing: -0.04em; font-weight: 500; opacity: 0.5; }

/* Stacked auto-generated documents card */
.doc-stack {
  position: absolute;
  inset: 0;
}
.doc-card {
  position: absolute;
  width: 199px;
  height: 252px;
  background: var(--white);
  border: 2px solid #EFEFEF;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.doc-card-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.04em;
  color: var(--green-700);
  margin-bottom: 4px;
}
.doc-bar {
  display: block;
  height: 8px;
  border-radius: 19px;
  background: #EFEFEF;
}
.doc-card-1 { top: 140px; left: 189px; z-index: 1; }
.doc-card-2 { top: 179px; left: 127px; z-index: 2; }
.doc-card-3 { top: 224px; left: 54px;  z-index: 3; }
.doc-creating {
  position: absolute;
  top: 65px;
  left: 149px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-700);
  color: var(--white);
  font-size: 16px;
  letter-spacing: -0.05em;
  font-weight: 600;
  padding: 4px 16px 4px 4px;
  border-radius: 1000px;
  white-space: nowrap;
}

/* Search widget card */
.search-widget { display: flex; flex-direction: column; gap: 10px; }
.value-grid .search-widget { position: absolute; left: 24px; top: 201px; width: calc(100% - 48px); }
.search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green-600);
  color: var(--white);
  border-radius: 1000px;
  padding: 10px 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}
.search-bar .icon { width: 18px; height: 18px; }
.search-placeholder { font-size: 13px; opacity: 0.85; }
.chip-search {
  background: var(--white);
  color: var(--green-700);
  font-size: 12px;
  letter-spacing: -0.02em;
  font-weight: 500;
  padding: 6px 12px;
  width: fit-content;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

/* ══════════════════════════════
   INTEGRATIONS
══════════════════════════════ */
.logo-grid-wrap {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 402 / 356;
}
.logo-grid-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: left top; }

.format-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.chip-format { background: var(--green-600); color: var(--white); }
.chip-format .chip-icon-sm { background: var(--green-900); }

.int-card-app { justify-content: space-between; }
.companion-phone {
  flex: 1;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chip-remember { background: rgba(255,255,255,0.15); color: var(--white); }
.chip-remember .chip-icon-sm { background: rgba(255,255,255,0.25); }

/* ══════════════════════════════
   HOW IT WORKS
══════════════════════════════ */
.how { overflow: hidden; padding-top: 130px; }
.how-row {
  display: flex;
  align-items: flex-start;
  gap: 56px;
  flex-wrap: wrap;
  position: relative;
}
.how-art {
  position: relative;
  flex: 0 0 auto;
  width: 192px;
  height: 192px;
}
.how-fan {
  position: absolute;
  left: -420px;
  top: 50%;
  transform: translateY(-50%);
  width: 900px;
  max-width: none;
  opacity: 0.5;
  z-index: 0;
}
.how-mark {
  position: relative;
  z-index: 2;
  width: 192px;
  height: 192px;
  border-radius: 40px;
  background: var(--green-900);
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-line {
  position: absolute;
  left: 100%;
  top: 96px;
  width: 480px;
  height: 1px;
  background: var(--green-900);
  z-index: 1;
}
.how-text { flex: 1 1 420px; min-width: 300px; max-width: 596px; margin-top: 130px; position: relative; z-index: 2; }

@media (max-width: 900px) {
  .how { padding-top: 0; }
  .how-fan { display: none; }
  .how-line { display: none; }
  .how-row { align-items: center; }
  .how-text { margin-top: 0; }
}

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 96px;
  margin-top: 40px;
}
.faq-item hr { margin-top: 14px; }
.faq-item .body-text { margin-top: 20px; }

@media (max-width: 760px) {
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ══════════════════════════════
   SIGN-UP MODAL
══════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 19, 16, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-card {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  width: 100%;
  max-width: 760px;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0,0,0,0.3);
}
.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
}
.modal-close:hover { background: var(--card); color: var(--ink); }

.modal-eyebrow {
  display: block;
  color: var(--green-600);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 16px;
}
.modal-eyebrow::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 28px; height: 3px;
  background: var(--green-600);
  border-radius: 2px;
}
.modal-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.modal-sub {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
  max-width: 34em;
  margin-bottom: 36px;
}

.form-row { display: flex; gap: 32px; margin-bottom: 28px; }
.form-field { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-size: 14px; font-weight: 500; color: var(--ink); }
.form-field input,
.form-field select {
  border: none;
  border-bottom: 1.5px solid var(--dot);
  background: none;
  padding: 8px 0;
  font-size: 16px;
  font-family: var(--font-body);
  color: var(--ink);
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}
.form-field select { cursor: pointer; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: none; border-color: var(--ink); }

.modal-divider { margin: 4px 0 28px; }

.form-field-wide { margin-bottom: 28px; }
.form-field-wide label { font-size: 16px; font-weight: 500; color: var(--ink); line-height: 1.4; margin-bottom: 6px; }
.form-field-wide textarea {
  border: 1.5px solid var(--dot);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  background: var(--green-700);
  color: var(--white);
  border: none;
  padding: 15px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
}
.btn-submit:hover { background: var(--green-900); }

.modal-success { padding: 8px 0 24px; }

@media (max-width: 600px) {
  .modal-card { padding: 32px 24px; }
  .form-row { flex-direction: column; gap: 20px; margin-bottom: 20px; }
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer { border-top: 1px solid var(--dot); padding: 40px 0; }
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 14px; color: var(--muted); }

/* ══════════════════════════════
   RESPONSIVE: general section stacking
══════════════════════════════ */
@media (max-width: 900px) {
  .section { padding: 64px 0; }
  .empathy-row { gap: 32px; }
}
