/* ================================================================
   BATCH EMAIL PLUGIN — "Month-End Mailroom" design system
   Reference: a back-office mailroom at month-end close — envelope
   stacks, rubber date-stamps, an OUT tray filling up fast.
   ================================================================ */

:root {
  /* ink / dark */
  --ink: #1e1b1d;
  --ink-soft: #2c2729;

  /* stamp orange family */
  --stamp: #f39c3a;
  --stamp-2: #f5ac5b;
  --stamp-tint: #f8c388;
  --stamp-pale: #fad8b2;

  /* paper / neutrals */
  --paper: #f3f1f0;
  --paper-white: #fffdfb;
  --muted: #686567;
  --muted-2: #8a8688;

  --line: rgba(30, 27, 29, 0.10);
  --line-strong: rgba(30, 27, 29, 0.16);

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

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

  --shadow-card: 0 1px 2px rgba(30, 27, 29, 0.04), 0 12px 32px -16px rgba(30, 27, 29, 0.18);
  --shadow-card-hover: 0 1px 2px rgba(30, 27, 29, 0.06), 0 20px 44px -18px rgba(30, 27, 29, 0.26);

  --container: 1180px;

  --google-form: #7372fe;
  --google-form-dark: #5746e3
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

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 {
  max-width: 100%;
  display: block;
}

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

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

/* fade-up (mandatory) */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============ NAVBAR ============ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper-white);
  border-bottom: 1px solid var(--line);
  transition: background .3s ease, backdrop-filter .3s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  gap: 16px;
}

.nav-logos {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo {
  height: 40px;
  width: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stamp-tint);
  font-size: 19px;
  transform: rotate(-4deg);
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.nav-links {
  display: none;
  gap: 34px;
}

@media (min-width: 769px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: var(--stamp);
  transition: width .25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.lang-switch {
  display: flex;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}

.lang-btn {
  border: none;
  background: transparent;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  font-family: var(--font-mono);
  transition: .2s;
}

.lang-btn.active {
  background: var(--ink);
  color: var(--stamp-tint);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  background: var(--paper-white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 73px;
  z-index: 99;
  padding: 10px 32px 18px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}

.mobile-menu .btn {
  margin-top: 12px;
  justify-content: center;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14.5px;
  padding: 13px 24px;
  border-radius: 999px;
  border: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--stamp-tint);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), 0 10px 24px -10px rgba(30, 27, 29, 0.5);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(30, 27, 29, 0.55);
}

.btn-primary .iconify {
  transition: transform .18s ease;
}

.btn-primary:hover .iconify {
  transform: translateX(3px);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 13.5px;
}

.btn-lg {
  padding: 16px 30px;
  font-size: 15.5px;
}

.btn-lg .iconify {
  font-size: 18px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--google-form);
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  padding: 13px 24px;
  border-radius: 999px;
  margin-top: 16px;
  box-shadow: 0 10px 24px -10px rgba(133, 37, 211, 0.45);
  transition: transform .18s ease, box-shadow .18s ease;
}

.whatsapp-btn .iconify {
  font-size: 20px;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -10px rgba(133, 37, 211, 0.45);
}

.whatsapp-btn-lg {
  padding: 17px 32px;
  font-size: 16px;
  margin-top: 28px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 96px;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: calc(var(--container) / 6) 100%;
  background-position: center top;
  opacity: .5;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--muted);
  background: var(--paper-white);
  border: 1px solid var(--line-strong);
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.stamp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--stamp);
  box-shadow: 0 0 0 3px var(--stamp-pale);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}

.highlight-wrap {
  display: inline-block;
}

.highlight {
  position: relative;
  color: var(--ink);
  background: linear-gradient(180deg, transparent 62%, var(--stamp-pale) 62%);
  padding: 0 2px;
}

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px dashed var(--line-strong);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 500;
}

.trust-item .iconify {
  color: var(--stamp);
  font-size: 17px;
  flex-shrink: 0;
}

/* hero visual — the OUT tray */
.hero-visual {
  position: relative;
}

.tray-card {
  background: var(--paper-white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 22px;
  position: relative;
  transform: rotate(1.2deg);
}

.tray-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line-strong);
}

.tray-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--muted-2);
}

.tray-count {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  background: var(--ink);
  color: var(--stamp-tint);
  padding: 4px 10px;
  border-radius: 999px;
}

.doc-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.doc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px 12px;
  position: relative;
  overflow: hidden;
}

.doc-icon {
  font-size: 20px;
  color: var(--stamp);
  flex-shrink: 0;
}

.doc-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.doc-name {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.doc-sub {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--muted-2);
}

.doc-stamp {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--stamp);
  border: 1.5px solid var(--stamp);
  border-radius: 6px;
  padding: 3px 7px;
  transform: rotate(-8deg);
  opacity: 0;
  flex-shrink: 0;
}

.doc-item.stamped .doc-stamp {
  animation: stampIn .35s ease forwards;
}

@keyframes stampIn {
  0% {
    opacity: 0;
    transform: rotate(-8deg) scale(1.6);
  }
  60% {
    opacity: 1;
    transform: rotate(-8deg) scale(0.92);
  }
  100% {
    opacity: 1;
    transform: rotate(-8deg) scale(1);
  }
}

.tray-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--line-strong);
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 600;
}

.pulse-icon {
  color: var(--stamp);
  font-size: 16px;
  animation: pulseIcon 1.6s ease-in-out infinite;
}

@keyframes pulseIcon {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}

.stamp-mark {
  position: absolute;
  top: -18px;
  right: -14px;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--stamp);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 30px;
  transform: rotate(14deg);
  box-shadow: 0 12px 26px -8px rgba(243, 156, 58, 0.6);
  border: 3px solid var(--paper);
}

/* ============ SECTIONS ============ */
.section {
  padding: 88px 0;
  position: relative;
}

.perforation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border-top: 1px dashed var(--line-strong);
}

.perforation::before,
.perforation::after {
  content: '';
  position: absolute;
  top: -6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line-strong);
}

.perforation::before { left: -6px; }
.perforation::after { right: -6px; }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--stamp-2);
  background: var(--ink);
  padding: 6px 13px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section-eyebrow-light {
  background: var(--stamp);
  color: var(--ink);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  max-width: 680px;
  margin: 0 0 52px;
}

/* ============ PAIN ============ */
.pain-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
}

.pain-card {
  background: var(--paper-white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
}

.pain-before {
  border-style: dashed;
}

.pain-after {
  box-shadow: var(--shadow-card);
  border-color: var(--stamp);
}

.pain-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: var(--stamp);
  font-size: 22px;
}

.pain-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--muted);
  margin-bottom: 18px;
}

.pain-tag-accent {
  color: var(--ink);
  background: var(--stamp-pale);
  padding: 4px 10px;
  border-radius: 6px;
}

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
}

.pain-before .pain-list .iconify {
  color: #c98a5a;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 18px;
}

.pain-after .pain-list .iconify {
  color: var(--stamp);
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 18px;
}

.pain-before .pain-list span:last-child {
  color: var(--muted);
}

.pain-after .pain-list span:last-child {
  font-weight: 500;
}

/* ============ BENEFITS ============ */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit-card {
  background: var(--paper-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--line-strong);
}

.benefit-card-lg {
  grid-column: span 2;
}

.benefit-icon {
  font-size: 30px;
  color: var(--stamp);
  margin-bottom: 16px;
  display: block;
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.benefit-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* ============ FEATURES ============ */
.feat-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  padding: 44px 0;
}

.feat-row+.feat-row {
  border-top: 1px dashed var(--line-strong);
}

.feat-row-rev {
  direction: rtl;
}

.feat-row-rev>* {
  direction: ltr;
}

.feat-index {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--stamp);
  display: block;
  margin-bottom: 12px;
  letter-spacing: .04em;
}

.feat-copy h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 14px;
  letter-spacing: -0.015em;
}

.feat-copy p {
  font-size: 15px;
  color: var(--muted);
  max-width: 440px;
  margin: 0;
}

.mock-window {
  background: var(--paper-white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.mock-bar {
  display: flex;
  gap: 6px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.mock-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line-strong);
}

.mock-bar span:first-child {
  background: var(--stamp);
}

.mock-list {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  background: var(--paper);
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 600;
}

.mock-row-muted {
  opacity: .55;
}

.mock-check {
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: var(--stamp);
  flex-shrink: 0;
}

.mock-row span:nth-child(2) {
  flex: 1;
}

.mock-badge {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--muted);
  background: var(--paper-white);
  border: 1px solid var(--line-strong);
  padding: 3px 8px;
  border-radius: 6px;
}

.mock-template {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mock-field span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted-2);
  margin-bottom: 6px;
  font-family: var(--font-mono);
}

.mock-input {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  font-size: 13.5px;
  color: var(--ink);
}

.mock-input-tall {
  min-height: 56px;
  color: var(--muted);
}

.mock-send {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.mock-send-icon {
  font-size: 36px;
  color: var(--stamp);
}

.mock-send-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  font-family: var(--font-mono);
}

.mock-progress {
  width: 100%;
  height: 8px;
  background: var(--paper);
  border-radius: 999px;
  overflow: hidden;
  margin: 6px 0;
}

.mock-progress-bar {
  width: 72%;
  height: 100%;
  background: linear-gradient(90deg, var(--stamp-2), var(--stamp));
  border-radius: 999px;
}

.mock-send-btn {
  background: var(--ink);
  color: var(--stamp-tint);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 22px;
  border-radius: 999px;
}

/* ============ HOW IT WORKS ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.step-card {
  background: var(--paper-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.step-card-accent {
  background: var(--ink);
  border-color: var(--ink);
}

.step-num {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 600;
  color: var(--stamp-tint);
  background: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  margin-bottom: 16px;
  transform: rotate(-3deg);
}

.step-card-accent .step-num {
  background: var(--stamp);
  color: var(--ink);
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.step-card p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

.step-card-accent h3,
.step-card-accent p {
  color: var(--paper-white);
}

.step-card-accent p {
  color: rgba(255, 253, 251, 0.72);
}

/* ============ WHO IT'S FOR ============ */
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.who-card {
  background: var(--paper-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.who-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.who-icon {
  font-size: 28px;
  color: var(--stamp);
  margin-bottom: 14px;
  display: block;
}

.who-card h3 {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.who-card p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* ============ CTA ============ */
.cta-section {
  background: var(--ink);
  color: var(--paper-white);
  border-radius: var(--radius-lg);
  margin: 0 24px;
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--stamp) 0%, transparent 70%);
  opacity: .35;
}

.cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--paper-white);
}

.cta-sub {
  font-size: 15.5px;
  color: rgba(255, 253, 251, 0.68);
  margin: 0 0 8px;
}

.cta-section .whatsapp-btn {
  box-shadow: 0 16px 34px -10px rgba(133, 37, 211, 0.45);
}

/* ============ FOOTER ============ */
.footer {
  padding: 44px 0 40px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 32px;
  border-top: 1px dashed var(--line-strong);
}

.footer-links {
  display: flex;
  gap: 26px;
}

.footer-links a {
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-copy {
  font-size: 12.5px;
  color: var(--muted-2);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    max-width: 460px;
    margin: 0 auto;
  }

  .benefit-card-lg {
    grid-column: span 3;
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .who-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feat-row,
  .feat-row-rev {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .feat-visual {
    order: -1;
    max-width: 460px;
  }
}

@media (max-width: 768px) {
  .nav-inner {
    padding: 14px 20px;
    justify-content: space-between;
  }

  .nav-logo {
    height: 32px;
  }

  .brand-text {
    font-size: 12px;
  }

  .brand-mark {
    width: 18px;
    height: 18px;
    font-size: 10px;
  }

  .lang-switch {
    display: flex;
  }

  .lang-btn {
    padding: 2px 4px;
    font-size: 10px;
  }

  .hamburger {
    display: flex;
  }

  .nav-actions .btn-sm {
    display: none;
  }

  .container {
    padding: none;
  }

  .hero {
    padding: 44px 0 64px;
  }

  .section {
    padding: 64px 0;
  }

  .pain-compare {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pain-arrow {
    transform: rotate(90deg);
    padding: 6px 0;
  }

  .benefit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .benefit-card-lg {
    grid-column: span 2;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .who-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    margin: 0 14px;
    padding: 64px 0;
    border-radius: var(--radius-md);
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
  }
}

@media (max-width: 480px) {
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card-lg {
    grid-column: span 1;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .whatsapp-btn {
    justify-content: center;
  }

  .section-title {
    margin-bottom: 36px;
  }
}