/* =============================================
   VALORNЕМ HUB - STYLE.CSS
   Design: Structured Bold
   ============================================= */


:root {
  --primary: #1a1f2e;
  --accent: #c8392b;
  --surface: #f5f3ef;

  
  --primary-light: color-mix(in oklch, var(--primary), white 60%);
  --primary-lighter: color-mix(in oklch, var(--primary), white 85%);
  --primary-dark: color-mix(in oklch, var(--primary), black 20%);
  --accent-light: color-mix(in oklch, var(--accent), white 70%);
  --accent-lighter: color-mix(in oklch, var(--accent), white 88%);
  --accent-dark: color-mix(in oklch, var(--accent), black 15%);
  --surface-dark: color-mix(in oklch, var(--surface), black 8%);
  --surface-darker: color-mix(in oklch, var(--surface), black 18%);

  
  --text-primary: color-mix(in oklch, var(--primary), black 10%);
  --text-secondary: color-mix(in oklch, var(--primary), white 30%);
  --text-muted: color-mix(in oklch, var(--primary), white 55%);
  --text-on-dark: #f0ede8;
  --text-on-accent: #ffffff;

  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 100px;

  
  --shadow-sm: 0 1px 3px rgba(26,31,46,0.07), 0 1px 2px rgba(26,31,46,0.05);
  --shadow-md: 0 4px 12px rgba(26,31,46,0.08), 0 2px 6px rgba(26,31,46,0.06);
  --shadow-lg: 0 8px 24px rgba(26,31,46,0.10), 0 4px 12px rgba(26,31,46,0.07);
  --shadow-xl: 0 16px 40px rgba(26,31,46,0.13), 0 6px 16px rgba(26,31,46,0.08);
  --shadow-accent: 0 4px 16px rgba(200,57,43,0.25), 0 2px 6px rgba(200,57,43,0.15);

  
  --nav-height: 72px;

  
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;

  
  --font-heading: 'DM Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}


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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--surface);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

ul {
  list-style: none;
}

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

address {
  font-style: normal;
}


h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.body-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.body-text:last-child {
  margin-bottom: 0;
}

p {
  margin-bottom: var(--space-sm);
}

p:last-child {
  margin-bottom: 0;
}


.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
  padding: 4px 12px;
  background: var(--accent-lighter);
  border-radius: var(--radius-pill);
  border-left: 3px solid var(--accent);
}

.section-heading {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.section-subtext {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
}

.highlight-text {
  color: var(--accent);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--accent);
  transition: gap var(--transition-base), color var(--transition-fast);
}

.text-link:hover {
  gap: 10px;
  color: var(--accent-dark);
}


.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent);
  color: var(--text-on-accent);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius-md);
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-accent);
  transition: background var(--transition-base), transform var(--transition-fast), box-shadow var(--transition-base), border-color var(--transition-base);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.primary-action:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200,57,43,0.35), 0 3px 8px rgba(200,57,43,0.2);
  color: var(--text-on-accent);
}

.primary-action:active {
  transform: translateY(0);
}

.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  border: 2px solid color-mix(in oklch, var(--primary), white 70%);
  transition: background var(--transition-base), border-color var(--transition-base), color var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.secondary-action:hover {
  background: var(--primary-lighter);
  border-color: var(--primary-light);
  color: var(--text-primary);
}

.ghost-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--text-on-dark);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  border: 2px solid rgba(240,237,232,0.35);
  transition: background var(--transition-base), border-color var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.ghost-action:hover {
  background: rgba(240,237,232,0.1);
  border-color: rgba(240,237,232,0.6);
  color: var(--text-on-dark);
}


.cookie-top-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--primary-dark);
  color: var(--text-on-dark);
  padding: 12px var(--space-lg);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.cookie-top-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cookie-banner-text {
  font-size: 0.875rem;
  color: color-mix(in oklch, var(--text-on-dark), black 10%);
  flex: 1;
  min-width: 200px;
}

.cookie-banner-text a {
  color: var(--accent-light);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-btn-customize,
.cookie-btn-reject,
.cookie-btn-accept {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
  border: none;
  white-space: nowrap;
}

.cookie-btn-customize {
  background: transparent;
  color: var(--text-on-dark);
  border: 1px solid rgba(255,255,255,0.3);
}

.cookie-btn-customize:hover {
  background: rgba(255,255,255,0.1);
}

.cookie-btn-reject {
  background: rgba(255,255,255,0.1);
  color: var(--text-on-dark);
  border: 1px solid rgba(255,255,255,0.2);
}

.cookie-btn-reject:hover {
  background: rgba(255,255,255,0.2);
}

.cookie-btn-accept {
  background: var(--accent);
  color: white;
}

.cookie-btn-accept:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,31,46,0.7);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.cookie-modal-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-box {
  background: white;
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--surface-dark);
}

.cookie-modal-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

.cookie-modal-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast);
  color: var(--text-secondary);
  border: none;
}

.cookie-modal-close:hover {
  background: var(--surface-dark);
}

.cookie-modal-body {
  padding: var(--space-md) var(--space-lg);
}

.cookie-category {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--surface-dark);
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.cookie-category-header strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.cookie-category-header p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.cookie-always-on {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  background: var(--accent-lighter);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--surface-darker);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--transition-base);
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform var(--transition-base);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--accent);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(20px);
}

.cookie-modal-footer {
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid var(--surface-dark);
  display: flex;
  justify-content: flex-end;
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--primary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: box-shadow var(--transition-base);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.2), 0 2px 8px rgba(0,0,0,0.12);
}

.main-nav {
  width: 100%;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo {
  width: 36px;
  height: 36px;
}

.nav-brand-text {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-on-dark);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  flex: 1;
  margin-left: var(--space-md);
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: color-mix(in oklch, var(--text-on-dark), black 15%);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-on-dark);
  background: rgba(255,255,255,0.08);
}

.nav-link.active {
  color: var(--accent-light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.nav-actions .secondary-action {
  border-color: rgba(255,255,255,0.25);
  color: var(--text-on-dark);
  padding: 10px 20px;
  font-size: 0.85rem;
}

.nav-actions .secondary-action:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
}

.nav-actions .primary-action {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition-fast);
  background: none;
  border: none;
  margin-left: auto;
}

.mobile-menu-toggle:hover {
  background: rgba(255,255,255,0.08);
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-on-dark);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: color-mix(in oklch, var(--primary), black 15%);
  border-top: 1px solid rgba(255,255,255,0.07);
}

.mobile-nav.open {
  max-height: 400px;
}

.mobile-nav-list {
  padding: var(--space-sm) var(--space-lg) var(--space-md);
}

.mobile-nav-link {
  display: block;
  padding: 12px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: color-mix(in oklch, var(--text-on-dark), black 10%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--text-on-dark);
  padding-left: 8px;
}

.mobile-nav-link.active {
  color: var(--accent-light);
}

.mobile-nav-cta {
  margin-top: var(--space-sm);
  border-bottom: none;
  color: var(--accent-light);
  font-weight: 700;
}


.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: var(--nav-height);
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,31,46,0.88) 0%,
    rgba(26,31,46,0.75) 50%,
    rgba(26,31,46,0.55) 100%
  );
}

.hero-content-wrapper {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  padding: var(--space-3xl) var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: var(--space-md);
  padding: 6px 14px;
  border: 1px solid rgba(200,57,43,0.4);
  border-radius: var(--radius-pill);
  background: rgba(200,57,43,0.1);
}

.hero-headline {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: var(--space-lg);
}

.headline-line {
  display: block;
  color: var(--text-on-dark);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.headline-xl {
  font-size: clamp(3rem, 8vw, 6rem);
}

.headline-lg {
  font-size: clamp(2.5rem, 7vw, 5.25rem);
}

.headline-md {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 400;
  color: color-mix(in oklch, var(--text-on-dark), black 20%);
}

.hero-subtext {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: color-mix(in oklch, var(--text-on-dark), black 20%);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-cta {
  padding: 16px 32px;
  font-size: 1rem;
}

.hero-cta-ghost {
  color: var(--text-on-dark);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition-base), color var(--transition-fast);
  text-decoration: none;
}

.hero-cta-ghost:hover {
  gap: 14px;
  color: var(--accent-light);
}


.stats-bar {
  position: relative;
  z-index: 1;
  background: var(--primary-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.stats-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 160px;
}

.stat-icon {
  width: 40px;
  height: 40px;
  background: rgba(200,57,43,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  font-size: 1rem;
  flex-shrink: 0;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: color-mix(in oklch, var(--text-on-dark), black 10%);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}


.content-block {
  padding: var(--space-3xl) 0;
}

.visual-break {
  padding: var(--space-3xl) 0;
  background: color-mix(in oklch, var(--primary), white 92%);
  border-top: 1px solid var(--surface-dark);
  border-bottom: 1px solid var(--surface-dark);
}


.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.intro-text-col {
  padding-right: var(--space-lg);
}

.intro-image-frame {
  position: relative;
}

.intro-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.intro-image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 60%;
  height: 60%;
  background: var(--accent);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.15;
}


.pillars-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.pillars-header .section-subtext {
  margin: 0 auto;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.pillar-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--surface-dark);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-light);
}

.pillar-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--accent-lighter);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: var(--space-md);
  border-left: 3px solid var(--accent);
}

.pillar-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.pillar-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}


.gallery-header {
  margin-bottom: var(--space-xl);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--space-sm);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
}

.gallery-item-large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,31,46,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
}

.gallery-cta-wrap {
  text-align: center;
  margin-top: var(--space-xl);
}


.cta-section {
  background: var(--primary);
  padding: var(--space-3xl) 0;
  border-top: none;
  border-bottom: none;
}

.cta-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.cta-eyebrow {
  color: var(--accent-light);
  background: rgba(200,57,43,0.15);
  border-left-color: var(--accent-light);
}

.cta-heading {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: var(--text-on-dark);
  margin-bottom: var(--space-sm);
  max-width: 560px;
}

.cta-text {
  color: color-mix(in oklch, var(--text-on-dark), black 20%);
  font-size: 1rem;
  max-width: 480px;
  margin: 0;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.cta-btn {
  min-width: 200px;
  text-align: center;
}

.cta-btn-ghost {
  min-width: 200px;
  text-align: center;
}


.forwhom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.forwhom-list {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.forwhom-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.forwhom-list li i {
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.forwhom-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}


.faq-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.faq-header .section-subtext {
  margin: 0 auto;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--surface-dark);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: var(--surface);
}

.faq-question[aria-expanded="true"] {
  background: var(--accent-lighter);
  color: var(--accent-dark);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--transition-base), background var(--transition-base);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
  padding: 0 var(--space-lg) var(--space-md);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}


.page-hero {
  padding-top: calc(var(--nav-height) + var(--space-3xl));
  padding-bottom: var(--space-xl);
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(200,57,43,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.page-hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: var(--text-on-dark);
  margin-bottom: var(--space-md);
}

.page-hero-sub {
  font-size: 1.1rem;
  color: color-mix(in oklch, var(--text-on-dark), black 20%);
  line-height: 1.7;
  max-width: 560px;
  margin: 0;
}


.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.approach-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.principles-header {
  margin-bottom: var(--space-xl);
}

.principles-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.principle-item {
  display: flex;
  gap: var(--space-xl);
  align-items: flex-start;
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--surface-dark);
}

.principle-item:last-child {
  border-bottom: none;
}

.principle-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  min-width: 64px;
  letter-spacing: -0.04em;
}

.principle-content h3 {
  font-size: 1.15rem;
  margin-bottom: var(--space-sm);
}

.principle-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}

.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.method-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}


.modules-intro {
  margin-bottom: var(--space-xl);
  max-width: 700px;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.module-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--surface-dark);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.module-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.module-card-accent {
  background: var(--primary);
  border-color: var(--primary);
}

.module-card-accent .module-tag {
  background: rgba(200,57,43,0.2);
  color: var(--accent-light);
}

.module-card-accent .module-title {
  color: var(--text-on-dark);
}

.module-card-accent .module-desc {
  color: color-mix(in oklch, var(--text-on-dark), black 20%);
}

.module-card-accent .module-topics li {
  color: color-mix(in oklch, var(--text-on-dark), black 25%);
}

.module-card-accent .module-topics li::before {
  background: var(--accent-light);
}

.module-header {
  margin-bottom: var(--space-md);
}

.module-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-lighter);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-sm);
}

.module-title {
  font-size: 1.1rem;
  font-weight: 700;
}

.module-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.module-topics {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.module-topics li {
  font-size: 0.825rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}

.module-topics li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.offer-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.offer-detail-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--surface-dark);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--accent);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.offer-detail-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.offer-detail-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.offer-detail-card h3 {
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

.offer-detail-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}


.full-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.full-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--primary-lighter);
}

.full-gallery-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform var(--transition-slow);
  display: block;
}

.full-gallery-item:hover .full-gallery-img {
  transform: scale(1.04);
}

.full-gallery-caption {
  padding: 10px var(--space-md);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: white;
  border-top: 1px solid var(--surface-dark);
}


.contact-page-section {
  padding-top: calc(var(--nav-height) + var(--space-xl));
  padding-bottom: var(--space-3xl);
  min-height: calc(100vh - var(--nav-height));
}

.contact-page-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact-form-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: var(--space-sm);
}

.contact-form-sub {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.contact-form-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-required {
  color: var(--accent);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--surface-dark);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: white;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  appearance: none;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,57,43,0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

.form-helper {
  font-size: 0.775rem;
  color: var(--text-muted);
}

.form-privacy-group {
  padding: var(--space-md);
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--surface-dark);
}

.form-privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.form-checkbox {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}

.form-privacy-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.form-privacy-text a {
  color: var(--accent);
  text-decoration: underline;
}

.form-error-msg {
  display: none;
  padding: 12px 16px;
  background: color-mix(in oklch, var(--accent), white 88%);
  border: 1px solid var(--accent-light);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--accent-dark);
}

.form-error-msg.visible {
  display: block;
}

.form-submit-btn {
  width: 100%;
  padding: 16px 24px;
  font-size: 1rem;
  gap: 10px;
}

.contact-info-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-xl);
}

.contact-detail-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--surface-dark);
}

.contact-detail-item:last-child {
  border-bottom: none;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-lighter);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-detail-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.contact-detail-item a {
  color: var(--accent);
}

.contact-detail-item a:hover {
  text-decoration: underline;
}

.contact-map-block {
  margin-top: var(--space-xl);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}


.news-section {
  background: var(--surface);
}

.news-header {
  margin-bottom: var(--space-xl);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.news-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--surface-dark);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: var(--space-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.news-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.news-card-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
  padding-top: 4px;
}

.news-day {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.news-month {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.news-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-lighter);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}

.news-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.news-card-text {
  font-size: 0.825rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}


.thanks-page {
  background: color-mix(in oklch, var(--primary), white 88%);
}

.thanks-main {
  min-height: calc(100vh - var(--nav-height) - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3xl) var(--space-lg);
  padding-top: calc(var(--nav-height) + var(--space-3xl));
}

.thanks-wrapper {
  width: 100%;
  max-width: 560px;
}

.thanks-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-3xl) var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--surface-dark);
}

.thanks-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-lighter);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent);
  margin: 0 auto var(--space-lg);
  border: 3px solid var(--accent-light);
}

.thanks-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--space-md);
}

.thanks-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-xl);
}

.thanks-text a {
  color: var(--accent);
  font-weight: 600;
}

.thanks-home-btn {
  min-width: 200px;
}


.legal-page-section {
  padding-top: calc(var(--nav-height) + var(--space-3xl));
  padding-bottom: var(--space-3xl);
}

.legal-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.legal-header {
  margin-bottom: var(--space-3xl);
  padding-bottom: var(--space-xl);
  border-bottom: 2px solid var(--surface-dark);
}

.legal-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-sm);
}

.legal-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.legal-intro {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
  padding: var(--space-md) var(--space-lg);
  background: var(--surface);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent);
}

.legal-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.legal-qa-item {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--surface-dark);
}

.legal-qa-item:last-child {
  border-bottom: none;
}

.legal-question {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  padding-left: var(--space-md);
  border-left: 3px solid var(--accent);
}

.legal-answer p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.legal-answer ul {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-answer ul li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  list-style: disc;
}

.legal-answer a {
  color: var(--accent);
  text-decoration: underline;
}

.legal-body-lettered .legal-section-block {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--surface-dark);
}

.legal-body-lettered .legal-section-block:last-child {
  border-bottom: none;
}

.legal-body-lettered h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
  padding: 8px var(--space-md);
  background: var(--surface);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent);
}

.legal-section-block p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.legal-section-block ul {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-section-block ul li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  list-style: disc;
}

.legal-section-block a {
  color: var(--accent);
  text-decoration: underline;
}

.legal-plain-section {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--surface-dark);
}

.legal-plain-section:last-child {
  border-bottom: none;
}

.legal-plain-section h2 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.legal-plain-section h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.legal-plain-section p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.legal-plain-section ul {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-plain-section ul li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  list-style: disc;
}

.legal-plain-section a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-table-wrapper {
  margin-top: var(--space-sm);
}

.cookie-detail-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-sm) 0 var(--space-md);
  font-size: 0.825rem;
}

.cookie-detail-table th {
  text-align: left;
  padding: 10px 14px;
  background: var(--surface);
  font-weight: 700;
  color: var(--text-primary);
  border-bottom: 2px solid var(--surface-dark);
}

.cookie-detail-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--surface-dark);
  color: var(--text-secondary);
  vertical-align: top;
}

.cookie-detail-table code {
  font-family: monospace;
  background: var(--surface);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.8rem;
  color: var(--accent-dark);
}


.site-footer {
  background: var(--primary-dark);
  color: var(--text-on-dark);
  padding-top: var(--space-3xl);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-md);
  text-decoration: none;
  color: var(--text-on-dark);
  font-size: 1.05rem;
  font-weight: 800;
}

.footer-logo {
  width: 32px;
  height: 32px;
}

.footer-tagline {
  font-size: 0.875rem;
  color: color-mix(in oklch, var(--text-on-dark), black 30%);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.footer-address {
  font-size: 0.825rem;
  color: color-mix(in oklch, var(--text-on-dark), black 35%);
  line-height: 1.8;
}

.footer-address a {
  color: color-mix(in oklch, var(--text-on-dark), black 25%);
  transition: color var(--transition-fast);
}

.footer-address a:hover {
  color: var(--accent-light);
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-light);
  margin-bottom: var(--space-md);
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-list a {
  font-size: 0.875rem;
  color: color-mix(in oklch, var(--text-on-dark), black 30%);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-nav-list a:hover {
  color: var(--text-on-dark);
  padding-left: 4px;
}

.footer-bottom {
  padding: var(--space-lg) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-legal-info p {
  font-size: 0.775rem;
  color: color-mix(in oklch, var(--text-on-dark), black 45%);
  line-height: 1.7;
  margin: 0;
}

.footer-copy {
  font-size: 0.775rem;
  color: color-mix(in oklch, var(--text-on-dark), black 45%);
  margin: 0;
}


@media (max-width: 1024px) {
  :root {
    --space-3xl: 5rem;
  }

  .intro-grid,
  .forwhom-grid,
  .approach-grid,
  .method-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .intro-text-col {
    padding-right: 0;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .footer-brand-col {
    grid-column: span 2;
  }

  .news-grid {
    grid-template-columns: 1fr 1fr;
  }

  .news-grid .news-card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 4rem;
    --nav-height: 64px;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .hero-content-wrapper {
    padding: var(--space-xl) var(--space-md);
  }

  .stats-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    min-width: unset;
  }

  .pillars-grid,
  .modules-grid,
  .offer-details-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item-large {
    grid-column: span 2;
  }

  .full-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-block {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .contact-page-layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-grid .news-card:last-child {
    grid-column: span 1;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-brand-col {
    grid-column: span 1;
  }

  .section-container {
    padding: 0 var(--space-md);
  }

  .principle-item {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .principle-number {
    font-size: 1.5rem;
    min-width: unset;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item-large {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }

  .full-gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-btn,
  .cta-btn-ghost {
    min-width: unset;
    width: 100%;
  }

  .news-card {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .news-card-date {
    flex-direction: row;
    align-items: baseline;
    gap: 6px;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }
}


[data-aos] {
  transition-property: transform, opacity !important;
}