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

html { scroll-behavior: smooth; background: var(--bg-950); }

body {
  background: var(--bg-950);
  color: var(--text-mid);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-hi);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.08;
}

/* mobile-first: compact section rhythm by default, roomier from tablet up */
.section {
  position: relative;
  padding: var(--sp-7) var(--edge);
  scroll-margin-top: 96px;
}

@media (min-width: 861px) {
  .section { padding: var(--sp-8) var(--edge); }
}

.section-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-low);
  margin-bottom: var(--sp-3);
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dot-color, var(--blue));
  box-shadow: 0 0 12px 2px var(--dot-color, var(--blue));
}

h2.section-title {
  font-size: clamp(32px, 4vw, 48px);
  max-width: 16ch;
}

.section-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-low);
  max-width: 52ch;
  margin-top: var(--sp-3);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.25s;
}

.btn-primary {
  background: var(--whatsapp);
  color: #06210f;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px -6px #25d36680; }

.btn-ghost {
  background: transparent;
  border: 1px solid var(--hairline-strong);
  color: var(--text-hi);
}
.btn-ghost:hover { border-color: var(--text-low); transform: translateY(-2px); }

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

