/* ============================================
   CORUNQIX HUB — Complete Stylesheet (Full Version)
   Organic Shapes | Friendly, Natural, Approachable
   ============================================ */


:root {
  --color-primary: #2d5a3d;
  --color-primary-light: #3d7a52;
  --color-primary-dark: #1e3d29;
  --color-secondary: #f0e8d5;
  --color-accent: #e07b39;
  --color-accent-hover: #c96828;
  --color-bg: #f7f5f0;
  --color-bg-dark: #1e2d24;
  --color-text: #2a2a2a;
  --color-text-muted: #5a6a5f;
  --color-text-light: #f0ede8;
  --color-white: #fdfcf9;
  --color-border: #d8d0c0;

  --font-heading: 'Literata', Georgia, serif;
  --font-body: 'Figtree', system-ui, sans-serif;

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

  --shadow-sm: 0 2px 8px rgba(45, 90, 61, 0.08), 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(45, 90, 61, 0.12), 0 2px 8px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(45, 90, 61, 0.16), 0 4px 16px rgba(0,0,0,0.10);
  --shadow-xl: 0 32px 80px rgba(45, 90, 61, 0.20), 0 8px 32px rgba(0,0,0,0.12);

  --nav-height: 72px;
  --section-pad: clamp(64px, 8vw, 120px);
  --container-max: 1200px;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.25s ease, opacity 0.25s ease; }
ul { list-style: none; }


h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.25; color: var(--color-text); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
em { font-style: italic; color: var(--color-primary); }


.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
  box-shadow: 0 4px 16px rgba(224, 123, 57, 0.30);
}
.btn--primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 123, 57, 0.40);
}
.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}
.btn--light {
  background: var(--color-white);
  color: var(--color-primary-dark);
  border-color: var(--color-white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn--light:hover {
  background: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.20);
}


.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(247, 245, 240, 0.82);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  border-bottom-color: rgba(45, 90, 61, 0.12);
  box-shadow: 0 2px 20px rgba(45, 90, 61, 0.08);
}
.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo-img { width: 36px; height: 36px; }
.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding-bottom: 4px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav__link:hover::after,
.nav__link--active::after { width: 100%; }
.nav__link--active { color: var(--color-primary); }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--color-primary-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}


.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--color-primary-dark);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 48px clamp(24px, 8vw, 64px);
  clip-path: polygon(100% 0, 100% 0, 100% 0, 100% 0);
  transition: clip-path 0.5s cubic-bezier(0.77, 0, 0.18, 1);
  pointer-events: none;
}
.mobile-menu.open {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: all;
}
.mobile-menu__close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: var(--color-text-light);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.25s ease, transform 0.25s ease;
}
.mobile-menu__close:hover { color: var(--color-accent); transform: rotate(90deg); }
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s;
}
.mobile-menu.open .mobile-menu__links { opacity: 1; transform: translateX(0); }
.mobile-menu__links li a {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--color-text-light);
  display: block;
  padding: 8px 0;
  transition: color 0.25s ease, transform 0.25s ease;
}
.mobile-menu__links li a:hover { color: var(--color-accent); transform: translateX(8px); }


.section { padding: var(--section-pad) 0; position: relative; }
.section--light { background: var(--color-bg); }
.section--dark { background: var(--color-bg-dark); }
.section__header { text-align: center; margin-bottom: clamp(40px, 6vw, 72px); }
.section__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}
.section__label--light { color: rgba(240, 232, 213, 0.75); }
.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
}
.section__title--light { color: var(--color-text-light); }
.section__subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto;
}
.section__cta { text-align: center; margin-top: 48px; }
.section__wave { line-height: 0; margin-top: clamp(48px, 6vw, 80px); }
.section__wave svg { width: 100%; height: auto; }


.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #e8f0eb 0%, #f7f5f0 50%, #f0e8d5 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}
.hero__bg-blob {
  position: absolute;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  pointer-events: none;
  z-index: 0;
}
.hero__bg-blob--1 {
  width: clamp(300px, 45vw, 600px);
  height: clamp(300px, 45vw, 600px);
  background: radial-gradient(ellipse, rgba(45, 90, 61, 0.08) 0%, transparent 70%);
  top: -10%; right: -5%;
  animation: blobFloat 8s ease-in-out infinite;
}
.hero__bg-blob--2 {
  width: clamp(200px, 30vw, 400px);
  height: clamp(200px, 30vw, 400px);
  background: radial-gradient(ellipse, rgba(224, 123, 57, 0.07) 0%, transparent 70%);
  bottom: 10%; left: 5%;
  animation: blobFloat 10s ease-in-out infinite reverse;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(12px, -16px) scale(1.02); }
  66% { transform: translate(-8px, 12px) scale(0.98); }
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(40px, 8vw, 80px) clamp(20px, 5vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  width: 100%;
}
.hero__content { animation: heroEnter 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
@keyframes heroEnter {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
  padding: 6px 14px;
  background: rgba(224, 123, 57, 0.1);
  border-radius: 50px;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: var(--color-primary-dark);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero__text {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero__disclaimer {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  opacity: 0.8;
  margin: 0;
}
.hero__image-wrap {
  position: relative;
  animation: heroEnter 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
}
.hero__image-blob {
  border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: translateX(24px);
  transition: transform 0.4s ease;
}
.hero__image-blob:hover { transform: translateX(24px) translateY(-4px); }
.hero__image {
  width: 100%;
  height: clamp(340px, 50vw, 520px);
  object-fit: cover;
  display: block;
}
.hero__badge {
  position: absolute;
  bottom: 24px; left: -16px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary-dark);
}
.hero__badge i { color: var(--color-accent); font-size: 1rem; }
.hero__wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; }
.hero__wave svg { width: 100%; height: auto; }


.values-section { background: var(--color-bg); position: relative; overflow: hidden; }
.values-section__blob {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  background: radial-gradient(ellipse, rgba(45, 90, 61, 0.06) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card:hover::before { opacity: 1; }
.card--value { box-shadow: var(--shadow-sm); }
.card--compact { padding: 20px 24px; }
.card--featured { box-shadow: var(--shadow-md); border: 2px solid rgba(45, 90, 61, 0.12); }
.card__icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-white);
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(45, 90, 61, 0.25);
}
.card__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 10px;
}
.card__text {
  font-size: 0.93rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}


.topics-section { background: var(--color-white); padding-bottom: 0; }
.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.topic-card {
  display: flex;
  flex-direction: column;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
  text-decoration: none;
  color: inherit;
}
.topic-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.topic-card__img-wrap { height: 200px; overflow: hidden; }
.topic-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.topic-card:hover .topic-card__img { transform: scale(1.05); }
.topic-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.topic-card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
  padding: 4px 10px;
  background: rgba(224, 123, 57, 0.1);
  border-radius: 50px;
  align-self: flex-start;
}
.topic-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}
.topic-card__text {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}
.topic-card__link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: gap 0.25s ease, color 0.25s ease;
}
.topic-card:hover .topic-card__link { gap: 10px; color: var(--color-accent); }
.topics-section__wave { line-height: 0; margin-top: clamp(48px, 6vw, 80px); }
.topics-section__wave svg { width: 100%; height: auto; }


.featured-section { position: relative; overflow: hidden; }
.featured-blob {
  position: absolute;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  pointer-events: none;
}
.featured-blob--1 {
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(224, 123, 57, 0.08) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.featured-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.featured-text {
  font-size: 1.05rem;
  color: rgba(240, 237, 232, 0.85);
  line-height: 1.8;
  margin-bottom: 16px;
}
.featured-text:last-of-type { margin-bottom: 28px; }
.featured-image-wrap { position: relative; }
.featured-image {
  width: 100%;
  height: clamp(300px, 40vw, 460px);
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}
.featured-image-tag {
  position: absolute;
  bottom: -16px; right: 24px;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(224, 123, 57, 0.40);
}


.howwework-section { background: var(--color-white); padding-bottom: 0; }
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
}
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--color-border);
  align-items: start;
  transition: transform 0.25s ease;
}
.step:last-child { border-bottom: none; }
.step:hover { transform: translateX(8px); }
.step__number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.25;
  line-height: 1;
  padding-top: 4px;
  transition: opacity 0.25s ease;
}
.step:hover .step__number { opacity: 0.6; }
.step__title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
}
.step__text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin: 0;
}
.howwework-section__wave { line-height: 0; margin-top: clamp(48px, 6vw, 80px); }
.howwework-section__wave svg { width: 100%; height: auto; }


.popular-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.article-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.article-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.article-card__meta { margin-bottom: 12px; }
.article-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  padding: 4px 10px;
  background: rgba(224, 123, 57, 0.1);
  border-radius: 50px;
}
.article-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 10px;
  line-height: 1.45;
}
.article-card__excerpt {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}
.article-card__link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: gap 0.25s ease, color 0.25s ease;
  margin-top: auto;
}
.article-card:hover .article-card__link { gap: 10px; color: var(--color-accent); }


.disclaimer-section { background: var(--color-bg); }
.disclaimer-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 56px);
  display: flex;
  gap: 32px;
  align-items: flex-start;
  box-shadow: var(--shadow-md);
  border-left: 6px solid var(--color-primary);
}
.disclaimer-icon {
  font-size: 2rem;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 4px;
}
.disclaimer-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 12px;
}
.disclaimer-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 10px;
}
.disclaimer-text:last-child { margin-bottom: 0; }


.page-hero {
  background: linear-gradient(135deg, #e8f0eb 0%, #f0e8d5 100%);
  padding: calc(var(--nav-height) + 48px) 0 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero__blob {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  background: radial-gradient(ellipse, rgba(45, 90, 61, 0.08) 0%, transparent 70%);
  top: -100px; right: -80px;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; padding-bottom: 60px; }
.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-primary-dark);
  margin: 12px 0 16px;
}
.page-hero__subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto;
}
.page-hero__wave { line-height: 0; }
.page-hero__wave svg { width: 100%; height: auto; }


.editorial-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.editorial-intro__text p {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.editorial-intro__text .section__title { margin-bottom: 20px; }
.rounded-image {
  width: 100%;
  height: clamp(280px, 40vw, 420px);
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}


.standards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.standard-item {
  padding: 28px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.standard-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.standard-item__icon {
  width: 44px; height: 44px;
  background: rgba(45, 90, 61, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.standard-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 10px;
}
.standard-item p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}


.mission-block { text-align: center; max-width: 720px; margin: 0 auto; }
.mission-block__icon { font-size: 2.5rem; color: var(--color-accent); margin-bottom: 24px; }
.mission-block__text {
  font-size: 1.05rem;
  color: rgba(240, 237, 232, 0.85);
  line-height: 1.85;
  margin-bottom: 16px;
}
.mission-block__text:last-child { margin-bottom: 0; }


.theme-block__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.theme-block__icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(45, 90, 61, 0.25);
}
.theme-block__title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-primary-dark);
}
.theme-block__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}
.theme-block__content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin: 24px 0 10px;
  padding-left: 12px;
  border-left: 3px solid var(--color-accent);
}
.theme-block__content h3:first-of-type { margin-top: 20px; }
.theme-block__content p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}
.theme-block__img {
  width: 100%;
  height: clamp(260px, 35vw, 400px);
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}


.long-article {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 860px;
  margin: 0 auto;
}
.long-article__header { padding: clamp(32px, 5vw, 56px) clamp(32px, 5vw, 56px) 0; }
.long-article__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--color-primary-dark);
  margin: 12px 0 16px;
}
.long-article__intro {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}
.long-article__image-wrap { height: clamp(220px, 35vw, 380px); overflow: hidden; }
.long-article__image { width: 100%; height: 100%; object-fit: cover; }
.long-article__body { padding: clamp(32px, 5vw, 56px); }
.long-article__body h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin: 28px 0 12px;
  padding-left: 14px;
  border-left: 4px solid var(--color-primary);
}
.long-article__body h3:first-child { margin-top: 0; }
.long-article__body p {
  font-size: 0.97rem;
  color: var(--color-text-muted);
  line-height: 1.85;
}
.long-article__legal-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(45, 90, 61, 0.06);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-top: 32px;
}
.long-article__legal-note i { color: var(--color-primary); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.long-article__legal-note p { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.6; margin: 0; font-style: italic; }


.popular-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}
.full-article-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.full-article-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.full-article-card__tag-row { margin-bottom: 14px; }
.full-article-card__title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 16px;
  line-height: 1.4;
}
.full-article-card__body p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}
.full-article-card__body p:last-of-type { margin-bottom: 16px; }
.full-article-card__legal {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--color-primary);
  font-weight: 600;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}


.cta-block { text-align: center; max-width: 600px; margin: 0 auto; }
.cta-block__text {
  font-size: 1.05rem;
  color: rgba(240, 237, 232, 0.82);
  line-height: 1.8;
  margin-bottom: 28px;
}


.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}
.contact-info__title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 28px;
}
.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-info__icon {
  width: 40px; height: 40px;
  background: rgba(45, 90, 61, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.contact-info__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}
.contact-info__value { font-size: 0.95rem; color: var(--color-text); margin: 0; }
.contact-info__value a { color: var(--color-primary); transition: color 0.25s ease; }
.contact-info__value a:hover { color: var(--color-accent); }
.contact-info__note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(45, 90, 61, 0.06);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-top: 16px;
}
.contact-info__note i { color: var(--color-primary); font-size: 0.95rem; margin-top: 2px; flex-shrink: 0; }
.contact-info__note p { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.6; margin: 0; }


.contact-form-wrap {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-md);
}
.contact-form-wrap__title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 24px;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.contact-form__field { display: flex; flex-direction: column; gap: 6px; }
.contact-form__field--wide { grid-column: 1 / -1; }
.contact-form__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}
.contact-form__input,
.contact-form__textarea {
  padding: 12px 16px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  resize: vertical;
}
.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.12);
}
.contact-form__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.contact-form__privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  cursor: pointer;
  line-height: 1.5;
}
.contact-form__privacy input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--color-primary);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-form__privacy a { color: var(--color-primary); text-decoration: underline; }


.meeting-section { background: var(--color-white); padding-bottom: 0; }
.meeting-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}
.meeting-block__title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-primary-dark);
  margin: 12px 0 16px;
}
.meeting-block__content p {
  font-size: 0.97rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}
.meeting-block__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 28px;
}
.meeting-block__detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
.meeting-block__detail i { color: var(--color-primary); width: 18px; }
.meeting-block__img {
  width: 100%;
  height: clamp(280px, 40vw, 420px);
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}


.map-section__title { text-align: center; margin-bottom: 32px; }
.map-wrap { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); }


.thanks-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #e8f0eb 0%, #f7f5f0 60%, #f0e8d5 100%);
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-height) + 40px) clamp(20px, 5vw, 48px) 80px;
}
.thanks-blob {
  position: absolute;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  pointer-events: none;
}
.thanks-blob--1 {
  width: 400px; height: 400px;
  background: radial-gradient(ellipse, rgba(45, 90, 61, 0.08) 0%, transparent 70%);
  top: -80px; right: -80px;
}
.thanks-blob--2 {
  width: 300px; height: 300px;
  background: radial-gradient(ellipse, rgba(224, 123, 57, 0.07) 0%, transparent 70%);
  bottom: 40px; left: -60px;
}
.thanks-inner { position: relative; z-index: 1; max-width: 560px; }
.thanks-icon {
  font-size: 4rem;
  color: var(--color-primary);
  margin-bottom: 24px;
  animation: bounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes bounceIn {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}
.thanks-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 16px;
}
.thanks-text {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}
.thanks-note {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  opacity: 0.75;
  line-height: 1.65;
  margin-bottom: 32px;
  font-style: italic;
}


.legal-hero {
  background: linear-gradient(135deg, #e8f0eb 0%, #f0e8d5 100%);
  padding: calc(var(--nav-height) + 48px) 0 48px;
  text-align: center;
}
.legal-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
}
.legal-hero__meta { font-size: 0.88rem; color: var(--color-text-muted); }
.legal-section { }
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-intro {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
  padding: 20px 24px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
}
.legal-group { margin-bottom: 36px; }
.legal-group h2 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}
.legal-group p {
  font-size: 0.93rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 10px;
}
.legal-group ul { list-style: disc; padding-left: 24px; margin: 10px 0; }
.legal-group ul li {
  font-size: 0.93rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 6px;
}
.legal-group ul li strong { color: var(--color-text); }
.legal-content--numbered .legal-clause { margin-bottom: 36px; }
.legal-content--numbered .legal-clause h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 8px;
}
.clause-num { color: var(--color-accent); font-size: 1.2rem; font-weight: 700; }
.legal-content--numbered .legal-clause p {
  font-size: 0.93rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 10px;
  padding-left: 12px;
}
.legal-content--cookies h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}
.legal-content--cookies h2:first-of-type { margin-top: 0; }
.legal-content--cookies p {
  font-size: 0.93rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-content--cookies ul { list-style: disc; padding-left: 24px; margin: 10px 0 16px; }
.legal-content--cookies ul li {
  font-size: 0.93rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 6px;
}


.cookie-table-wrap {
  overflow-x: auto;
  margin: 16px 0 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  background: var(--color-white);
}
.cookie-table th {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}
.cookie-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-muted);
  vertical-align: top;
  line-height: 1.6;
}
.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table tr:nth-child(even) td { background: var(--color-bg); }


.footer {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  padding-top: clamp(48px, 6vw, 80px);
}
.footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  text-decoration: none;
}
.footer__logo-img { width: 32px; height: 32px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer__logo-text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-light);
}
.footer__tagline { font-size: 0.88rem; color: rgba(240, 237, 232, 0.6); line-height: 1.6; margin-bottom: 20px; }
.footer__address,
.footer__contact {
  font-size: 0.85rem;
  color: rgba(240, 237, 232, 0.6);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}
.footer__address i,
.footer__contact i { color: var(--color-accent); margin-top: 3px; flex-shrink: 0; }
.footer__contact a { color: rgba(240, 237, 232, 0.6); transition: color 0.25s ease; }
.footer__contact a:hover { color: var(--color-accent); }
.footer__nav-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.45);
  margin-bottom: 16px;
}
.footer__nav-list { display: flex; flex-direction: column; gap: 10px; }
.footer__nav-list li a {
  font-size: 0.88rem;
  color: rgba(240, 237, 232, 0.65);
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
}
.footer__nav-list li a:hover { color: var(--color-accent); transform: translateX(4px); }
.footer__separator { height: 1px; background: rgba(240, 237, 232, 0.1); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy { font-size: 0.82rem; color: rgba(240, 237, 232, 0.4); margin: 0; }
.footer__legal-links { display: flex; gap: 24px; }
.footer__legal-links a {
  font-size: 0.82rem;
  color: rgba(240, 237, 232, 0.4);
  transition: color 0.25s ease;
}
.footer__legal-links a:hover { color: var(--color-accent); }


.cookie-consent {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 9999;
  width: 100%;
  max-width: 360px;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 24px;
  transform: translateY(120px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
  pointer-events: none;
}
.cookie-consent.visible { transform: translateY(0); opacity: 1; pointer-events: all; }
.cookie-consent__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cookie-consent__title i { color: var(--color-accent); }
.cookie-consent__text {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.cookie-consent__text a { color: var(--color-primary); text-decoration: underline; }
.cookie-consent__buttons { display: flex; flex-direction: column; gap: 8px; }
.cookie-consent__btn {
  padding: 10px 16px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  text-align: center;
}
.cookie-consent__btn--accept {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}
.cookie-consent__btn--accept:hover { background: var(--color-accent-hover); border-color: var(--color-accent-hover); }
.cookie-consent__btn--reject {
  background: transparent;
  color: var(--color-text-muted);
  border-color: var(--color-border);
}
.cookie-consent__btn--reject:hover { border-color: var(--color-text-muted); color: var(--color-text); }
.cookie-consent__btn--customize {
  background: transparent;
  color: var(--color-primary);
  border: none;
  font-size: 0.8rem;
  padding: 6px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: underline;
}
.cookie-consent__customize {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.cookie-consent__customize.open { max-height: 320px; }
.cookie-consent__category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
}
.cookie-consent__category:last-child { border-bottom: none; }
.cookie-consent__category-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
}
.cookie-consent__category-desc { font-size: 0.75rem; color: var(--color-text-muted); margin-top: 2px; }
.cookie-toggle { position: relative; width: 40px; height: 22px; flex-shrink: 0; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle__slider {
  position: absolute;
  inset: 0;
  background: var(--color-border);
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.25s ease;
}
.cookie-toggle__slider::after {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  left: 3px; top: 3px;
  background: var(--color-white);
  border-radius: 50%;
  transition: transform 0.25s ease;
}
.cookie-toggle input:checked + .cookie-toggle__slider { background: var(--color-primary); }
.cookie-toggle input:checked + .cookie-toggle__slider::after { transform: translateX(18px); }
.cookie-toggle input:disabled + .cookie-toggle__slider { opacity: 0.5; cursor: not-allowed; }
.cookie-consent__save {
  margin-top: 12px;
  width: 100%;
  padding: 10px;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease;
}
.cookie-consent__save:hover { background: var(--color-primary-light); }


.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }


@media (max-width: 1024px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__actions { justify-content: center; }
  .hero__image-blob { transform: none; max-width: 480px; margin: 0 auto; }
  .hero__badge { left: 50%; transform: translateX(-50%); white-space: nowrap; }
  .featured-inner { grid-template-columns: 1fr; }
  .editorial-intro { grid-template-columns: 1fr; }
  .theme-block__body { grid-template-columns: 1fr; }
  .meeting-block { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .topics-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .popular-grid { grid-template-columns: 1fr; }
  .popular-full-grid { grid-template-columns: 1fr; }
  .disclaimer-card { flex-direction: column; }
  .contact-form__row { grid-template-columns: 1fr; }
  .contact-form__field--wide { grid-column: 1; }
  .contact-form__bottom { flex-direction: column; align-items: flex-start; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__legal-links { flex-wrap: wrap; gap: 12px; }
  .cookie-consent { max-width: calc(100vw - 32px); left: 16px; bottom: 16px; }
  .step { grid-template-columns: 48px 1fr; }
  .standards-grid { grid-template-columns: 1fr; }
  .theme-block__header { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__badge { position: static; transform: none; margin-top: 16px; display: inline-flex; }
  .hero__image-blob { border-radius: var(--radius-xl); }
  .long-article__body h3 { font-size: 1rem; }
  .full-article-card { padding: 24px; }
  .long-article__header { padding: 24px 24px 0; }
  .long-article__body { padding: 24px; }
  .disclaimer-card { padding: 24px; }
  .contact-form-wrap { padding: 24px; }
}


@media print {
  .nav, .mobile-menu, .cookie-consent, .footer { display: none; }
  .hero { min-height: auto; padding-top: 0; }
  .page-hero { padding-top: 24px; }
}