/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, p, figure, ul, ol { margin: 0; padding: 0; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ---------- Tokens ---------- */
:root {
  --bg: #0a0a0e;
  --bg-elev: #131318;
  --bg-elev-2: #1b1b22;
  --text: #f5f5f7;
  --text-dim: #a6a6b3;
  --text-dimmer: #75757f;
  --border: rgba(255, 255, 255, 0.09);
  --accent-1: #7c5cff;
  --accent-2: #22d3ee;
  --accent-grad: linear-gradient(120deg, var(--accent-1), var(--accent-2));
  --whatsapp: #25d366;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --container: 1120px;
  --section-pad: clamp(64px, 10vw, 140px);
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ---------- Accessibility helpers ---------- */
.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: var(--accent-1);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top 0.2s ease;
  font-weight: 600;
}
.skip-link:focus {
  top: 16px;
}

:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
  border-radius: 4px;
}

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

/* ---------- Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(10, 10, 14, 0.72);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.logo img { width: 30px; height: 30px; }
.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
  font-size: 0.95rem;
  color: var(--text-dim);
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--text); }
.nav-cta {
  display: none;
}
.nav-cta-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #06210f;
}
.nav-cta-mobile svg { width: 20px; height: 20px; }
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-cta-mobile { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent-grad);
  color: #0a0a0e;
}
.btn-primary:hover, .btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(124, 92, 255, 0.55);
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: #06210f;
}
.btn-whatsapp:hover, .btn-whatsapp:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(37, 211, 102, 0.5);
}
.btn-ghost {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--bg-elev-2);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(72px, 14vw, 160px);
  padding-bottom: clamp(56px, 10vw, 120px);
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 640px;
  background: radial-gradient(closest-side, rgba(124,92,255,0.35), transparent 70%),
              radial-gradient(closest-side at 70% 30%, rgba(34,211,238,0.28), transparent 65%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 960px) {
  .hero-inner { grid-template-columns: 1.1fr 0.9fr; gap: 32px; }
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.25);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  max-width: 16ch;
}
.hero h1 .grad {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  margin-top: 24px;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--text-dim);
  max-width: 46ch;
}
.hero-actions {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-meta {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 0.85rem;
  color: var(--text-dimmer);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta svg { width: 16px; height: 16px; color: var(--accent-2); }

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin-inline: auto;
  perspective: 1100px;
}

/* ---------- Hero 3D scene ---------- */
.scene3d {
  --mx: 0;
  --my: 0;
  --scroll: 0;
  --orbit: 1;
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform:
    rotateY(calc(var(--mx) * 10deg))
    rotateX(calc(var(--my) * -10deg))
    rotateZ(calc(var(--scroll) * -6deg))
    translateY(calc(var(--scroll) * -24px));
  transition: transform 0.15s ease-out;
  will-change: transform;
}
@media (max-width: 640px) {
  .scene3d { --orbit: 0.62; }
}

.scene3d-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--accent-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate3d(-50%, -50%, 10px);
  box-shadow: 0 0 60px 10px rgba(124, 92, 255, 0.45), 0 0 120px 40px rgba(34, 211, 238, 0.15);
}
.scene3d-core span {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0a0a0e;
  letter-spacing: -0.01em;
}

.scene3d-node-pos {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-style: preserve-3d;
}
.node-website { transform: translate(-50%, -50%) translate3d(calc(-118px * var(--orbit)), calc(-92px * var(--orbit)), 42px) rotateY(-16deg) rotateX(8deg); }
.node-whatsapp { transform: translate(-50%, -50%) translate3d(calc(128px * var(--orbit)), calc(-58px * var(--orbit)), 72px) rotateY(15deg) rotateX(-6deg); }
.node-billing { transform: translate(-50%, -50%) translate3d(calc(-102px * var(--orbit)), calc(100px * var(--orbit)), -18px) rotateY(-10deg) rotateX(-10deg); }
.node-reviews { transform: translate(-50%, -50%) translate3d(calc(118px * var(--orbit)), calc(92px * var(--orbit)), 22px) rotateY(12deg) rotateX(10deg); }

.scene3d-node-float {
  animation: scene3d-float 6s ease-in-out infinite;
}
.node-whatsapp .scene3d-node-float { animation-delay: -1.5s; animation-duration: 6.6s; }
.node-billing .scene3d-node-float { animation-delay: -3s; animation-duration: 5.4s; }
.node-reviews .scene3d-node-float { animation-delay: -4.4s; animation-duration: 7s; }

@keyframes scene3d-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.scene3d-card {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--bg-elev);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
}
.scene3d-card svg { width: 24px; height: 24px; }

@media (prefers-reduced-motion: reduce) {
  .scene3d {
    transform: none !important;
    transition: none !important;
  }
  .scene3d-node-float {
    animation: none !important;
  }
}

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-group] > * { transition-delay: calc(var(--i, 0) * 90ms); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- Section shell ---------- */
.section { padding-block: var(--section-pad); }
.section-alt { background: linear-gradient(180deg, transparent, rgba(255,255,255,0.02), transparent); }
.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  letter-spacing: -0.02em;
  font-weight: 700;
}
.section-head p {
  margin-top: 16px;
  color: var(--text-dim);
  font-size: 1.05rem;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid > :first-child { grid-column: span 2; }
}

.service-card {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}
.service-card:hover, .service-card:focus-within {
  border-color: rgba(124, 92, 255, 0.4);
  background: var(--bg-elev-2);
  transform: translateY(-4px);
}
.service-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--accent-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.service-icon svg { width: 24px; height: 24px; color: #0a0a0e; }
.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.service-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.service-card ul {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-dim);
}
.service-card ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.service-card ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  margin-top: 7px;
  flex-shrink: 0;
}

/* ---------- Service hover demos ---------- */
.demo-stage {
  position: absolute;
  inset: auto 20px 20px 20px;
  height: 108px;
  pointer-events: none;
}
.demo-stage[hidden] { display: block; }

/* WhatsApp bubble demo */
.demo-chat { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.demo-bubble {
  background: var(--whatsapp);
  color: #04210f;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 12px 12px 2px 12px;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  transition: opacity 0.35s ease, transform 0.35s ease;
  max-width: 78%;
}
.service-card:hover .demo-bubble,
.service-card:focus-within .demo-bubble { opacity: 1; transform: translateY(0) scale(1); }
.service-card:hover .demo-bubble:nth-child(1),
.service-card:focus-within .demo-bubble:nth-child(1) { transition-delay: 0.05s; }
.service-card:hover .demo-bubble:nth-child(2),
.service-card:focus-within .demo-bubble:nth-child(2) { transition-delay: 0.45s; }

/* Browser mockup demo */
.demo-browser {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  height: 100%;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  overflow: hidden;
}
.service-card:hover .demo-browser,
.service-card:focus-within .demo-browser { opacity: 1; transform: translateY(0); }
.demo-browser-bar { display: flex; gap: 5px; padding: 8px 10px; border-bottom: 1px solid var(--border); }
.demo-browser-bar span { width: 7px; height: 7px; border-radius: 50%; background: var(--text-dimmer); }
.demo-browser-body { padding: 12px; display: flex; flex-direction: column; gap: 6px; }
.demo-browser-body .bar { height: 8px; border-radius: 4px; background: var(--bg-elev-2); }
.demo-browser-body .bar.grad { background: var(--accent-grad); width: 40%; }
.demo-browser-body .bar.w60 { width: 60%; }
.demo-browser-body .bar.w80 { width: 80%; }

/* Notification stack demo */
.demo-notif { display: flex; flex-direction: column; gap: 8px; }
.demo-notif-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.service-card:hover .demo-notif-card,
.service-card:focus-within .demo-notif-card { opacity: 1; transform: translateX(0); }
.service-card:hover .demo-notif-card:nth-child(2),
.service-card:focus-within .demo-notif-card:nth-child(2) { transition-delay: 0.3s; }
.demo-notif-dot { width: 22px; height: 22px; border-radius: 50%; background: var(--accent-grad); flex-shrink: 0; }

/* Invoice demo */
.demo-invoice {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  height: 100%;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  position: relative;
}
.service-card:hover .demo-invoice,
.service-card:focus-within .demo-invoice { opacity: 1; transform: translateY(0); }
.demo-invoice .bar { height: 7px; border-radius: 4px; background: var(--bg-elev-2); margin-bottom: 7px; }
.demo-invoice .bar.w40 { width: 40%; }
.demo-invoice .bar.w70 { width: 70%; }
.demo-stamp {
  position: absolute;
  top: 10px; right: 10px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--whatsapp);
  border: 1.5px solid var(--whatsapp);
  border-radius: 6px;
  padding: 2px 8px;
  transform: rotate(8deg) scale(0.6);
  opacity: 0;
  transition: opacity 0.3s ease 0.5s, transform 0.3s ease 0.5s;
}
.service-card:hover .demo-stamp,
.service-card:focus-within .demo-stamp { opacity: 1; transform: rotate(8deg) scale(1); }

/* Star / review demo */
.demo-stars { display: flex; gap: 4px; margin-bottom: 10px; }
.demo-stars svg {
  width: 20px; height: 20px;
  color: var(--bg-elev-2);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.25s ease, transform 0.25s ease, color 0.25s ease;
}
.service-card:hover .demo-stars svg,
.service-card:focus-within .demo-stars svg { opacity: 1; transform: scale(1); color: #fbbf24; }
.service-card:hover .demo-stars svg:nth-child(1), .service-card:focus-within .demo-stars svg:nth-child(1) { transition-delay: 0.05s; }
.service-card:hover .demo-stars svg:nth-child(2), .service-card:focus-within .demo-stars svg:nth-child(2) { transition-delay: 0.15s; }
.service-card:hover .demo-stars svg:nth-child(3), .service-card:focus-within .demo-stars svg:nth-child(3) { transition-delay: 0.25s; }
.service-card:hover .demo-stars svg:nth-child(4), .service-card:focus-within .demo-stars svg:nth-child(4) { transition-delay: 0.35s; }
.service-card:hover .demo-stars svg:nth-child(5), .service-card:focus-within .demo-stars svg:nth-child(5) { transition-delay: 0.45s; }
.demo-review-line { height: 7px; border-radius: 4px; background: var(--bg-elev-2); margin-bottom: 6px; opacity: 0; transition: opacity 0.4s ease 0.5s; }
.service-card:hover .demo-review-line, .service-card:focus-within .demo-review-line { opacity: 1; }
.demo-review-line.w50 { width: 50%; }

@media (prefers-reduced-motion: reduce) {
  .demo-bubble, .demo-browser, .demo-notif-card, .demo-invoice, .demo-stamp, .demo-stars svg, .demo-review-line {
    transition: none !important;
  }
}

/* ---------- Who we help ---------- */
.audience-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) { .audience-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1080px) { .audience-grid { grid-template-columns: repeat(5, 1fr); } }
.audience-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.audience-card:hover, .audience-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.35);
}
.audience-card svg { width: 28px; height: 28px; color: var(--accent-2); margin-bottom: 14px; }
.audience-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.audience-card p { font-size: 0.85rem; color: var(--text-dim); }

/* ---------- Proof ---------- */
.proof-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 900px) { .proof-grid { grid-template-columns: 1fr 1fr; } }
.proof-card {
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  background: var(--bg-elev);
}
.proof-card.live {
  background: linear-gradient(160deg, rgba(124,92,255,0.14), rgba(34,211,238,0.08));
  border-color: rgba(124, 92, 255, 0.3);
}
.proof-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.proof-tag.live { color: var(--whatsapp); background: rgba(37, 211, 102, 0.12); }
.proof-tag.dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.proof-tag.soon { color: var(--text-dim); background: rgba(255,255,255,0.06); }
.proof-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 14px; letter-spacing: -0.01em; }
.proof-card p { color: var(--text-dim); margin-bottom: 24px; }
.proof-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.proof-list li { display: flex; gap: 10px; font-size: 0.9rem; color: var(--text-dim); }
.proof-list li::before { content: "✓"; color: var(--whatsapp); font-weight: 700; }
.proof-soon-visual {
  display: grid;
  gap: 10px;
  margin-bottom: 8px;
}
.proof-soon-row {
  height: 14px;
  border-radius: 6px;
  background: repeating-linear-gradient(90deg, var(--bg-elev-2) 0px, var(--bg-elev-2) 40px, transparent 40px, transparent 44px);
  opacity: 0.6;
}
.proof-soon-row.w70 { width: 70%; }
.proof-soon-row.w40 { width: 40%; }

/* ---------- Contact ---------- */
.contact-card {
  border-radius: var(--radius-lg);
  padding: clamp(32px, 6vw, 64px);
  background: radial-gradient(circle at 20% 20%, rgba(124,92,255,0.25), transparent 55%),
              radial-gradient(circle at 80% 80%, rgba(34,211,238,0.2), transparent 55%),
              var(--bg-elev);
  border: 1px solid var(--border);
  text-align: center;
}
.contact-card h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin-inline: auto;
}
.contact-card p {
  margin-top: 16px;
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 48ch;
  margin-inline: auto;
}
.contact-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.contact-fallback {
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--text-dimmer);
}
.contact-fallback a { color: var(--text-dim); text-decoration: underline; text-underline-offset: 3px; }
.contact-fallback a:hover, .contact-fallback a:focus-visible { color: var(--text); }

/* ---------- Contact form ---------- */
.contact-form-wrap {
  max-width: 560px;
  margin: 48px auto 0;
}
.form-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  color: var(--text-dimmer);
  font-size: 0.85rem;
}
.form-divider::before, .form-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.form-row { margin-bottom: 18px; }
.form-row-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 560px) {
  .form-row-split { grid-template-columns: 1fr 1fr; }
}
.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.form-row input,
.form-row textarea {
  width: 100%;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background 0.2s ease;
  resize: vertical;
}
.form-row input:hover, .form-row textarea:hover { border-color: rgba(255,255,255,0.18); }
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--accent-2);
  background: var(--bg-elev-2);
}
.form-hint {
  font-size: 0.8rem;
  color: var(--text-dimmer);
  margin-top: -10px;
  margin-bottom: 18px;
}
.form-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
#contact-form .btn-primary { width: 100%; justify-content: center; }
.form-status {
  margin-top: 16px;
  font-size: 0.9rem;
  min-height: 1.2em;
}
.form-status-success { color: var(--whatsapp); }
.form-status-error { color: #f87171; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding-block: 40px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}
@media (min-width: 700px) {
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-links { display: flex; gap: 24px; font-size: 0.9rem; color: var(--text-dim); }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--text); }
.footer-copy { font-size: 0.85rem; color: var(--text-dimmer); }

/* ---------- Privacy page ---------- */
.legal {
  padding-block: var(--section-pad);
  max-width: 760px;
}
.legal h1 { font-size: clamp(2rem, 4vw, 2.6rem); margin-bottom: 12px; letter-spacing: -0.02em; }
.legal .updated { color: var(--text-dimmer); font-size: 0.9rem; margin-bottom: 40px; }
.legal h2 { font-size: 1.3rem; margin-top: 36px; margin-bottom: 12px; }
.legal p, .legal li { color: var(--text-dim); font-size: 0.98rem; margin-bottom: 12px; }
.legal ul { padding-left: 20px; list-style: disc; }
.legal a { color: var(--accent-2); text-decoration: underline; }
