


:root {
  --color-bg: #f8f7f5;
  --color-bg-warm: #f2f0ec;
  --color-bg-dark: #1a1917;
  --color-bg-dark-2: #222220;
  --color-text: #1e1d1b;
  --color-text-muted: #6b6a66;
  --color-text-light: #9a9891;
  --color-accent: #2d5a8e;
  --color-accent-hover: #1f4270;
  --color-accent-light: #e8eef6;
  --color-border: #dbd9d4;
  --color-border-light: #eeece8;
  --color-white: #fdfcfa;

  --shadow-xs: 0 1px 3px rgba(30,29,27,0.06), 0 1px 2px rgba(30,29,27,0.04);
  --shadow-sm: 0 2px 8px rgba(30,29,27,0.07), 0 1px 3px rgba(30,29,27,0.05);
  --shadow-md: 0 4px 20px rgba(30,29,27,0.08), 0 2px 6px rgba(30,29,27,0.05);
  --shadow-lg: 0 8px 40px rgba(30,29,27,0.10), 0 2px 8px rgba(30,29,27,0.06);
  --shadow-xl: 0 16px 60px rgba(30,29,27,0.12), 0 4px 16px rgba(30,29,27,0.07);

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

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

  --font-sans: 'DM Sans', system-ui, sans-serif;

  --header-height: 80px;
  --header-height-scrolled: 60px;
  --max-content: 1200px;
  --max-narrow: 680px;

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}


*, *::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-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main { flex: 1; }

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--color-accent-hover); }

ul { list-style: none; }


h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 600; line-height: 1.2; letter-spacing: -0.015em; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); font-weight: 600; line-height: 1.3; }
h4 { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
p { font-size: 1rem; line-height: 1.7; color: var(--color-text-muted); }


.global-section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  margin-bottom: var(--space-sm);
}


.global-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  min-height: 44px;
  border: 1px solid transparent;
  text-decoration: none;
}

.global-cta--primary {
  background-color: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-sm), 0 0 0 0 rgba(45,90,142,0);
}
.global-cta--primary:hover {
  background-color: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: var(--color-white);
  box-shadow: var(--shadow-md), 0 0 0 3px rgba(45,90,142,0.15);
  transform: translateY(-1px);
}
.global-cta--primary:active { transform: translateY(0); }

.global-cta--outline {
  background-color: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.global-cta--outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background-color: var(--color-accent-light);
  transform: translateY(-1px);
}

.global-cta--text {
  background: transparent;
  color: var(--color-accent);
  padding: 0.5rem 0;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.global-cta--text:hover {
  color: var(--color-accent-hover);
  gap: 0.75rem;
}


.global-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248, 247, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-light);
  padding: 1.25rem 2rem;
  transition: padding var(--transition-base), background var(--transition-base), box-shadow var(--transition-base);
}

.global-header.is-scrolled {
  padding: 0.65rem 2rem;
  background: rgba(248, 247, 245, 0.98);
  box-shadow: var(--shadow-sm);
}

.global-header__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.global-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.global-header__logo-img {
  height: 36px;
  width: auto;
  transition: height var(--transition-base);
}

.global-header.is-scrolled .global-header__logo-img {
  height: 28px;
}

.global-header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.global-header__nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.global-header__nav-link:hover,
.global-header__nav-link--active {
  color: var(--color-text);
  border-bottom-color: var(--color-accent);
}

.global-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.global-header__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-text);
  transition: all var(--transition-base);
}


.global-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.global-mobile-menu.is-open {
  pointer-events: all;
  opacity: 1;
  transform: translateY(0);
}

.global-mobile-menu__left {
  flex: 1;
  background: var(--color-bg-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2.5rem;
  gap: var(--space-xl);
}

.global-mobile-menu__right {
  flex: 0 0 40%;
  position: relative;
  overflow: hidden;
}

.global-mobile-menu__brand-graphic {
  position: relative;
  width: 100%;
  height: 100%;
}

.global-mobile-menu__brand-graphic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) brightness(0.7);
}

.global-mobile-menu__brand-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,90,142,0.6) 0%, rgba(26,25,23,0.4) 100%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.global-mobile-menu__brand-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(253,252,250,0.9);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.global-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.global-mobile-menu__link {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  color: rgba(253,252,250,0.85);
  letter-spacing: -0.02em;
  line-height: 1.4;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(253,252,250,0.08);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.global-mobile-menu__link:hover {
  color: var(--color-white);
  padding-left: 0.5rem;
}

.global-mobile-menu__contact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.global-mobile-menu__contact a {
  font-size: 0.875rem;
  color: rgba(253,252,250,0.5);
  transition: color var(--transition-fast);
}
.global-mobile-menu__contact a:hover { color: rgba(253,252,250,0.85); }

.global-mobile-menu__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(253,252,250,0.1);
  border: 1px solid rgba(253,252,250,0.15);
  color: var(--color-white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}
.global-mobile-menu__close:hover {
  background: rgba(253,252,250,0.2);
  transform: rotate(90deg);
}


.home-hero {
  padding-top: calc(var(--header-height) + var(--space-xl));
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
  container-type: inline-size;
  container-name: home-hero-container;
}

.home-hero__decoration {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid var(--color-border-light);
  top: -100px;
  right: -150px;
  pointer-events: none;
}

.home-hero__decoration--2 {
  width: 300px;
  height: 300px;
  top: auto;
  bottom: 10%;
  right: 5%;
  left: auto;
  border-color: var(--color-accent-light);
}

.home-hero__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 2rem var(--space-xl);
  position: relative;
  z-index: 1;
}

.home-hero__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}

.home-hero__title {
  color: var(--color-text);
  margin-bottom: var(--space-md);
  max-width: 700px;
}

.home-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text-muted);
  max-width: 560px;
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}


.home-hero__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: var(--space-xl);
  max-width: 680px;
  flex-wrap: wrap;
}

.home-hero__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 100px;
  position: relative;
}

.home-hero__step:not(.home-hero__step--last)::after {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(50% + 24px);
  right: calc(-50% + 24px);
  height: 1px;
  background: var(--color-border);
}

.home-hero__step-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--color-text-muted);
  background: var(--color-white);
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.home-hero__step-icon--accent {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-accent-light);
}

.home-hero__step-line { display: none; }

.home-hero__step-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.3;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

.home-hero__image-wrap {
  margin-top: var(--space-xl);
  max-width: var(--max-content);
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
  position: relative;
}

.home-hero__image {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  border: 1px solid var(--color-border-light);
  border-bottom: none;
  box-shadow: var(--shadow-lg);
}


.home-intro {
  padding: var(--space-3xl) 2rem;
  background: var(--color-white);
  border-top: 1px solid var(--color-border-light);
  container-type: inline-size;
  container-name: home-intro-container;
}

.home-intro__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.home-intro__title {
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.home-intro__body {
  margin-bottom: var(--space-md);
}

.home-intro__body + .home-intro__body { margin-top: 0; }

.home-intro__image-col { position: relative; }

.home-intro__image-frame {
  position: relative;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.home-intro__image-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  pointer-events: none;
  z-index: 1;
}

.home-intro__image-frame img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.home-intro__image-frame:hover img { transform: scale(1.03); }


.home-modules {
  padding: var(--space-3xl) 2rem;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border-light);
  container-type: inline-size;
  container-name: home-modules-container;
}

.home-modules__inner {
  max-width: var(--max-content);
  margin: 0 auto;
}

.home-modules__header {
  margin-bottom: var(--space-xl);
  max-width: var(--max-narrow);
}

.home-modules__title {
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.home-modules__intro { color: var(--color-text-muted); }

.home-modules__tabs-wrapper {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.home-modules__tabs {
  display: flex;
  border-bottom: 1px solid var(--color-border);
  overflow-x: auto;
  scrollbar-width: none;
}
.home-modules__tabs::-webkit-scrollbar { display: none; }

.home-modules__tab {
  flex: 1;
  min-width: 120px;
  padding: 1rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.home-modules__tab:hover {
  color: var(--color-text);
  background: var(--color-bg);
}

.home-modules__tab--active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
  background: var(--color-accent-light);
}

.home-modules__panels { position: relative; }

.home-modules__panel {
  display: none;
  padding: var(--space-xl);
}

.home-modules__panel--active { display: block; }

.home-modules__panel-content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-xl);
  align-items: start;
}

.home-modules__panel-text h3 {
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.home-modules__panel-text p {
  margin-bottom: var(--space-sm);
}

.home-modules__panel-list {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.home-modules__panel-list li {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  padding-left: 1.25rem;
  position: relative;
}

.home-modules__panel-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 1px;
  background: var(--color-accent);
}

.home-modules__panel-image {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.home-modules__panel-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}


.home-journey {
  padding: var(--space-3xl) 2rem;
  background: var(--color-white);
  border-top: 1px solid var(--color-border-light);
}

.home-journey__inner {
  max-width: var(--max-content);
  margin: 0 auto;
}

.home-journey__header {
  max-width: var(--max-narrow);
  margin-bottom: var(--space-2xl);
}

.home-journey__title {
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.home-journey__intro { color: var(--color-text-muted); }

.home-journey__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
}

.home-journey__step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--space-md);
  align-items: start;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border-light);
  transition: background var(--transition-fast);
}

.home-journey__step:last-child { border-bottom: none; }
.home-journey__step:hover { background: var(--color-bg); }

.home-journey__step-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-border);
  line-height: 1;
  padding-top: 0.2rem;
  letter-spacing: -0.04em;
  transition: color var(--transition-base);
}

.home-journey__step:hover .home-journey__step-num {
  color: var(--color-accent);
}

.home-journey__step-title {
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.home-journey__step-desc { color: var(--color-text-muted); font-size: 0.9375rem; }

.home-journey__connector { display: none; }


.home-features {
  padding: var(--space-3xl) 2rem;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border-light);
  container-type: inline-size;
  container-name: home-features-container;
}

.home-features__inner {
  max-width: var(--max-content);
  margin: 0 auto;
}

.home-features__header {
  max-width: var(--max-narrow);
  margin-bottom: var(--space-xl);
}

.home-features__title {
  color: var(--color-text);
  margin-bottom: 0;
}

.home-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
}

.home-features__card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.home-features__card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition-base);
}

.home-features__card:hover {
  border-color: var(--color-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.home-features__card:hover::before { transform: scaleY(1); }

.home-features__card-icon {
  font-size: 1.4rem;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.home-features__card-title {
  color: var(--color-text);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.home-features__card p { font-size: 0.875rem; }


.home-faq {
  padding: var(--space-3xl) 2rem;
  background: var(--color-white);
  border-top: 1px solid var(--color-border-light);
}

.home-faq__inner,
.access-faq__inner {
  max-width: var(--max-content);
  margin: 0 auto;
}

.home-faq__header {
  max-width: var(--max-narrow);
  margin-bottom: var(--space-xl);
}

.home-faq__title { color: var(--color-text); }

.home-faq__list {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.home-faq__item {
  border-bottom: 1px solid var(--color-border-light);
}

.home-faq__item:first-child {
  border-top: 1px solid var(--color-border-light);
}

.home-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  text-align: left;
  transition: color var(--transition-fast);
}

.home-faq__question:hover { color: var(--color-accent); }

.home-faq__icon {
  flex-shrink: 0;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  transition: transform var(--transition-base);
}

.home-faq__item.is-open .home-faq__icon {
  transform: rotate(45deg);
}

.home-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.home-faq__answer p {
  padding-bottom: 1.25rem;
  font-size: 0.9375rem;
}

.home-faq__item.is-open .home-faq__answer {
  max-height: 400px;
}


.home-dual-cta {
  padding: var(--space-3xl) 2rem;
  background: var(--color-bg-warm);
  border-top: 1px solid var(--color-border-light);
}

.home-dual-cta__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.home-dual-cta__divider {
  width: 1px;
  height: 160px;
  background: var(--color-border);
}

.home-dual-cta__title {
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.home-dual-cta__title--secondary { color: var(--color-text-muted); }

.home-dual-cta p {
  margin-bottom: var(--space-md);
}


.global-footer {
  background: var(--color-bg-dark);
  color: rgba(253,252,250,0.7);
  padding-top: var(--space-2xl);
}

.global-footer__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 2rem;
}

.global-footer__top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-xl);
}

.global-footer__logo {
  height: 32px;
  width: auto;
  margin-bottom: var(--space-sm);
  filter: brightness(0) invert(1) opacity(0.85);
}

.global-footer__tagline {
  font-size: 0.875rem;
  color: rgba(253,252,250,0.45);
  line-height: 1.6;
}

.global-footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.global-footer__col-title {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(253,252,250,0.35);
  margin-bottom: var(--space-sm);
}

.global-footer__link {
  display: block;
  font-size: 0.875rem;
  color: rgba(253,252,250,0.6);
  margin-bottom: 0.4rem;
  transition: color var(--transition-fast);
}
.global-footer__link:hover { color: rgba(253,252,250,0.95); }

.global-footer__contact-item {
  font-size: 0.875rem;
  color: rgba(253,252,250,0.6);
  margin-bottom: 0.4rem;
  line-height: 1.5;
}

.global-footer__separator {
  height: 1px;
  background: rgba(253,252,250,0.08);
}

.global-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.global-footer__copy {
  font-size: 0.8rem;
  color: rgba(253,252,250,0.35);
}

.global-footer__legal-links {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.global-footer__legal-link {
  font-size: 0.8rem;
  color: rgba(253,252,250,0.35);
  transition: color var(--transition-fast);
}
.global-footer__legal-link:hover { color: rgba(253,252,250,0.7); }


.about-page-hero {
  padding-top: calc(var(--header-height) + var(--space-2xl));
  padding-bottom: var(--space-xl);
  padding-left: 2rem;
  padding-right: 2rem;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border-light);
}

.about-page-hero__inner {
  max-width: var(--max-narrow);
  margin: 0 auto;
}

.about-page-hero__title { color: var(--color-text); margin-bottom: var(--space-sm); }
.about-page-hero__subtitle { font-size: 1.1rem; color: var(--color-text-muted); }

.about-story {
  padding: var(--space-3xl) 2rem;
  background: var(--color-white);
}

.about-story__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-story__block {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: var(--space-xl);
  padding: var(--space-xl) 0;
}

.about-story__divider {
  height: 1px;
  background: var(--color-border-light);
}

.about-story__label-col {
  padding-top: 0.25rem;
}

.about-story__title {
  color: var(--color-text);
  margin-bottom: var(--space-md);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
}

.about-story__text-col p { margin-bottom: var(--space-sm); }

.about-values {
  padding: var(--space-3xl) 2rem;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border-light);
}

.about-values__inner {
  max-width: var(--max-content);
  margin: 0 auto;
}

.about-values__title {
  color: var(--color-text);
  margin-bottom: var(--space-xl);
  max-width: var(--max-narrow);
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
}

.about-values__card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: all var(--transition-base);
}

.about-values__card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-border);
  transform: translateY(-2px);
}

.about-values__card-icon {
  font-size: 1.35rem;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.about-values__card h3 {
  color: var(--color-text);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.about-values__card p { font-size: 0.875rem; }

.about-image-section {
  padding: var(--space-3xl) 2rem;
  background: var(--color-white);
  border-top: 1px solid var(--color-border-light);
}

.about-image-section__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-image-section__image-wrap {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-image-section__image-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-image-section__image-wrap:hover img { transform: scale(1.03); }

.about-image-section__text h2 {
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.about-image-section__text p { margin-bottom: var(--space-sm); }


.access-hero {
  padding-top: calc(var(--header-height) + var(--space-2xl));
  padding-bottom: var(--space-xl);
  padding-left: 2rem;
  padding-right: 2rem;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border-light);
}

.access-hero__inner {
  max-width: var(--max-narrow);
  margin: 0 auto;
}

.access-hero__title { color: var(--color-text); margin-bottom: var(--space-sm); }
.access-hero__subtitle { font-size: 1.1rem; color: var(--color-text-muted); }

.access-steps {
  padding: var(--space-3xl) 2rem;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border-light);
}

.access-steps__inner {
  max-width: var(--max-content);
  margin: 0 auto;
}

.access-steps__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-lg);
}

.access-steps__item {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-lg);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  transition: all var(--transition-base);
}

.access-steps__item:hover {
  border-color: var(--color-border);
  box-shadow: var(--shadow-sm);
  background: var(--color-white);
}

.access-steps__item-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent-light);
  letter-spacing: -0.04em;
  line-height: 1;
}

.access-steps__item-title {
  color: var(--color-text);
  font-size: 1.05rem;
}

.access-steps__item p { font-size: 0.875rem; }

.access-modules {
  padding: var(--space-3xl) 2rem;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border-light);
}

.access-modules__inner {
  max-width: var(--max-content);
  margin: 0 auto;
}

.access-modules__header {
  max-width: var(--max-narrow);
  margin-bottom: var(--space-xl);
}

.access-modules__title { color: var(--color-text); margin-bottom: var(--space-sm); }
.access-modules__intro { color: var(--color-text-muted); }

.access-modules__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  container-type: inline-size;
  container-name: modules-grid;
}

.access-modules__card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: all var(--transition-base);
}

.access-modules__card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.access-modules__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.access-modules__card-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.2rem 0.5rem;
}

.access-modules__card-icon {
  font-size: 1.2rem;
  color: var(--color-accent);
}

.access-modules__card-title {
  color: var(--color-text);
  font-size: 1rem;
}

.access-modules__card p { font-size: 0.875rem; }

.access-modules__card-topics {
  margin-top: auto;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.access-modules__card-topics li {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  padding-left: 1rem;
  position: relative;
}

.access-modules__card-topics li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 1px;
  background: var(--color-accent);
}

.access-faq {
  padding: var(--space-3xl) 2rem;
  background: var(--color-white);
  border-top: 1px solid var(--color-border-light);
}

.access-faq__inner {
  max-width: var(--max-content);
  margin: 0 auto;
}

.access-faq__title {
  color: var(--color-text);
  margin-bottom: var(--space-xl);
  margin-top: var(--space-sm);
}


.community-hero {
  padding-top: calc(var(--header-height) + var(--space-2xl));
  padding-bottom: var(--space-xl);
  padding-left: 2rem;
  padding-right: 2rem;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border-light);
}

.community-hero__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.community-hero__title { color: var(--color-text); margin-bottom: var(--space-sm); }
.community-hero__subtitle { font-size: 1.05rem; color: var(--color-text-muted); }

.community-hero__image {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.community-hero__image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.community-what {
  padding: var(--space-3xl) 2rem;
  background: var(--color-white);
}

.community-what__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-2xl);
}

.community-what__title {
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

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

.community-spaces {
  padding: var(--space-3xl) 2rem;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border-light);
}

.community-spaces__inner {
  max-width: var(--max-content);
  margin: 0 auto;
}

.community-spaces__header {
  max-width: var(--max-narrow);
  margin-bottom: var(--space-xl);
}

.community-spaces__title { color: var(--color-text); }

.community-spaces__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
}

.community-spaces__card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: all var(--transition-base);
}

.community-spaces__card:hover {
  border-color: var(--color-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.community-spaces__card-icon {
  font-size: 1.4rem;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.community-spaces__card h3 {
  color: var(--color-text);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.community-spaces__card p { font-size: 0.875rem; }

.community-guidelines {
  padding: var(--space-3xl) 2rem;
  background: var(--color-white);
  border-top: 1px solid var(--color-border-light);
}

.community-guidelines__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.community-guidelines__image-col {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.community-guidelines__image-col img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.community-guidelines__title {
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.community-guidelines__text-col p { margin-bottom: var(--space-sm); }

.community-guidelines__rules {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.community-guidelines__rule {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.community-guidelines__rule .fa-check {
  color: var(--color-accent);
  font-size: 0.75rem;
}

.community-guidelines__rule-no {
  color: var(--color-text-light) !important;
}


.contact-page-hero {
  padding-top: calc(var(--header-height) + var(--space-2xl));
  padding-bottom: var(--space-xl);
  padding-left: 2rem;
  padding-right: 2rem;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border-light);
}

.contact-page-hero__inner {
  max-width: var(--max-narrow);
  margin: 0 auto;
}

.contact-page-hero__title { color: var(--color-text); margin-bottom: var(--space-sm); }
.contact-page-hero__subtitle { color: var(--color-text-muted); font-size: 1.05rem; }

.contact-form-section {
  padding: var(--space-3xl) 2rem;
  background: var(--color-white);
}

.contact-form-section__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-form-section__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}

.contact-form-section__label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
}

.contact-form-section__input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  min-height: 44px;
}

.contact-form-section__input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(45,90,142,0.1);
  background: var(--color-white);
}

.contact-form-section__input::placeholder { color: var(--color-text-light); }

.contact-form-section__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b6a66' stroke-width='1.5'%3E%3Cpolyline points='6,9 12,15 18,9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

.contact-form-section__textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form-section__privacy {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
}

.contact-form-section__checkbox {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  cursor: pointer;
  accent-color: var(--color-accent);
}

.contact-form-section__privacy-label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

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

.contact-form-section__submit {
  width: 100%;
  justify-content: center;
}

.contact-form-section__info-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  position: sticky;
  top: calc(var(--header-height) + var(--space-md));
}

.contact-form-section__info-title {
  color: var(--color-text);
  font-size: 1rem;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border-light);
}

.contact-form-section__info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
}

.contact-form-section__info-item:last-child { margin-bottom: 0; }

.contact-form-section__info-item i {
  font-size: 1rem;
  color: var(--color-accent);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.contact-form-section__info-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-light);
  margin-bottom: 0.25rem;
}

.contact-form-section__info-item p,
.contact-form-section__info-item a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.contact-map-section {
  padding: 0 2rem var(--space-3xl);
  background: var(--color-white);
}

.contact-map-section__inner {
  max-width: var(--max-content);
  margin: 0 auto;
}

.contact-map-section__map {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-area-section {
  padding: var(--space-3xl) 2rem;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border-light);
}

.contact-area-section__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.contact-area-section__title {
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.contact-area-section__text p { margin-bottom: var(--space-sm); }

.contact-area-section__spain-outline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-xl);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
}

.contact-area-section__spain-outline > i {
  font-size: 4rem;
  color: var(--color-accent);
  opacity: 0.6;
}

.contact-area-section__location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.contact-area-section__tag {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-accent);
  background: var(--color-accent-light);
  border: 1px solid rgba(45,90,142,0.15);
  border-radius: var(--radius-sm);
  padding: 0.35rem 0.75rem;
}


.thanks-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}

.thanks-section {
  padding: var(--space-3xl) 2rem;
}

.thanks-section__inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.thanks-section__title {
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  margin-top: calc(var(--header-height) + var(--space-md));
}

.thanks-section__subtitle {
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

.thanks-section__timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: var(--space-xl);
  text-align: left;
}

.thanks-section__step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--space-md);
  align-items: start;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.thanks-section__step:last-child { border-bottom: none; }

.thanks-section__step-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-text-light);
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.thanks-section__step--done .thanks-section__step-icon {
  border-color: var(--color-accent);
  background: var(--color-accent-light);
  color: var(--color-accent);
}

.thanks-section__step--current .thanks-section__step-icon {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(45,90,142,0.15);
}

.thanks-section__step--upcoming .thanks-section__step-icon {
  border-color: var(--color-border-light);
  color: var(--color-text-light);
}

.thanks-section__step-content h3 {
  color: var(--color-text);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.thanks-section__step--upcoming .thanks-section__step-content h3 {
  color: var(--color-text-muted);
}

.thanks-section__step-content p { font-size: 0.875rem; }

.thanks-section__connector { display: none; }

.thanks-section__back {
  margin-top: var(--space-lg);
}


.legal-page-hero {
  padding-top: calc(var(--header-height) + var(--space-2xl));
  padding-bottom: var(--space-xl);
  padding-left: 2rem;
  padding-right: 2rem;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border-light);
}

.legal-page-hero__inner {
  max-width: var(--max-narrow);
  margin: 0 auto;
}

.legal-page-hero__title { color: var(--color-text); margin-bottom: 0.5rem; }
.legal-page-hero__meta { font-size: 0.875rem; color: var(--color-text-light); }

.legal-content {
  padding: var(--space-2xl) 2rem var(--space-3xl);
  background: var(--color-bg);
}

.legal-content__inner {
  max-width: var(--max-narrow);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.legal-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-xs);
}

.legal-card--intro {
  background: var(--color-accent-light);
  border-color: rgba(45,90,142,0.15);
}

.legal-card h2 {
  font-size: 1.05rem;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--color-border-light);
}

.legal-card p { font-size: 0.9375rem; margin-bottom: 0.75rem; }
.legal-card p:last-child { margin-bottom: 0; }

.legal-card ul {
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
}

.legal-card ul li {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 0.4rem;
  list-style: disc;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin-top: var(--space-sm);
}

.legal-table th {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
}

.legal-table td {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--color-border-light);
  color: var(--color-text-muted);
  vertical-align: top;
}

.legal-table tr:last-child td { border-bottom: none; }

.legal-table code {
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  background: var(--color-bg);
  padding: 0.1rem 0.35rem;
  border-radius: 3px;
  border: 1px solid var(--color-border-light);
}


.vis-cookie-trigger {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9000;
  width: 52px;
  height: 52px;
  background: var(--color-bg-dark);
  border: 1px solid rgba(253,252,250,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
}

.vis-cookie-trigger:hover {
  background: var(--color-accent);
  transform: scale(1.08);
}

.vis-cookie-trigger i {
  font-size: 1.15rem;
  color: rgba(253,252,250,0.85);
}

.vis-cookie-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 14px;
  height: 14px;
  background: #e05c3a;
  border-radius: 50%;
  border: 2px solid var(--color-bg);
  display: none;
}

.vis-cookie-badge.is-visible { display: block; }

.vis-cookie-panel {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  z-index: 8999;
  width: 360px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--space-lg);
  transform: translateY(20px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-base);
}

.vis-cookie-panel.is-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}

.vis-cookie-panel__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.vis-cookie-panel__desc {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.5;
}

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

.vis-cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--color-border-light);
}

.vis-cookie-toggle-row:last-of-type { border-bottom: none; }

.vis-cookie-toggle-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
}

.vis-cookie-toggle-sub {
  font-size: 0.75rem;
  color: var(--color-text-light);
  display: block;
}

.vis-cookie-toggle {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}

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

.vis-cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--color-border);
  border-radius: 11px;
  cursor: pointer;
  transition: background var(--transition-base);
}

.vis-cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--color-white);
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform var(--transition-base);
  box-shadow: var(--shadow-xs);
}

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

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

.vis-cookie-toggle input:disabled + .vis-cookie-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.vis-cookie-panel__actions {
  display: flex;
  gap: 0.5rem;
  margin-top: var(--space-md);
  flex-wrap: wrap;
}

.vis-cookie-btn {
  flex: 1;
  padding: 0.6rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-text-muted);
  transition: all var(--transition-fast);
  min-height: 40px;
}

.vis-cookie-btn:hover {
  border-color: var(--color-text-muted);
  color: var(--color-text);
}

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

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




@media (max-width: 1024px) {
  .global-header__nav { display: none; }
  .global-header__burger { display: flex; }

  .home-modules__panel-content {
    grid-template-columns: 1fr;
  }

  .home-modules__panel-image { order: -1; }

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

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

  .home-dual-cta__inner {
    grid-template-columns: 1fr;
  }

  .home-dual-cta__divider {
    width: 100%;
    height: 1px;
  }

  .about-image-section__inner,
  .community-guidelines__inner,
  .contact-area-section__inner {
    grid-template-columns: 1fr;
  }

  .community-hero__inner { grid-template-columns: 1fr; }
  .community-hero__image { order: -1; }

  .about-story__block {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
}


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

  .home-hero__inner { padding: 0 1.25rem var(--space-xl); }

  .home-hero__steps {
    gap: var(--space-sm);
    flex-direction: column;
    max-width: 100%;
  }

  .home-hero__step {
    flex-direction: row;
    align-items: center;
    gap: var(--space-sm);
    min-width: auto;
  }

  .home-hero__step::after { display: none; }

  .home-hero__step-label {
    text-align: left;
  }

  .home-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .home-modules__tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .home-modules__panel { padding: var(--space-md); }

  .home-journey__step {
    grid-template-columns: 48px 1fr;
  }

  .home-features__grid {
    grid-template-columns: 1fr;
  }

  .contact-form-section__inner {
    grid-template-columns: 1fr;
  }

  .contact-area-section__inner {
    grid-template-columns: 1fr;
  }

  .community-what__inner {
    grid-template-columns: 1fr;
  }

  .global-footer__cols {
    grid-template-columns: 1fr 1fr;
  }

  .global-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .global-mobile-menu__right {
    display: none;
  }

  .global-mobile-menu__left {
    flex: 1;
  }

  .vis-cookie-panel {
    width: calc(100vw - 2rem);
    right: 1rem;
    bottom: 5rem;
  }

  .access-steps__list {
    grid-template-columns: 1fr;
  }

  .access-modules__grid {
    grid-template-columns: 1fr;
  }

  .about-image-section__inner {
    grid-template-columns: 1fr;
  }

  .legal-content__inner {
    max-width: 100%;
  }

  .global-header { padding: 1rem 1.25rem; }
  .global-header.is-scrolled { padding: 0.6rem 1.25rem; }
}


@media (max-width: 480px) {
  .home-hero__title { font-size: clamp(1.75rem, 8vw, 2.5rem); }

  .home-modules__tab {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
  }

  .global-footer__cols {
    grid-template-columns: 1fr;
  }

  .home-dual-cta__inner {
    gap: var(--space-xl);
  }

  .legal-table {
    font-size: 0.78rem;
  }

  .legal-table th, .legal-table td {
    padding: 0.4rem 0.5rem;
  }

  .thanks-section__step {
    grid-template-columns: 44px 1fr;
    gap: var(--space-sm);
  }
}


@container home-intro-container (max-width: 700px) {
  .home-intro__inner {
    grid-template-columns: 1fr;
  }
}

@container home-modules-container (max-width: 700px) {
  .home-modules__panel-content {
    grid-template-columns: 1fr;
  }
}

@container home-features-container (max-width: 500px) {
  .home-features__grid {
    grid-template-columns: 1fr;
  }
}


.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}