


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

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
}


:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f7f9fc;
  --bg-tertiary: #eef2f7;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --accent-soft: #dbeafe;
  --warm-signal: #ea6a1f;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --surface-dark: #0f172a;
  --surface-dark-soft: #1f2937;
  --line-soft: #e2e8f0;

  --space-1: 0.618rem;
  --space-2: 1rem;
  --space-3: 1.618rem;
  --space-4: 2.618rem;
  --space-5: 4.236rem;

  --reading-width: min(92%, 1180px);
  --motion-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: 'Open Sans', 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  background: var(--bg-primary);
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

main {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1 1 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.1rem, 6vw, 3rem);
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  margin-bottom: var(--space-3);
}

h3 {
  font-size: 1.4rem;
}

p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: var(--space-2);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

strong {
  font-weight: 600;
}


.content-width {
  width: var(--reading-width);
  margin-inline: auto;
}

.content-area {
  flex: 1 1 auto;
  padding: var(--space-4) var(--space-2);
  background: var(--bg-secondary);
}

.content-area:nth-of-type(odd) {
  background: var(--bg-primary);
}

.area-heading {
  max-width: 28ch;
}



.area-intro.content-width {
  width: auto;
  margin-inline: 0;
}

.area-heading.content-width {
  width: auto;
  margin-inline: 0;
}

.area-intro {
  color: var(--text-secondary);
  max-width: 62ch;
  font-size: 1.05rem;
}

.eyebrow-label {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: var(--space-1);
}


.row-flow {
  display: flex;
  flex-direction: column;
}

.row-inline {
  display: flex;
  flex-wrap: wrap;
}

.column-flow {
  display: flex;
  flex-direction: column;
}

.align-center {
  align-items: center;
}

.align-start {
  align-items: flex-start;
}

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

.space-between {
  justify-content: space-between;
}

.gap-small {
  gap: var(--space-1);
}

.gap-medium {
  gap: var(--space-2);
}

.gap-large {
  gap: max(var(--space-3), 2vw);
}

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--text-secondary);
}

.text-small {
  font-size: 0.875rem;
}

.weight-bold {
  font-weight: 600;
}

.uppercase-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
}

.full-width {
  width: 100%;
}

.no-wrap {
  white-space: nowrap;
}

.spaced-above {
  margin-top: var(--space-3);
}

.spaced-below {
  margin-bottom: var(--space-3);
}

.padded-block {
  padding: var(--space-3);
}

.rounded-surface {
  border-radius: 14px;
}

.surface-card {
  background: var(--bg-primary);
  border: 1px solid var(--line-soft);
}

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

.uniform-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: max(var(--space-2), 1.5vw);
}

.split-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}


@media (min-width: 768px) {
  .content-area {
    padding: var(--space-5) var(--space-3);
  }

  .row-flow {
    flex-direction: row;
  }

  .uniform-card-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }

  .split-columns {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }
}

@media (min-width: 1024px) {
  body {
    line-height: 1.72;
  }

  .content-area {
    padding: var(--space-5) var(--space-4);
  }
}

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


.benefits-panel {
  background: var(--bg-secondary);
}

.services-view {
  background: var(--bg-primary);
}
