@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
  --color-bg:        #F7F6F3;
  --color-surface:   #FFFFFF;
  --color-border:    #E4E2DC;
  --color-muted:     #9E9B94;
  --color-text:      #1C1B18;
  --color-heading:   #0F0E0C;
  --color-accent:    #2D6A4F;
  --color-accent-lt: #52B788;
  --color-accent-dk: #1B4332;
  --color-warn:      #B5451B;

  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.13);

  --nav-h: 72px;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--color-heading);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); line-height: 1.15; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.05rem; line-height: 1.4; }
p  { max-width: 68ch; }
.lead { font-size: 1.15rem; color: #4A4840; line-height: 1.85; font-weight: 300; }
.muted { color: var(--color-muted); font-size: 0.875rem; }
.label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.container { width: min(1200px, 100% - 2.5rem); margin-inline: auto; }
.section { padding: 5rem 0; }
.section--lg { padding: 7rem 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }
.stack { display: flex; flex-direction: column; gap: 1rem; }
.inline-flex { display: inline-flex; align-items: center; gap: 0.5rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.btn-primary:hover {
  background: var(--color-accent-dk);
  border-color: var(--color-accent-dk);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.btn-outline:hover {
  background: var(--color-accent);
  color: #fff;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.btn-ghost:hover { background: var(--color-surface); }

.nav {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--nav-h);
  background: rgba(247,246,243,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.nav__logo {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  object-fit: contain;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.nav__logo img { width: 100%; height: 100%; object-fit: cover; }
.nav__logo-placeholder {
  width: 38px;
  height: 38px;
  background: var(--color-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav__logo-placeholder i { color: #fff; font-size: 1.2rem; }
.nav__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--color-heading);
  letter-spacing: -0.02em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav__link {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: #5A5851;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  letter-spacing: 0.01em;
}
.nav__link:hover, .nav__link.active {
  color: var(--color-accent);
  background: rgba(45,106,79,0.08);
}
.nav__cta { margin-left: 0.75rem; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  width: 40px;
  height: 40px;
  cursor: pointer;
  flex-shrink: 0;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-heading);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(247,246,243,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  z-index: 850;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity var(--transition), transform var(--transition);
}
.nav__mobile.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav__mobile .nav__link {
  font-size: 1.25rem;
  padding: 0.85rem 2.5rem;
  width: 100%;
  max-width: 320px;
  text-align: center;
  border-radius: var(--radius-md);
}
.nav__mobile .btn {
  margin-top: 1.25rem;
  padding: 0.85rem 2.5rem;
  font-size: 1rem;
}

.hero {
  position: relative;
  min-height: calc(90vh - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(247,246,243,0.97) 40%, rgba(247,246,243,0.7) 70%, rgba(247,246,243,0.1) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  max-width: 620px;
}
.hero__label { margin-bottom: 1.25rem; }
.hero__title { margin-bottom: 1.5rem; }
.hero__title span { color: var(--color-accent); }
.hero__desc { margin-bottom: 2rem; font-size: 1.1rem; color: #4A4840; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 2.5rem; margin-top: 3.5rem; flex-wrap: wrap; }
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-heading);
  line-height: 1;
}
.hero__stat-label { font-size: 0.82rem; color: var(--color-muted); margin-top: 0.35rem; }

.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }
.section-header.center p { margin-inline: auto; }
.section-header .label { margin-bottom: 0.75rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: #5A5851; }

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: transparent;
}
.card__img { aspect-ratio: 16/9; overflow: hidden; }
.card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover .card__img img { transform: scale(1.04); }
.card__body { padding: 1.5rem; }
.card__body .label { margin-bottom: 0.5rem; }
.card__body h3 { margin-bottom: 0.6rem; }
.card__body p { font-size: 0.925rem; color: #5A5851; line-height: 1.7; }
.card__footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feature {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  transition: all var(--transition);
}
.feature:hover { border-color: var(--color-accent-lt); box-shadow: var(--shadow-sm); }
.feature__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(45,106,79,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.4rem;
}
.feature__text h4 { margin-bottom: 0.4rem; }
.feature__text p { font-size: 0.9rem; color: #5A5851; max-width: 100%; line-height: 1.65; }

.banner {
  background: var(--color-accent-dk);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: rgba(82,183,136,0.15);
  border-radius: 50%;
}
.banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 40%;
  width: 200px; height: 200px;
  background: rgba(82,183,136,0.1);
  border-radius: 50%;
}
.banner__text { position: relative; z-index: 1; }
.banner__text .label { color: var(--color-accent-lt); }
.banner__text h2 { color: #fff; margin: 0.5rem 0; }
.banner__text p { color: rgba(255,255,255,0.75); max-width: 50ch; }
.banner__action { position: relative; z-index: 1; }
.banner .btn-light {
  background: #fff;
  color: var(--color-accent-dk);
  border-color: #fff;
}
.banner .btn-light:hover { background: var(--color-bg); border-color: var(--color-bg); }

.quote-block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  padding: 2rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.quote-block p {
  font-size: 1.05rem;
  font-style: italic;
  color: #3A3832;
  margin-bottom: 1rem;
  line-height: 1.8;
}
.quote-block cite { font-size: 0.85rem; color: var(--color-muted); font-style: normal; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  background: rgba(45,106,79,0.1);
  color: var(--color-accent);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-display);
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
  margin: 1.1rem 0;
}
.divider.center { margin-inline: auto; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-heading);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--color-surface);
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
  line-height: 1.5;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(45,106,79,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-msg {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: none;
  line-height: 1.6;
}
.form-msg.success { background: rgba(82,183,136,0.15); color: var(--color-accent-dk); border: 1px solid rgba(82,183,136,0.3); display: block; }
.form-msg.error   { background: rgba(181,69,27,0.10); color: var(--color-warn); border: 1px solid rgba(181,69,27,0.2); display: block; }

.page-hero {
  background: linear-gradient(135deg, var(--color-accent-dk) 0%, var(--color-accent) 100%);
  color: #fff;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.page-hero .label { color: var(--color-accent-lt); margin-bottom: 0.75rem; }
.page-hero h1 { color: #fff; margin-bottom: 1.1rem; }
.page-hero p  { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 60ch; line-height: 1.8; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb i { font-size: 0.65rem; }

.team-card {
  text-align: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: all var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(45,106,79,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: var(--color-accent);
  overflow: hidden;
}
.team-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { margin-bottom: 0.25rem; }
.team-card .muted { margin-bottom: 0.75rem; display: block; }
.team-card p { font-size: 0.9rem; color: #5A5851; max-width: 100%; line-height: 1.65; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stats-row__item { background: var(--color-surface); padding: 2rem; text-align: center; }
.stats-row__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stats-row__label { font-size: 0.875rem; color: var(--color-muted); }

.metric-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.metric-card__value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.metric-card__label { font-size: 0.82rem; color: var(--color-muted); line-height: 1.4; }

.progress-item { margin-bottom: 1.35rem; }
.progress-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.progress-bar-track {
  height: 8px;
  background: var(--color-border);
  border-radius: 999px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: var(--color-accent);
  border-radius: 999px;
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}
.progress-bar-fill.secondary { background: var(--color-accent-lt); }

.compare-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  font-size: 0.9rem;
  line-height: 1.6;
}
.compare-table th {
  background: var(--color-accent-dk);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 1rem 1.25rem;
  text-align: left;
}
.compare-table td {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--color-bg); }
.compare-table .check { color: var(--color-accent); font-weight: 700; }
.compare-table .cross { color: var(--color-warn); }

.macro-ring { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.macro-legend { flex: 1; min-width: 200px; }
.macro-legend-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.875rem;
  line-height: 1.55;
}
.macro-legend-item:last-child { border-bottom: none; }
.macro-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; margin-top: 3px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--color-border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item__icon {
  width: 44px;
  height: 44px;
  background: rgba(45,106,79,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--color-accent);
  flex-shrink: 0;
}
.contact-info-item h4 { font-size: 0.82rem; margin-bottom: 0.25rem; color: var(--color-muted); font-weight: 600; }
.contact-info-item p { font-size: 0.95rem; max-width: 100%; line-height: 1.5; }

.legal-content h2 { font-size: 1.4rem; margin-top: 2.75rem; margin-bottom: 0.85rem; }
.legal-content h3 { font-size: 1.05rem; margin-top: 1.75rem; margin-bottom: 0.5rem; }
.legal-content p  { margin-bottom: 1.1rem; color: #4A4840; font-size: 0.95rem; line-height: 1.75; }
.legal-content ul { margin-left: 1.5rem; list-style: disc; margin-bottom: 1.1rem; }
.legal-content ul li { color: #4A4840; font-size: 0.95rem; margin-bottom: 0.45rem; line-height: 1.6; }
.legal-content a { color: var(--color-accent); text-decoration: underline; }
.legal-content .effective-date {
  background: rgba(45,106,79,0.08);
  border-left: 3px solid var(--color-accent);
  padding: 0.85rem 1.1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.875rem;
  color: var(--color-accent-dk);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.footer {
  background: var(--color-heading);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand .nav__name { color: #fff; }
.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.75;
  margin-top: 0.75rem;
  max-width: 30ch;
  color: rgba(255,255,255,0.55);
}
.footer__col h5 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer__col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  padding: 0.3rem 0;
  transition: color var(--transition);
  line-height: 1.5;
}
.footer__col a:hover { color: var(--color-accent-lt); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom a { color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer__bottom a:hover { color: rgba(255,255,255,0.7); }
.footer__nav-bottom { display: flex; gap: 1.5rem; flex-wrap: wrap; }

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: min(680px, calc(100vw - 2rem));
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.cookie-banner.show { transform: translateX(-50%) translateY(0); }
.cookie-banner__icon { font-size: 1.5rem; color: var(--color-accent); flex-shrink: 0; padding-top: 2px; }
.cookie-banner__text { flex: 1; }
.cookie-banner__text p { font-size: 0.875rem; color: #5A5851; margin-top: 0.3rem; max-width: 100%; line-height: 1.65; }
.cookie-banner__text strong { color: var(--color-heading); font-family: var(--font-display); }
.cookie-banner__actions { display: flex; gap: 0.6rem; margin-top: 1rem; flex-wrap: wrap; }
.cookie-banner__actions .btn { font-size: 0.82rem; padding: 0.55rem 1.1rem; }

.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
  pointer-events: none;
  z-index: 800;
}
.scroll-top.show { opacity: 1; transform: translateY(0); pointer-events: all; }
.scroll-top:hover { background: var(--color-accent-dk); }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .hero { min-height: auto; }
  .hero__content { padding: 3rem 0; max-width: 100%; }
  .hero__bg::after {
    background: linear-gradient(180deg, rgba(247,246,243,0.95) 0%, rgba(247,246,243,0.85) 60%, rgba(247,246,243,0.95) 100%);
  }
  .hero__stats { gap: 1.5rem; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .banner { padding: 2.5rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__nav-bottom { justify-content: center; }
  .section { padding: 3.5rem 0; }
  .section--lg { padding: 4.5rem 0; }
  .page-hero { padding: 3.5rem 0 2.5rem; }
  .cookie-banner { flex-direction: column; gap: 0.75rem; }
}

@media (max-width: 480px) {
  .banner { padding: 2rem 1.5rem; }
  .compare-table { font-size: 0.8rem; }
  .compare-table th, .compare-table td { padding: 0.65rem 0.875rem; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeUp 0.6s ease both; }
.animate-fade-up:nth-child(2) { animation-delay: 0.1s; }
.animate-fade-up:nth-child(3) { animation-delay: 0.2s; }
.animate-fade-up:nth-child(4) { animation-delay: 0.3s; }
