:root {
  --color-primary: #109c8f;
  --color-primary-dark: #08756d;
  --color-primary-soft: #ddf7f4;
  --color-primary-glow: rgba(16, 156, 143, 0.25);
  --color-primary-ring: rgba(16, 156, 143, 0.12);
  --color-dark: #071c1f;
  --color-dark-soft: #123236;
  --color-text: #1f2f33;
  --color-muted: #64787d;
  --color-bg: #ffffff;
  --color-bg-soft: #f6fbfa;
  --color-bg-teal: #eefdfb;
  --color-card: rgba(255, 255, 255, 0.82);
  --color-border: rgba(7, 28, 31, 0.1);
  --color-border-soft: rgba(7, 28, 31, 0.06);
  --container: 1280px;
  --radius-sm: 0.875rem;
  --radius-md: 1.25rem;
  --radius-lg: 1.75rem;
  --radius-xl: 2rem;
  --shadow-card: 0 24px 80px rgba(7, 28, 31, 0.08);
  --shadow-card-hover: 0 28px 90px rgba(7, 28, 31, 0.11);
  --shadow-button: 0 16px 40px rgba(16, 156, 143, 0.28);
  --font-hero: 3rem;
  --font-section: 2.15rem;
  --font-cta: 1.75rem;
  --font-price: 2.6rem;
}

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

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 7rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: linear-gradient(135deg, #f6fbfa 0%, #ffffff 42%, #eefdfb 100%);
  color: var(--color-text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.nav-open {
  overflow: hidden;
}

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

h1,
h2,
h3,
h4 {
  font-family: Manrope, Inter, sans-serif;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

svg {
  display: block;
}

input,
textarea {
  border: 0;
}

textarea {
  resize: vertical;
}

:focus-visible {
  outline: 3px solid var(--color-primary-ring);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--color-dark);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.75rem 1rem;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

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