
/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300&family=Playfair+Display:wght@500;600;700&display=swap');
:root {
  --clr-bg:        #F5F4F0;
  --clr-surface:   #FFFFFF;
  --clr-border:    #E2E0D9;
  --clr-text:      #1C1C1C;
  --clr-muted:     #6B6860;
  --clr-accent:    #3D6B5E;
  --clr-accent-lt: #4E8A7A;
  --clr-accent-dk: #2A4D44;
  --clr-cta:       #C8763A;
  --clr-cta-dk:    #A65E28;
  --clr-white:     #FFFFFF;
  --clr-dark:      #111111;
  --clr-overlay:   rgba(17,17,17,0.54);

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-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,.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.14);

  --transition: 0.28s cubic-bezier(.4,0,.2,1);

  --max-w: 1200px;
  --nav-h: 72px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; border: none; background: none; }
.display-xl { font-family: var(--ff-display); font-size: clamp(2.4rem,5vw,4rem); font-weight: 700; line-height: 1.15; letter-spacing: -.5px; }
.display-lg { font-family: var(--ff-display); font-size: clamp(1.9rem,4vw,3rem); font-weight: 600; line-height: 1.2; }
.display-md { font-family: var(--ff-display); font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 500; line-height: 1.3; }
.section-label { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2.5px; color: var(--clr-accent); margin-bottom: .6rem; }
.lead { font-size: 1.125rem; color: var(--clr-muted); max-width: 56ch; line-height: 1.8; }
.container { width: 92%; max-width: var(--max-w); margin-inline: auto; }
.section { padding: 96px 0; }
.section--sm { padding: 56px 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.gap-4 { gap: 1rem; }
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h);
  background: rgba(245,244,240,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--clr-border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.navbar__logo { display: flex; align-items: center; gap: 12px; }
.navbar__logo-img {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}
.navbar__logo-img--placeholder {
  width: 40px; height: 40px;
  background: var(--clr-accent);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.navbar__logo-img--placeholder svg { color: #fff; width: 22px; height: 22px; }
.navbar__brand {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--clr-accent-dk);
  letter-spacing: -.3px;
}
.navbar__links { display: flex; align-items: center; gap: 2px; }
.navbar__links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  color: var(--clr-muted);
  transition: color var(--transition), background var(--transition);
}
.navbar__links a:hover, .navbar__links a.active { color: var(--clr-accent); background: rgba(61,107,94,.09); }
.btn-nav-cta {
  margin-left: 12px;
  padding: 8px 20px !important;
  background: var(--clr-accent) !important;
  color: var(--clr-white) !important;
  border-radius: var(--radius-md) !important;
  font-weight: 600 !important;
  transition: background var(--transition) !important;
}
.btn-nav-cta:hover { background: var(--clr-accent-lt) !important; }
.navbar__hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.navbar__hamburger:hover { background: var(--clr-border); }
.navbar__hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.navbar__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--clr-surface);
  border-bottom: 1px solid var(--clr-border);
  padding: 16px 0 24px;
  box-shadow: var(--shadow-lg);
  z-index: 899;
  flex-direction: column;
}
.navbar__mobile.open { display: flex; }
.navbar__mobile a {
  padding: 13px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--clr-muted);
  border-bottom: 1px solid var(--clr-border);
  transition: color var(--transition), background var(--transition);
}
.navbar__mobile a:last-child { border-bottom: none; }
.navbar__mobile a:hover, .navbar__mobile a.active { color: var(--clr-accent); background: rgba(61,107,94,.07); }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-weight: 600; font-size: .95rem;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--clr-accent);
  color: var(--clr-white);
}
.btn-primary:hover { background: var(--clr-accent-lt); box-shadow: 0 6px 20px rgba(61,107,94,.35); }
.btn-cta {
  background: var(--clr-cta);
  color: var(--clr-white);
}
.btn-cta:hover { background: var(--clr-cta-dk); box-shadow: 0 6px 20px rgba(200,118,58,.35); }
.btn-outline {
  background: transparent;
  color: var(--clr-accent);
  border: 2px solid var(--clr-accent);
}
.btn-outline:hover { background: var(--clr-accent); color: var(--clr-white); }
.btn-ghost {
  background: rgba(255,255,255,.15);
  color: var(--clr-white);
  border: 1px solid rgba(255,255,255,.3);
}
.btn-ghost:hover { background: rgba(255,255,255,.25); }
.btn-sm { padding: 9px 20px; font-size: .875rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero__bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(17,30,27,.75) 0%, rgba(44,77,68,.65) 100%);
  z-index: 1;
}
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__content {
  position: relative; z-index: 2;
  color: var(--clr-white);
  max-width: 680px;
  padding: 80px 0;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}
.hero__title { color: var(--clr-white); margin-bottom: 24px; }
.hero__title span { color: #8FD5C2; }
.hero__desc { color: rgba(255,255,255,.82); font-size: 1.1rem; line-height: 1.8; margin-bottom: 40px; max-width: 52ch; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
.section-head { margin-bottom: 56px; }
.section-head--center { text-align: center; }
.section-head--center .lead { margin-inline: auto; }
.section-head .display-lg { margin-bottom: 16px; }
.card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card__img { width: 100%; height: 220px; object-fit: cover; }
.card__body { padding: 28px; }
.card__tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(61,107,94,.1);
  color: var(--clr-accent);
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 12px;
}
.card__title { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; }
.card__text { font-size: .9rem; color: var(--clr-muted); line-height: 1.7; }
.feature-card {
  padding: 36px 32px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--clr-accent); }
.feature-card__icon {
  width: 52px; height: 52px;
  background: rgba(61,107,94,.12);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--clr-accent);
}
.feature-card__icon svg { width: 26px; height: 26px; }
.feature-card__title { font-family: var(--ff-display); font-size: 1.15rem; font-weight: 600; margin-bottom: 10px; }
.feature-card__text { font-size: .9rem; color: var(--clr-muted); line-height: 1.7; }
.stats-bar {
  background: var(--clr-accent-dk);
  padding: 48px 0;
  color: var(--clr-white);
}
.stats-bar__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stats-bar__num { font-family: var(--ff-display); font-size: 2.6rem; font-weight: 700; color: #8FD5C2; line-height: 1; }
.stats-bar__label { font-size: .85rem; color: rgba(255,255,255,.7); margin-top: 6px; letter-spacing: .5px; }
.testimonial {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.testimonial__quote { font-size: 1.05rem; color: var(--clr-muted); line-height: 1.8; font-style: italic; margin-bottom: 24px; }
.testimonial__quote::before { content: '"'; font-family: var(--ff-display); font-size: 3rem; color: var(--clr-accent); line-height: .5; vertical-align: -.4em; margin-right: 4px; }
.testimonial__author { display: flex; align-items: center; gap: 14px; }
.testimonial__avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; background: var(--clr-border); }
.testimonial__name { font-weight: 600; font-size: .95rem; }
.testimonial__role { font-size: .8rem; color: var(--clr-muted); }
.testimonial__stars { display: flex; gap: 2px; margin-bottom: 4px; color: #E89B3A; }
.cta-banner {
  background: linear-gradient(135deg, var(--clr-accent-dk) 0%, var(--clr-accent) 100%);
  border-radius: var(--radius-xl);
  padding: 72px 60px;
  text-align: center;
  color: var(--clr-white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.cta-banner::after {
  content: '';
  position: absolute; bottom: -80px; left: -40px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.cta-banner__title { font-family: var(--ff-display); font-size: clamp(1.7rem,3vw,2.6rem); font-weight: 700; margin-bottom: 16px; position: relative; z-index: 1; }
.cta-banner__text { color: rgba(255,255,255,.8); margin-bottom: 36px; font-size: 1.05rem; max-width: 52ch; margin-inline: auto; position: relative; z-index: 1; }
.cta-banner .btn { position: relative; z-index: 1; }
.accordion { border: 1px solid var(--clr-border); border-radius: var(--radius-lg); overflow: hidden; }
.accordion__item { border-bottom: 1px solid var(--clr-border); }
.accordion__item:last-child { border-bottom: none; }
.accordion__header {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px;
  font-weight: 600; font-size: .975rem;
  background: var(--clr-surface);
  color: var(--clr-text);
  transition: background var(--transition);
}
.accordion__header:hover { background: rgba(61,107,94,.04); }
.accordion__header svg { flex-shrink: 0; color: var(--clr-accent); transition: transform var(--transition); }
.accordion__header[aria-expanded="true"] svg { transform: rotate(180deg); }
.accordion__body { display: none; padding: 0 28px 24px; font-size: .9rem; color: var(--clr-muted); line-height: 1.8; background: var(--clr-surface); }
.accordion__body.open { display: block; }
.form-group { margin-bottom: 22px; }
.form-label { display: block; font-size: .875rem; font-weight: 600; margin-bottom: 8px; color: var(--clr-text); }
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  background: var(--clr-surface);
  color: var(--clr-text);
  font-size: .9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus { outline: none; border-color: var(--clr-accent); box-shadow: 0 0 0 3px rgba(61,107,94,.15); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-control::placeholder { color: #B0AEA8; }
.page-hero {
  background: linear-gradient(135deg, var(--clr-accent-dk) 0%, var(--clr-accent) 100%);
  padding: calc(var(--nav-h) + 72px) 0 72px;
  color: var(--clr-white);
  text-align: center;
}
.page-hero__title { color: var(--clr-white); margin-bottom: 16px; }
.page-hero__desc { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 54ch; margin-inline: auto; }
.footer {
  background: var(--clr-dark);
  color: rgba(255,255,255,.7);
  padding: 72px 0 0;
}
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer__brand { margin-bottom: 16px; }
.footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer__logo-img { width: 36px; height: 36px; border-radius: var(--radius-sm); object-fit: cover; }
.footer__logo-img--placeholder {
  width: 36px; height: 36px;
  background: var(--clr-accent);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.footer__brand-name { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 700; color: #fff; }
.footer__desc { font-size: .875rem; line-height: 1.8; color: rgba(255,255,255,.55); max-width: 30ch; }
.footer__heading { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.8px; color: rgba(255,255,255,.4); margin-bottom: 18px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: .875rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer__links a:hover { color: var(--clr-white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap; gap: 12px;
}
.footer__bottom-links { display: flex; gap: 20px; }
.footer__bottom-links a { color: rgba(255,255,255,.35); transition: color var(--transition); }
.footer__bottom-links a:hover { color: rgba(255,255,255,.7); }
.cookie-banner {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 1000;
  background: var(--clr-dark);
  color: rgba(255,255,255,.85);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  display: flex; align-items: center; gap: 20px;
  box-shadow: var(--shadow-lg);
  max-width: 680px;
  width: 92%;
  border: 1px solid rgba(255,255,255,.08);
}
.cookie-banner__text { font-size: .85rem; line-height: 1.6; flex: 1; }
.cookie-banner__text a { color: #8FD5C2; text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner.hidden { display: none; }
.btn-cookie-accept { padding: 9px 20px; background: var(--clr-accent); color: #fff; border-radius: var(--radius-md); font-size: .85rem; font-weight: 600; transition: background var(--transition); }
.btn-cookie-accept:hover { background: var(--clr-accent-lt); }
.btn-cookie-decline { padding: 9px 20px; background: transparent; color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-md); font-size: .85rem; font-weight: 500; transition: border-color var(--transition), color var(--transition); }
.btn-cookie-decline:hover { color: #fff; border-color: rgba(255,255,255,.4); }
.program-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.program-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.program-card__img { width: 100%; height: 240px; object-fit: cover; }
.program-card__body { padding: 32px; }
.program-card__level {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 100px;
  font-size: .75rem; font-weight: 600;
  margin-bottom: 14px;
}
.program-card__level--beginner { background: rgba(61,107,94,.1); color: var(--clr-accent); }
.program-card__level--intermediate { background: rgba(200,118,58,.1); color: var(--clr-cta); }
.program-card__level--advanced { background: rgba(90,60,130,.1); color: #5A3C82; }
.program-card__title { font-family: var(--ff-display); font-size: 1.25rem; font-weight: 600; margin-bottom: 10px; }
.program-card__text { font-size: .9rem; color: var(--clr-muted); line-height: 1.7; margin-bottom: 20px; }
.program-card__meta { display: flex; gap: 18px; font-size: .8rem; color: var(--clr-muted); }
.program-card__meta span { display: flex; align-items: center; gap: 5px; }
.program-card__meta svg { width: 15px; height: 15px; color: var(--clr-accent); }
.monitor-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.monitor-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.monitor-card__num {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--clr-accent);
  line-height: 1;
  margin-bottom: 8px;
}
.monitor-card__label { font-weight: 600; margin-bottom: 8px; }
.monitor-card__text { font-size: .875rem; color: var(--clr-muted); line-height: 1.7; }
.about-img { border-radius: var(--radius-xl); overflow: hidden; height: 480px; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-team-card {
  text-align: center;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.about-team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.about-team-card__img { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; margin-inline: auto; margin-bottom: 16px; background: var(--clr-border); }
.about-team-card__name { font-family: var(--ff-display); font-size: 1.05rem; font-weight: 600; margin-bottom: 4px; }
.about-team-card__role { font-size: .8rem; color: var(--clr-accent); font-weight: 500; }
.legal-body { max-width: 780px; margin-inline: auto; }
.legal-body h2 { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 600; margin: 40px 0 14px; color: var(--clr-text); }
.legal-body h3 { font-size: 1.1rem; font-weight: 600; margin: 28px 0 10px; }
.legal-body p { color: var(--clr-muted); line-height: 1.8; margin-bottom: 14px; }
.legal-body ul { margin: 10px 0 16px 20px; list-style: disc; color: var(--clr-muted); }
.legal-body ul li { margin-bottom: 6px; line-height: 1.7; }
.legal-body a { color: var(--clr-accent); text-decoration: underline; }
.contact-info-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item__icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(61,107,94,.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-accent);
}
.contact-info-item__icon svg { width: 22px; height: 22px; }
.contact-info-item__label { font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--clr-muted); margin-bottom: 4px; }
.contact-info-item__val { font-size: .95rem; color: var(--clr-text); }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .8rem; color: rgba(255,255,255,.6); justify-content: center; margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,.7); transition: color var(--transition); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 13px; height: 13px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  padding: 5px 14px; border-radius: 100px;
  background: rgba(61,107,94,.1); color: var(--clr-accent);
  font-size: .8rem; font-weight: 600;
}
.divider { border: none; border-top: 1px solid var(--clr-border); margin: 48px 0; }
.img-cover { width: 100%; height: 100%; object-fit: cover; }
.rounded-xl { border-radius: var(--radius-xl); }
.overflow-hidden { overflow: hidden; }
.form-success {
  display: none;
  background: rgba(61,107,94,.1);
  border: 1px solid var(--clr-accent);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  color: var(--clr-accent);
  font-weight: 600;
  margin-top: 16px;
}
.form-success.show { display: block; }
body { animation: fadeIn .4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-bar__grid { grid-template-columns: repeat(2,1fr); gap: 32px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .navbar__links { display: none; }
  .navbar__hamburger { display: flex; }

  .section { padding: 64px 0; }
  .section--sm { padding: 40px 0; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }

  .hero__content { padding: 60px 0; }
  .hero__actions { flex-direction: column; }

  .stats-bar__grid { grid-template-columns: repeat(2,1fr); }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .cta-banner { padding: 48px 28px; }
  .cta-banner::before, .cta-banner::after { display: none; }

  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cookie-banner__actions { flex-wrap: wrap; }

  .about-img { height: 300px; }
  .contact-info-card { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .stats-bar__grid { grid-template-columns: 1fr 1fr; }
  .btn-lg { padding: 14px 28px; font-size: 1rem; }
  .section-head { margin-bottom: 36px; }
}
