

:root {
  --navy: #0D1B2A;
  --navy-mid: #1A2E42;
  --navy-light: #243B55;
  --amber: #E8A020;
  --amber-dark: #C4831A;
  --amber-light: #F5C260;
  --cream: #FAF6EF;
  --cream-dark: #F0E8D8;
  --text-dark: #0D1B2A;
  --text-mid: #2C3E50;
  --text-light: #F5F0E8;
  --text-muted: #6B7A8D;

  --shadow-sm: 0 1px 3px rgba(13,27,42,0.08), 0 1px 2px rgba(13,27,42,0.05);
  --shadow-md: 0 4px 12px rgba(13,27,42,0.10), 0 2px 6px rgba(13,27,42,0.07);
  --shadow-lg: 0 10px 30px rgba(13,27,42,0.14), 0 4px 12px rgba(13,27,42,0.09);
  --shadow-xl: 0 20px 50px rgba(13,27,42,0.18), 0 8px 20px rgba(13,27,42,0.12);
  --shadow-amber: 0 8px 24px rgba(232,160,32,0.25), 0 2px 8px rgba(232,160,32,0.15);

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

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

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body.global-body {
  font-family: 'Wix Madefor Text', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5 {
  font-family: 'Wix Madefor Display', sans-serif;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }



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

.global-section-navy { background-color: var(--navy); color: var(--text-light); }
.global-section-amber { background-color: var(--amber); color: var(--navy); }
.global-section-light { background-color: var(--cream); color: var(--text-dark); }



.global-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
  background: transparent;
}

.global-header.global-header-solid,
.global-header.nav-scrolled {
  background: rgba(13, 27, 42, 0.97);
  box-shadow: 0 2px 20px rgba(13,27,42,0.3);
  backdrop-filter: blur(12px);
}

.global-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 var(--space-lg);
}

.global-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.global-logo-img { width: 36px; height: 36px; }

.global-logo-text {
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -0.02em;
}

.global-nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.global-nav-link {
  font-family: 'Wix Madefor Text', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(245, 240, 232, 0.85);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s ease;
}

.global-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amber);
  transition: width 0.3s ease;
}

.global-nav-link:hover,
.global-nav-link.active { color: var(--amber); }

.global-nav-link:hover::after,
.global-nav-link.active::after { width: 100%; }


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

.global-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: all 0.3s ease;
}



.global-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,27,42,0.7);
  z-index: 1998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(4px);
}

.global-mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.global-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 90vw);
  height: 100vh;
  background: var(--navy);
  z-index: 1999;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
  overflow-y: auto;
  border-left: 3px solid var(--amber);
}

.global-mobile-menu.active {
  transform: translateX(0);
}

.global-mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: 2px solid rgba(245,240,232,0.2);
  color: var(--text-light);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.global-mobile-close:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy);
}

.global-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--space-md);
}

.global-mobile-link {
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-light);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(245,240,232,0.1);
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.global-mobile-link:hover {
  color: var(--amber);
  padding-left: 8px;
}

.global-mobile-footer {
  margin-top: auto;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(245,240,232,0.1);
  font-size: 0.85rem;
  color: rgba(245,240,232,0.5);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}



.global-page-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(232,160,32,0.12);
  border: 1px solid rgba(232,160,32,0.3);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: var(--space-sm);
}



.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.home-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.35) saturate(0.7);
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,27,42,0.92) 0%,
    rgba(13,27,42,0.75) 50%,
    rgba(232,160,32,0.15) 100%
  );
}

.home-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding-top: 80px;
}

.home-hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid rgba(232,160,32,0.4);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: var(--space-md);
  animation: heroFadeUp 0.8s ease 0.1s both;
}

.home-hero-headline {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
  animation: heroFadeUp 0.8s ease 0.2s both;
}

.home-hero-accent { color: var(--amber); }

.home-hero-sub {
  font-size: 1.05rem;
  color: rgba(245,240,232,0.78);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 520px;
  animation: heroFadeUp 0.8s ease 0.35s both;
}

.home-hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  animation: heroFadeUp 0.8s ease 0.5s both;
}

.home-hero-btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--amber);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-amber);
}

.home-hero-btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(232,160,32,0.4);
}

.home-hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(245,240,232,0.3);
  transition: all 0.3s ease;
}

.home-hero-btn-secondary:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-2px);
}


.home-hero-quote-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(232,160,32,0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  backdrop-filter: blur(16px);
  animation: heroFadeUp 0.8s ease 0.6s both;
  box-shadow: 0 8px 32px rgba(13,27,42,0.3), inset 0 1px 0 rgba(255,255,255,0.08);
}

.home-hero-quote-icon {
  width: 44px;
  height: 44px;
  background: var(--amber);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
}

.home-hero-quote-text {
  font-style: italic;
  color: rgba(245,240,232,0.88);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.home-hero-quote-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.home-hero-quote-author {
  font-weight: 700;
  color: var(--amber);
  font-size: 0.9rem;
}

.home-hero-quote-note {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.45);
}


.home-hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(245,240,232,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease infinite;
}



@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}



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

.reveal-element.revealed {
  opacity: 1;
  transform: translateY(0);
}



.home-features {
  padding: var(--space-2xl) 0;
}

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

.home-features-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.home-features-sub {
  font-size: 1.05rem;
  color: rgba(13,27,42,0.7);
  max-width: 520px;
  margin: 0 auto;
}

.home-bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 1.25rem;
}

.home-bento-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(13,27,42,0.06);
}

.home-bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.home-bento-large {
  grid-column: span 7;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  align-items: center;
  background: var(--navy);
  color: var(--text-light);
}

.home-bento-large .home-bento-card-inner { display: flex; flex-direction: column; }

.home-bento-small { grid-column: span 5; }

.home-bento-medium { grid-column: span 8; }

.home-bento-download { grid-column: span 4; }

.home-bento-amber {
  background: var(--amber);
  color: var(--navy);
}

.home-bento-dark {
  background: var(--navy);
  color: var(--text-light);
}

.home-bento-icon {
  width: 48px;
  height: 48px;
  background: rgba(232,160,32,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--amber);
  margin-bottom: var(--space-md);
}

.home-bento-amber .home-bento-icon {
  background: rgba(13,27,42,0.12);
  color: var(--navy);
}

.home-bento-icon-light { color: var(--amber); background: rgba(232,160,32,0.15); }

.home-bento-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.home-bento-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.82;
  flex: 1;
  margin-bottom: var(--space-md);
}

.home-bento-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 200px;
}

.home-bento-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) saturate(0.6);
  mix-blend-mode: luminosity;
  transition: filter 0.4s ease;
}

.home-bento-card:hover .home-bento-img {
  filter: brightness(0.85) saturate(0.8);
}

.home-bento-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--amber);
  transition: gap 0.3s ease;
  margin-top: auto;
}

.home-bento-link-light { color: var(--amber); }

.home-bento-amber .home-bento-link { color: var(--navy); }

.home-bento-link:hover { gap: 0.7rem; }



.home-about { padding: var(--space-2xl) 0; }

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

.home-about-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.home-about-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.5);
  mix-blend-mode: luminosity;
}

.home-about-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--amber);
  color: var(--navy);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.home-about-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--space-sm);
}

.home-about-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

.home-about-body {
  color: rgba(245,240,232,0.75);
  font-size: 0.97rem;
  line-height: 1.72;
  margin-bottom: var(--space-md);
}

.home-about-btn {
  display: inline-flex;
  align-items: center;
  background: var(--amber);
  color: var(--navy);
  font-weight: 700;
  padding: 0.85rem 1.7rem;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-amber);
  margin-top: var(--space-sm);
}

.home-about-btn:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
}



.home-topics { padding: var(--space-2xl) 0; }

.home-topics-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: var(--space-xl);
  color: var(--navy);
}

.home-topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.home-topic-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(13,27,42,0.06);
}

.home-topic-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.home-topic-img-wrap {
  height: 200px;
  overflow: hidden;
}

.home-topic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.5);
  mix-blend-mode: multiply;
  background-color: var(--amber);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.home-topic-card:hover .home-topic-img {
  filter: brightness(0.8) saturate(0.7);
  transform: scale(1.03);
}

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

.home-topic-cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-dark);
  background: rgba(232,160,32,0.12);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  margin-bottom: 0.6rem;
}

.home-topic-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.home-topic-excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.home-topic-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  transition: gap 0.3s ease, color 0.3s ease;
}

.home-topic-link:hover { color: var(--amber-dark); gap: 0.7rem; }



.home-download-banner { padding: var(--space-xl) 0; }

.home-download-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.home-download-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.home-download-text p {
  color: rgba(13,27,42,0.72);
  font-size: 0.95rem;
  max-width: 520px;
}

.home-download-btn {
  display: inline-flex;
  align-items: center;
  background: var(--navy);
  color: var(--amber);
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.home-download-btn:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}



.home-disclaimer { padding: var(--space-xl) 0; }

.home-disclaimer-box {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  background: rgba(13,27,42,0.05);
  border: 1px solid rgba(13,27,42,0.1);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.home-disclaimer-icon {
  color: var(--amber-dark);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}



.global-footer {
  background: var(--navy);
  color: rgba(245,240,232,0.7);
  padding: var(--space-2xl) 0 var(--space-md);
  margin-top: auto;
}

.global-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(245,240,232,0.1);
  margin-bottom: var(--space-lg);
}

.global-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: var(--space-md);
}

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

.global-footer-logo span {
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--amber);
}

.global-footer-tagline {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: var(--space-md);
  max-width: 280px;
}

.global-footer-addr {
  font-size: 0.82rem;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245,240,232,0.55);
}

.global-footer-addr i { color: var(--amber); width: 14px; }

.global-footer-col h4 {
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--space-md);
}

.global-footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }

.global-footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.6);
  transition: color 0.3s ease;
}

.global-footer-col ul li a:hover { color: var(--amber); }

.global-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.8rem;
  color: rgba(245,240,232,0.4);
}

.global-footer-bottom a {
  color: rgba(245,240,232,0.4);
  transition: color 0.3s ease;
}

.global-footer-bottom a:hover { color: var(--amber); }



.global-sidebar-cta {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
}

.global-sidebar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: var(--amber);
  color: var(--navy);
  padding: 1rem 0.6rem;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  box-shadow: var(--shadow-amber);
  transition: all 0.3s ease;
  min-height: 100px;
}

.global-sidebar-btn i {
  writing-mode: horizontal-tb;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.global-sidebar-btn span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.global-sidebar-btn:hover {
  background: var(--amber-light);
  padding-right: 0.9rem;
}



.about-page-hero {
  padding: calc(72px + var(--space-2xl)) 0 var(--space-2xl);
}

.about-page-hero-inner { max-width: 680px; }

.about-page-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

.about-page-intro {
  font-size: 1.15rem;
  color: rgba(245,240,232,0.72);
  line-height: 1.7;
}

.about-story { padding: var(--space-2xl) 0; }

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

.about-story-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--space-md);
}

.about-story-text p {
  color: var(--text-mid);
  line-height: 1.72;
  margin-bottom: var(--space-md);
  font-size: 0.97rem;
}

.about-img-full {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  filter: brightness(0.82) saturate(0.6);
}

.about-values { padding: var(--space-2xl) 0; }

.about-values-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--space-xl);
  text-align: center;
}

.about-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.about-value-card {
  background: rgba(13,27,42,0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid rgba(13,27,42,0.1);
}

.about-value-card-dark {
  background: var(--navy);
  color: var(--text-light);
  border-color: transparent;
}

.about-value-icon {
  width: 44px;
  height: 44px;
  background: var(--amber);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: var(--space-md);
}

.about-value-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.about-value-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.about-value-list li {
  font-size: 0.9rem;
  line-height: 1.5;
  padding-left: 1.2rem;
  position: relative;
}

.about-value-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
}

.about-method { padding: var(--space-2xl) 0; }

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

.about-method-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

.about-method-text p {
  color: rgba(245,240,232,0.72);
  line-height: 1.72;
  margin-bottom: var(--space-md);
  font-size: 0.97rem;
}

.about-contact-nudge { padding: var(--space-2xl) 0; }

.about-nudge-box {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.about-nudge-box h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.about-nudge-box p {
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  font-size: 0.97rem;
}

.about-nudge-btn {
  display: inline-flex;
  align-items: center;
  background: var(--navy);
  color: var(--amber);
  font-weight: 700;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.about-nudge-btn:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
}



.invest-page-hero {
  padding: calc(72px + var(--space-2xl)) 0 var(--space-xl);
}

.invest-page-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: var(--space-md);
  margin-top: var(--space-sm);
}

.invest-page-intro {
  font-size: 1.1rem;
  color: rgba(245,240,232,0.7);
  margin-bottom: var(--space-lg);
}

.invest-anchor-nav {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.invest-anchor-nav a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--amber);
  background: rgba(232,160,32,0.12);
  border: 1px solid rgba(232,160,32,0.3);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  transition: all 0.3s ease;
}

.invest-anchor-nav a:hover {
  background: var(--amber);
  color: var(--navy);
}

.invest-section { padding: var(--space-2xl) 0; }

.invest-section-header {
  display: flex;
  align-items: baseline;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.invest-section-num {
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(13,27,42,0.12);
  line-height: 1;
  flex-shrink: 0;
}

.invest-section-num-light { color: rgba(245,240,232,0.15); }

.invest-section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
}

.invest-section-header-light h2 { color: var(--text-light); }

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

.invest-text-col h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: var(--space-md) 0 0.5rem;
}

.invest-text-col p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.72;
  margin-bottom: var(--space-sm);
}


.invest-compare-table {
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-lg);
}

.invest-compare-header {
  background: var(--amber);
  color: var(--navy);
  padding: 0.8rem var(--space-md);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.invest-compare-row {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr;
  padding: 0.7rem var(--space-md);
  border-bottom: 1px solid rgba(245,240,232,0.06);
  font-size: 0.88rem;
  color: rgba(245,240,232,0.8);
}

.invest-compare-row-head {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(245,240,232,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.invest-compare-row-total {
  background: rgba(232,160,32,0.1);
  font-weight: 700;
  color: var(--amber);
  border-bottom: none;
}


.invest-download-box {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: rgba(13,27,42,0.06);
  border: 1px solid rgba(13,27,42,0.1);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-top: var(--space-md);
}

.invest-download-box i {
  font-size: 1.5rem;
  color: var(--amber-dark);
  flex-shrink: 0;
}

.invest-download-box strong {
  font-size: 0.9rem;
  color: var(--navy);
  display: block;
  margin-bottom: 0.2rem;
}

.invest-download-box p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.invest-dl-btn {
  margin-left: auto;
  flex-shrink: 0;
  background: var(--amber);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: all 0.3s ease;
}

.invest-dl-btn:hover { background: var(--amber-light); }

.invest-download-box-light {
  background: rgba(245,240,232,0.08);
  border-color: rgba(245,240,232,0.15);
}

.invest-download-box-light strong { color: var(--text-light); }
.invest-download-box-light p { color: rgba(245,240,232,0.55); }
.invest-download-box-light i { color: var(--amber); }

.invest-dl-btn-light {
  background: var(--amber);
  color: var(--navy);
}


.invest-richtwert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.invest-richtwert-text p {
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.72;
  margin-bottom: var(--space-md);
}

.invest-richtwert-text h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: var(--space-md) 0 0.5rem;
}

.invest-richtwert-cards { display: flex; flex-direction: column; gap: var(--space-md); }

.invest-bundesland-card {
  background: rgba(13,27,42,0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid rgba(13,27,42,0.1);
}

.invest-bundesland-wien { border-left: 4px solid var(--navy); }
.invest-bundesland-bgld { border-left: 4px solid var(--amber-dark); }

.invest-bundesland-icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

.invest-bundesland-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.invest-bundesland-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.4rem;
}

.invest-bundesland-note {
  font-size: 0.75rem !important;
  color: rgba(13,27,42,0.4) !important;
  font-style: italic;
}


.invest-zinsen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.invest-zinsen-text p {
  color: rgba(245,240,232,0.75);
  font-size: 0.95rem;
  line-height: 1.72;
  margin-bottom: var(--space-md);
}

.invest-zinsen-scenario {
  background: rgba(245,240,232,0.06);
  border: 1px solid rgba(245,240,232,0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
}

.invest-zinsen-bar-wrap { margin-bottom: var(--space-md); }

.invest-zinsen-label {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.6);
  margin-bottom: 0.4rem;
}

.invest-zinsen-bar {
  background: rgba(245,240,232,0.08);
  border-radius: 100px;
  height: 44px;
  overflow: hidden;
}

.invest-zinsen-fill {
  height: 100%;
  border-radius: 100px;
  display: flex;
  align-items: center;
  padding: 0 var(--space-md);
  font-size: 0.85rem;
  font-weight: 700;
  transition: width 1s ease;
}

.invest-zinsen-fill-base {
  background: rgba(232,160,32,0.6);
  color: var(--navy);
}

.invest-zinsen-fill-high {
  background: var(--amber);
  color: var(--navy);
}

.invest-zinsen-note {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.4);
  font-style: italic;
  line-height: 1.5;
}


.invest-20yr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.invest-20yr-text p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.72;
  margin-bottom: var(--space-md);
}

.invest-20yr-text h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: var(--space-md) 0 0.5rem;
}

.invest-20yr-table-wrap {
  overflow-x: auto;
  margin-bottom: var(--space-md);
}

.invest-20yr-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.invest-20yr-table caption {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: left;
  padding-bottom: 0.5rem;
  font-style: italic;
}

.invest-20yr-table th {
  background: var(--navy);
  color: var(--amber);
  padding: 0.7rem 1rem;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.invest-20yr-table td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(13,27,42,0.07);
  color: var(--text-mid);
}

.invest-20yr-table tr:hover td {
  background: rgba(232,160,32,0.05);
}

.invest-table-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
}

.invest-disclaimer { padding: var(--space-xl) 0; }



.request-page-hero {
  padding: calc(72px + var(--space-2xl)) 0 var(--space-xl);
}

.request-page-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--space-md);
  margin-top: var(--space-sm);
}

.request-page-intro {
  font-size: 1.1rem;
  color: rgba(13,27,42,0.7);
}

.request-what { padding: var(--space-2xl) 0; }

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

.request-what-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--space-md);
}

.request-what-text p {
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.72;
  margin-bottom: var(--space-md);
}

.request-what-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.request-sheet-card {
  background: var(--navy);
  color: var(--amber);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-md);
}

.request-sheet-card i { font-size: 1.4rem; }

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

.request-form-section { padding: var(--space-2xl) 0; }

.request-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(245,240,232,0.05);
  border: 1px solid rgba(245,240,232,0.12);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: 0 20px 60px rgba(13,27,42,0.3);
  backdrop-filter: blur(12px);
}

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

.request-form-header h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.request-form-header p {
  color: rgba(245,240,232,0.6);
  font-size: 0.92rem;
}

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

.request-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.request-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.request-form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(245,240,232,0.7);
  letter-spacing: 0.04em;
}

.request-form-field input,
.request-form-field textarea {
  background: rgba(245,240,232,0.07);
  border: 1.5px solid rgba(245,240,232,0.15);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  color: var(--text-light);
  font-family: 'Wix Madefor Text', sans-serif;
  font-size: 0.92rem;
  transition: border-color 0.3s ease, background 0.3s ease;
  min-height: 44px;
}

.request-form-field input::placeholder,
.request-form-field textarea::placeholder {
  color: rgba(245,240,232,0.3);
}

.request-form-field input:focus,
.request-form-field textarea:focus {
  outline: none;
  border-color: var(--amber);
  background: rgba(245,240,232,0.1);
}

.request-checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 0.2rem;
}

.request-check-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(245,240,232,0.75);
  cursor: pointer;
  min-height: 44px;
  padding: 0.5rem 0;
}

.request-check-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: auto;
  accent-color: var(--amber);
  cursor: pointer;
}

.request-form-bottom {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: space-between;
}

.request-privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(245,240,232,0.6);
  cursor: pointer;
  flex: 1;
  min-width: 200px;
}

.request-privacy-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--amber);
  cursor: pointer;
  margin-top: 2px;
}

.request-privacy-label a { color: var(--amber); text-decoration: underline; }

.request-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--amber);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 44px;
  box-shadow: var(--shadow-amber);
}

.request-submit-btn:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
}

.required-star { color: var(--amber); }



.contact-mission {
  padding: calc(72px + var(--space-xl)) 0 var(--space-xl);
}

.contact-mission-inner { max-width: 700px; margin: 0 auto; text-align: center; }

.contact-mission-quote {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: rgba(245,240,232,0.85);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.contact-mission-quote p::before { content: '\201C'; color: var(--amber); font-size: 2em; line-height: 0; vertical-align: -0.4em; margin-right: 0.1em; }
.contact-mission-quote p::after { content: '\201D'; color: var(--amber); font-size: 2em; line-height: 0; vertical-align: -0.4em; margin-left: 0.1em; }

.contact-mission-quote cite {
  font-style: normal;
  font-size: 0.88rem;
  color: var(--amber);
  font-weight: 700;
}

.contact-form-section { padding: var(--space-2xl) 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--space-md);
}

.contact-intro {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

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

.contact-info-item i {
  width: 44px;
  height: 44px;
  background: var(--amber);
  color: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item strong {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.2rem;
}

.contact-info-item p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.5; }
.contact-info-item p a { color: var(--navy); transition: color 0.3s ease; }
.contact-info-item p a:hover { color: var(--amber-dark); }

.contact-form-compact {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-xl);
}

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

.contact-form-field-inline {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form-field-inline label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(245,240,232,0.65);
}

.contact-form-field-inline input,
.contact-form-field-inline textarea {
  background: rgba(245,240,232,0.07);
  border: 1.5px solid rgba(245,240,232,0.15);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  color: var(--text-light);
  font-family: 'Wix Madefor Text', sans-serif;
  font-size: 0.92rem;
  transition: border-color 0.3s ease;
  min-height: 44px;
  resize: vertical;
}

.contact-form-field-inline input::placeholder,
.contact-form-field-inline textarea::placeholder {
  color: rgba(245,240,232,0.28);
}

.contact-form-field-inline input:focus,
.contact-form-field-inline textarea:focus {
  outline: none;
  border-color: var(--amber);
}

.contact-form-bottom-row {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact-privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(245,240,232,0.55);
  cursor: pointer;
  flex: 1;
}

.contact-privacy-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--amber);
  flex-shrink: 0;
  cursor: pointer;
}

.contact-privacy-label a { color: var(--amber); text-decoration: underline; }

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--amber);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 44px;
}

.contact-submit-btn:hover { background: var(--amber-light); transform: translateY(-2px); }

.contact-map-section { padding: 0 0 var(--space-2xl); }

.contact-map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(13,27,42,0.1);
}



.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  background: var(--cream);
  padding: var(--space-2xl) var(--space-md);
}

.thanks-content {
  text-align: center;
  max-width: 480px;
}

.thanks-icon {
  font-size: 4rem;
  color: var(--amber);
  margin-bottom: var(--space-lg);
}

.thanks-heading {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--space-md);
}

.thanks-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

.thanks-home-btn {
  display: inline-flex;
  align-items: center;
  background: var(--navy);
  color: var(--amber);
  font-weight: 700;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.thanks-home-btn:hover { background: var(--navy-mid); transform: translateY(-2px); }



.legal-page-hero {
  padding: calc(72px + var(--space-2xl)) 0 var(--space-xl);
}

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

.legal-page-title-dark { color: var(--navy); }

.legal-page-sub {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.55);
}

.legal-page-sub-dark { color: rgba(13,27,42,0.55); }

.legal-content { padding: var(--space-2xl) 0; }

.legal-container { max-width: 820px; }

.legal-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm), 0 4px 16px rgba(13,27,42,0.06);
  border: 1px solid rgba(13,27,42,0.06);
}

.legal-card h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-sm);
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--amber);
  display: inline-block;
}

.legal-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.legal-card p:last-child { margin-bottom: 0; }

.legal-card a { color: var(--amber-dark); text-decoration: underline; }
.legal-card a:hover { color: var(--navy); }

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

.legal-table tr { border-bottom: 1px solid rgba(13,27,42,0.06); }
.legal-table td { padding: 0.6rem 0; color: var(--text-mid); }
.legal-table td:first-child { font-weight: 600; color: var(--navy); width: 40%; }

.cookie-table-wrap { margin-top: var(--space-md); overflow-x: auto; }

.cookie-detail-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.cookie-detail-table th {
  background: var(--navy);
  color: var(--amber);
  padding: 0.6rem 0.8rem;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cookie-detail-table td {
  padding: 0.6rem 0.8rem;
  border-bottom: 1px solid rgba(13,27,42,0.07);
  color: var(--text-mid);
}

.privacy-intro-card { border-left: 4px solid var(--amber); }
.terms-wide-card { background: rgba(232,160,32,0.05); border-color: rgba(232,160,32,0.2); }



.cookie-consent-card {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: min(360px, calc(100vw - 2rem));
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  z-index: 9999;
  box-shadow: 0 20px 60px rgba(13,27,42,0.4), 0 4px 16px rgba(13,27,42,0.2);
  border: 1px solid rgba(232,160,32,0.2);
  transform: translateY(calc(100% + 2rem));
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
  overflow: hidden;
}

.cookie-consent-card.cookie-visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-consent-icon {
  width: 48px;
  height: 48px;
  background: var(--amber);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
}

.cookie-consent-title {
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.cookie-consent-text {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.65);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.cookie-consent-text a { color: var(--amber); text-decoration: underline; }

.cookie-consent-btns {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cookie-btn-accept {
  background: var(--amber);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 44px;
}

.cookie-btn-accept:hover { background: var(--amber-light); }

.cookie-btn-necessary {
  background: transparent;
  color: rgba(245,240,232,0.6);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(245,240,232,0.15);
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 44px;
}

.cookie-btn-necessary:hover {
  border-color: rgba(245,240,232,0.35);
  color: var(--text-light);
}

.cookie-btn-customize {
  background: transparent;
  color: rgba(245,240,232,0.5);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.5rem 1.2rem;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  text-align: center;
}

.cookie-btn-customize:hover { color: var(--amber); }


.cookie-customize-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.cookie-customize-panel.open { max-height: 300px; }

.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(245,240,232,0.08);
}

.cookie-toggle-label {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.75);
}

.cookie-toggle-label small {
  display: block;
  font-size: 0.72rem;
  color: rgba(245,240,232,0.4);
}

.cookie-toggle {
  position: relative;
  width: 40px;
  height: 22px;
}

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

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: rgba(245,240,232,0.15);
  border-radius: 100px;
  transition: background 0.3s ease;
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--amber); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(18px); }
.cookie-toggle input:disabled + .cookie-toggle-slider { opacity: 0.5; cursor: not-allowed; }

.cookie-save-prefs {
  width: 100%;
  background: var(--amber);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.7rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  margin-top: var(--space-sm);
  transition: all 0.3s ease;
  min-height: 44px;
}

.cookie-save-prefs:hover { background: var(--amber-light); }


.cookie-settings-trigger {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--navy);
  color: var(--amber);
  border: 1px solid rgba(232,160,32,0.3);
  border-radius: var(--radius-md);
  padding: 0.5rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  z-index: 899;
  display: none;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.cookie-settings-trigger.visible { display: flex; }
.cookie-settings-trigger:hover { background: var(--navy-mid); }



@media (max-width: 1024px) {
  .home-bento-large { grid-column: span 12; }
  .home-bento-small { grid-column: span 6; }
  .home-bento-medium { grid-column: span 7; }
  .home-bento-download { grid-column: span 5; }

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

@media (max-width: 900px) {
  .home-hero-content {
    grid-template-columns: 1fr;
    padding-top: 100px;
  }

  .home-hero-right { display: none; }

  .home-about-grid,
  .about-story-grid,
  .about-method-inner,
  .about-values-grid,
  .invest-content-grid,
  .invest-richtwert-grid,
  .invest-zinsen-grid,
  .invest-20yr-grid,
  .request-what-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .invest-section-header { flex-direction: column; gap: 0.4rem; }
  .invest-section-num { font-size: 2rem; }
}

@media (max-width: 768px) {
  .global-nav-links { display: none; }
  .global-hamburger { display: flex; }

  .home-bento-large,
  .home-bento-small,
  .home-bento-medium,
  .home-bento-download { grid-column: span 12; }

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

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

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

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

  .request-form-row { grid-template-columns: 1fr; }
  .request-checkbox-grid { grid-template-columns: 1fr; }
  .request-form-bottom { flex-direction: column; }
  .request-submit-btn { width: 100%; justify-content: center; }

  .contact-form-bottom-row { flex-direction: column; }
  .contact-submit-btn { width: 100%; justify-content: center; }

  .global-nav { padding: 0 var(--space-md); }

  .invest-compare-row { font-size: 0.78rem; }
}

@media (max-width: 480px) {
  .global-footer-grid { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: 1fr; }
  .request-what-cards { grid-template-columns: 1fr 1fr; }

  .home-hero-actions { flex-direction: column; }
  .home-hero-btn-primary,
  .home-hero-btn-secondary { width: 100%; justify-content: center; }

  .global-sidebar-cta { display: none; }

  .cookie-consent-card { right: 0.75rem; bottom: 0.75rem; }

  .invest-anchor-nav { gap: 0.4rem; }
  .invest-anchor-nav a { font-size: 0.78rem; padding: 0.3rem 0.7rem; }
}