/* ==========================================================================
   MGA Labs — Design tokens (see /DESIGN.md for rationale)
   Pass 3: white dominant, green Committed (real surface coverage, not a
   4px accent), black narrow and specific (buttons, body text).
   Reference: Wise — white field, one vivid brand green, near-black text.
   ========================================================================== */
:root {
  --bg: #ffffff;
  --border: #e4e1da;

  --ink: #141310;
  --muted: #5b564a;

  --accent: #3f8a49;
  --accent-bright: #57b563;
  --accent-tint: #eaf4ec;
  --on-accent: #000000;

  --font-sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --text-caption: 0.8125rem;
  --text-sm: 0.9375rem;
  --text-body: 1rem;
  --text-lead: 1.125rem;
  --text-h3: 1.5rem;
  --text-h2: clamp(1.875rem, 1.5rem + 1.4vw, 2.5rem);
  --text-h1: clamp(2.25rem, 1.3rem + 3.7vw, 3.75rem);
  --text-numeral: clamp(3rem, 1.8rem + 4vw, 5rem);

  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  --max-width: 1120px;
  --gutter: var(--space-md);

  --radius: 10px;
  --radius-lg: 16px;

  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
}

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

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

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

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  min-height: 44px;
  padding: var(--space-xs) var(--space-md);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 150ms var(--ease-out-quart),
    color 150ms var(--ease-out-quart), border-color 150ms var(--ease-out-quart),
    box-shadow 150ms var(--ease-out-quart);
}

.btn-primary {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
}

.btn-primary:hover {
  background: #2c2a24;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--ink);
}

.btn.btn-accent {
  background: var(--accent-bright);
  color: #ffffff;
  border-color: var(--accent-bright);
}

.btn.btn-accent:hover {
  background: #4aa557;
}

.btn-on-accent {
  background: var(--on-accent);
  color: #ffffff;
  border-color: var(--on-accent);
}

.btn-on-accent:hover {
  background: #1a1a18;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3xs);
  min-height: 44px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
  transition: border-color 150ms var(--ease-out-quart), color 150ms var(--ease-out-quart);
}

.link-arrow:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ==========================================================================
   Motion — one hero moment, tied to the motifs themselves
   ========================================================================== */
@keyframes fade-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes line-in {
  from {
    opacity: 0;
    transform: translateX(-6px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-copy > * {
  animation: fade-rise 600ms var(--ease-out-quart) both;
}

.hero-copy > *:nth-child(1) {
  animation-delay: 0ms;
}
.hero-copy > *:nth-child(2) {
  animation-delay: 120ms;
}
.hero-copy > *:nth-child(3) {
  animation-delay: 240ms;
}

.terminal-panel-body .line {
  animation: line-in 350ms var(--ease-out-quart) both;
}

.terminal-panel-body .line:nth-child(1) { animation-delay: 400ms; }
.terminal-panel-body .line:nth-child(2) { animation-delay: 520ms; }
.terminal-panel-body .line:nth-child(3) { animation-delay: 640ms; }
.terminal-panel-body .line:nth-child(4) { animation-delay: 760ms; }
.terminal-panel-body .line:nth-child(5) { animation-delay: 880ms; }
.terminal-panel-body .line:nth-child(6) { animation-delay: 1000ms; }
.terminal-panel-body .line:nth-child(7) { animation-delay: 1120ms; }
.terminal-panel-body .line:nth-child(8) { animation-delay: 1240ms; }
.terminal-panel-body .line:nth-child(9) { animation-delay: 1360ms; }

@media (prefers-reduced-motion: reduce) {
  .hero-copy > *,
  .terminal-panel-body .line {
    animation-duration: 0.01ms;
    animation-delay: 0ms;
  }
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
}

.site-header .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 104px;
}

.brand {
  position: absolute;
  left: var(--gutter);
  top: 4px;
  z-index: 2;
  line-height: 0;
}

.brand img {
  height: 96px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.main-nav ul {
  display: flex;
  gap: var(--space-lg);
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  transition: color 150ms var(--ease-out-quart), border-color 150ms var(--ease-out-quart);
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--ink);
  border-color: var(--accent);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
  transition: background-color 150ms var(--ease-out-quart);
}

.nav-toggle:hover {
  background: var(--accent-tint);
}

.nav-toggle-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}

.nav-toggle-lines span {
  display: block;
  height: 2px;
  background: var(--ink);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero .container {
  padding: var(--space-3xl) var(--gutter);
}

/* Pages whose hero has no button row (Sobre, Serviços, Contato) don't need
   as much trailing space before the next section starts. */
.hero--compact .container {
  padding-bottom: var(--space-lg);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.hero-copy h1 {
  font-family: var(--font-sans);
  font-size: var(--text-h1);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}

.hero-copy h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-copy p {
  font-size: var(--text-lead);
  line-height: 1.65;
  color: var(--muted);
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

/* ==========================================================================
   Terminal panel — the recurring motif (hero readout + process log),
   reskinned light: accent-tint surface, black mono text, green highlights
   ========================================================================== */
.terminal-panel {
  background: var(--accent-tint);
  border: 1px solid #d3e8d6;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.terminal-panel-bar {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-bottom: 1px solid #d3e8d6;
}

.terminal-panel-dots {
  display: flex;
  gap: 6px;
}

.terminal-panel-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #b9d9bd;
}

.terminal-panel-title {
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  color: var(--muted);
}

.terminal-panel-body {
  margin: 0;
  padding: var(--space-lg);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  line-height: 1.9;
  white-space: pre-wrap;
  color: var(--ink);
}

.terminal-panel-body .line {
  display: block;
}

.terminal-panel-body .prompt {
  color: var(--accent);
  font-weight: 600;
}

.terminal-panel-body .ok {
  color: var(--accent);
  font-weight: 600;
}

.terminal-panel-body .dim {
  color: var(--muted);
}

.terminal-panel-body .step {
  color: var(--accent);
  font-weight: 600;
}

.terminal-panel-body .term-cmd {
  margin-bottom: var(--space-2xs);
}

.terminal-panel-body .line.term-row {
  display: flex;
  gap: var(--space-sm);
}

.term-key {
  flex: 0 0 11rem;
  color: var(--accent);
  font-weight: 600;
}

.term-val {
  flex: 1 1 auto;
  min-width: 0;
  color: var(--muted);
}

/* ==========================================================================
   Section shell
   ========================================================================== */
.section {
  padding: var(--space-3xl) 0;
}

/* A section with no heading of its own (e.g. the contact form, right
   after a compact hero) doesn't need a full section's worth of top air. */
.section--flush-top {
  padding-top: var(--space-lg);
}

.section-header {
  max-width: 38rem;
  margin-bottom: var(--space-2xl);
}

.section-header h2 {
  font-family: var(--font-sans);
  font-size: var(--text-h2);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.25;
}

.prose {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 62ch;
}

.prose p {
  color: var(--muted);
  font-size: var(--text-lead);
  line-height: 1.65;
}

/* ==========================================================================
   Legal content — privacy policy, terms; long-form structured text
   ========================================================================== */
.legal-updated {
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  color: var(--muted);
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  max-width: 62ch;
}

.legal-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.legal-section h2 {
  font-family: var(--font-sans);
  font-size: var(--text-h3);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.legal-section p {
  color: var(--muted);
  font-size: var(--text-body);
  line-height: 1.7;
}

.legal-section ul {
  list-style: disc;
  padding-left: 1.2em;
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
}

.legal-section li {
  color: var(--muted);
  font-size: var(--text-body);
  line-height: 1.6;
}

.legal-section a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ==========================================================================
   Showcase carousel — illustrative system mockups (CSS/SVG, not photos
   pretending to be real client screenshots)
   ========================================================================== */
.carousel {
  position: relative;
}

.carousel-track {
  display: flex;
  gap: var(--space-lg);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: var(--space-2xs);
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  flex: 0 0 min(560px, 100%);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.carousel-caption {
  font-size: var(--text-sm);
  color: var(--muted);
}

.carousel-caption strong {
  color: var(--ink);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-md);
}

.carousel-arrows {
  display: flex;
  gap: var(--space-sm);
}

.carousel-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 150ms var(--ease-out-quart), background-color 150ms var(--ease-out-quart);
}

.carousel-arrow:hover {
  border-color: var(--ink);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
}

.carousel-dots button.is-active {
  background: var(--accent);
}

/* Mockup windows — abstract, generic UI shapes standing in for "the kind
   of system we build". Deliberately not text pretending to be a real
   product. */
.mockup-window {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #ffffff;
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: var(--space-xs) var(--space-sm);
  border-bottom: 1px solid var(--border);
}

.mockup-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
}

.mockup-body {
  padding: var(--space-lg);
  min-height: 280px;
}

.mockup-dashboard {
  display: flex;
  gap: var(--space-md);
  height: 100%;
}

.mockup-sidebar {
  flex: 0 0 56px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mockup-sidebar span {
  height: 8px;
  border-radius: 4px;
  background: var(--border);
}

.mockup-sidebar span:first-child {
  background: var(--accent);
}

.mockup-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  min-width: 0;
}

.mockup-stats {
  display: flex;
  gap: var(--space-sm);
}

.mockup-stat {
  flex: 1;
  height: 44px;
  border-radius: var(--radius);
  background: var(--accent-tint);
}

.mockup-chart {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  min-height: 100px;
}

.mockup-chart span {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: var(--accent);
  opacity: 0.85;
}

.mockup-chart span:nth-child(1) { height: 45%; }
.mockup-chart span:nth-child(2) { height: 70%; }
.mockup-chart span:nth-child(3) { height: 55%; }
.mockup-chart span:nth-child(4) { height: 90%; }
.mockup-chart span:nth-child(5) { height: 65%; }
.mockup-chart span:nth-child(6) { height: 80%; }

.mockup-phone-wrap {
  display: flex;
  justify-content: center;
  height: 100%;
}

.mockup-phone {
  width: 220px;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: var(--space-md);
  background: #ffffff;
}

.mockup-phone-header {
  height: 14px;
  width: 60%;
  border-radius: 4px;
  background: var(--ink);
  opacity: 0.85;
  margin-bottom: var(--space-md);
}

.mockup-phone-card {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  height: 56px;
  padding: 0 var(--space-sm);
  border-radius: var(--radius);
  background: var(--accent-tint);
  margin-bottom: var(--space-sm);
}

.mockup-phone-card span {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
}

.mockup-phone-nav {
  display: flex;
  justify-content: space-around;
  margin-top: var(--space-md);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border);
}

.mockup-phone-nav span {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--border);
}

.mockup-phone-nav span:first-child {
  background: var(--accent);
}

.mockup-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.mockup-diagram svg text {
  font-family: var(--font-sans);
}

@media (max-width: 759px) {
  .carousel-slide {
    flex-basis: 88%;
  }

  .mockup-body {
    min-height: 240px;
    padding: var(--space-md);
  }
}

/* ==========================================================================
   Services — large green numerals carry hierarchy; featured row gets a
   soft green wash for asymmetric emphasis instead of a card grid
   ========================================================================== */
.service-row {
  display: flex;
  align-items: baseline;
  gap: var(--space-xl);
  padding: var(--space-lg);
  margin: 0 calc(-1 * var(--space-lg));
  border-radius: var(--radius-lg);
}

.service-row--featured {
  background: var(--accent-tint);
}

.service-row .index {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  flex: none;
  width: 7rem;
}

.service-row--featured .index {
  font-size: var(--text-numeral);
}

.service-row:not(.service-row--featured) .index {
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.5rem);
}

.service-copy h3 {
  font-family: var(--font-sans);
  font-size: var(--text-h3);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--space-2xs);
}

.service-copy p {
  font-size: var(--text-body);
  color: var(--muted);
  line-height: 1.65;
  max-width: 46ch;
}

/* ==========================================================================
   CTA band — the one full-bleed green moment
   ========================================================================== */
.cta-band {
  background: var(--accent);
  color: var(--on-accent);
  padding: var(--space-2xl) 0;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-sans);
  font-size: var(--text-h2);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--on-accent);
  margin: 0 auto var(--space-sm);
  max-width: 34rem;
}

.cta-band p {
  color: var(--on-accent);
  font-size: var(--text-body);
  margin: 0 auto var(--space-lg);
  max-width: 30rem;
  line-height: 1.6;
}

/* ==========================================================================
   Contact form
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
}

.form-field label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
}

.form-field input,
.form-field textarea {
  font-family: var(--font-sans);
  font-size: var(--text-body);
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-sm);
  transition: border-color 150ms var(--ease-out-quart);
}

.form-field input:focus-visible,
.form-field textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-color: var(--accent);
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  display: none;
  font-size: var(--text-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius);
  line-height: 1.5;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  background: var(--accent-tint);
  color: var(--on-accent);
  border: 1px solid #d3e8d6;
}

.form-status.is-error {
  background: #fbeaea;
  color: #7a1f1f;
  border: 1px solid #f0c2c2;
}

.contact-info h3 {
  font-family: var(--font-sans);
  font-size: var(--text-h3);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--space-sm);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--bg);
  color: var(--muted);
  padding: var(--space-2xl) 0 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border);
}

.footer-brand img {
  height: 76px;
  margin-bottom: var(--space-sm);
}

.footer-brand p {
  font-size: var(--text-sm);
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: var(--space-sm);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
}

.footer-col a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  font-size: var(--text-sm);
  transition: color 150ms var(--ease-out-quart);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-legal p {
  font-size: var(--text-caption);
  line-height: 1.7;
}

.footer-bottom {
  padding: var(--space-md) 0;
  font-size: var(--text-caption);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-2xs);
}

.footer-bottom a {
  transition: color 150ms var(--ease-out-quart);
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

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

@media (max-width: 759px) {
  .nav-toggle {
    display: flex;
  }

  .term-key {
    flex-basis: 7rem;
  }

  .main-nav {
    position: absolute;
    top: 104px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: var(--space-2xs) var(--gutter) var(--space-lg);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 150ms var(--ease-out-quart), transform 150ms var(--ease-out-quart);
  }

  .main-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav ul li {
    border-bottom: 1px solid var(--border);
  }

  .main-nav a {
    width: 100%;
  }

  .main-nav .btn {
    margin-top: var(--space-sm);
    width: 100%;
    justify-content: center;
  }

  .hero .container {
    padding: var(--space-2xl) var(--gutter);
  }

  .hero--compact .container {
    padding-bottom: var(--space-lg);
  }

  .section {
    padding: var(--space-2xl) 0;
  }

  .service-row {
    gap: var(--space-md);
    padding: var(--space-md);
    margin: 0 calc(-1 * var(--space-md));
  }

  .service-row .index {
    width: 3.5rem;
  }

  .service-row--featured .index {
    font-size: clamp(2.25rem, 2rem + 6vw, 3.5rem);
  }
}
