/* ===================================================
   voltarem — Main Stylesheet
   =================================================== */


:root {
  --color-bg: #F4F3EF;
  --color-surface: #FAFAF7;
  --color-primary: #1A1A2E;
  --color-secondary: #2D4A6B;
  --color-accent: #4A7C59;
  --color-accent-light: #6B9E78;
  --color-accent-pale: #E8F2EB;
  --color-text: #1E1E2C;
  --color-text-muted: #5A5A72;
  --color-border: #D8D6CE;
  --color-card: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(26,26,46,0.06), 0 1px 2px rgba(26,26,46,0.04);
  --shadow-md: 0 4px 12px rgba(26,26,46,0.08), 0 2px 6px rgba(26,26,46,0.05);
  --shadow-lg: 0 12px 32px rgba(26,26,46,0.10), 0 4px 12px rgba(26,26,46,0.06);
  --shadow-xl: 0 24px 48px rgba(26,26,46,0.12), 0 8px 20px rgba(26,26,46,0.08);
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --nav-height: 72px;
  --content-max: 680px;
  --content-wide: 960px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
  --space-3xl: 128px;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  background-image: radial-gradient(circle, rgba(45,74,107,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
main { flex: 1; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }


h1, h2, h3, h4, h5 {
  font-family: 'Merriweather', serif;
  color: var(--color-primary);
  line-height: 1.3;
  letter-spacing: -0.02em;
}
p { color: var(--color-text); line-height: 1.75; }
p + p { margin-top: 1em; }

/* ===================================================
   NAVIGATION
   =================================================== */
.main-navigation-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 20px;
  display: flex;
  justify-content: center;
}
.main-navigation-container {
  background: rgba(250,250,247,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 960px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 56px;
  border: 1px solid rgba(216,214,206,0.6);
  position: relative;
  transition: box-shadow 0.3s ease;
}
.main-navigation-container::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--color-accent);
  transition: left 0.4s cubic-bezier(0.4,0,0.2,1), right 0.4s cubic-bezier(0.4,0,0.2,1);
  border-radius: 0 0 2px 2px;
}
.main-navigation-container.nav-scrolled {
  box-shadow: var(--shadow-lg);
}
.main-navigation-container.nav-scrolled::after {
  left: 0;
  right: 0;
}
.main-navigation-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.main-navigation-logo-link:hover { opacity: 0.85; }
.main-navigation-logo-text {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}
.main-navigation-links-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.main-navigation-links-list a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
  position: relative;
}
.main-navigation-links-list a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.main-navigation-links-list a:hover,
.main-navigation-links-list a.nav-active {
  color: var(--color-primary);
  background: rgba(74,124,89,0.08);
}
.main-navigation-links-list a:hover::after,
.main-navigation-links-list a.nav-active::after {
  transform: scaleX(1);
}
.main-navigation-cta-button {
  background: var(--color-accent);
  color: #fff !important;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(74,124,89,0.25);
  white-space: nowrap;
}
.main-navigation-cta-button:hover {
  background: var(--color-accent-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(74,124,89,0.35);
}
.main-navigation-hamburger-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}
.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hidden-on-mobile { display: flex; }

/* ===================================================
   MOBILE MENU
   =================================================== */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26,26,46,0.45);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(2px);
}
.mobile-menu-overlay.is-active {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-panel {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 80%;
  max-width: 320px;
  background: var(--color-surface);
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  padding: 0;
  box-shadow: var(--shadow-xl);
  border-right: 1px solid var(--color-border);
}
.mobile-menu-panel.is-open {
  transform: translateX(0);
}
.mobile-menu-header-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
}
.mobile-menu-close-button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--color-text-muted);
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
}
.mobile-menu-close-button:hover {
  color: var(--color-primary);
  background: var(--color-accent-pale);
}
.mobile-menu-links-list {
  flex: 1;
  padding: 16px 0;
  overflow-y: auto;
}
.mobile-menu-link-item {
  display: block;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
  border-left: 3px solid transparent;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.mobile-menu-link-item:hover {
  color: var(--color-accent);
  background: var(--color-accent-pale);
  padding-left: 28px;
  border-left-color: var(--color-accent);
}
.mobile-menu-links-list li {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-menu-panel.is-open .mobile-menu-links-list li:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.05s; }
.mobile-menu-panel.is-open .mobile-menu-links-list li:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.1s; }
.mobile-menu-panel.is-open .mobile-menu-links-list li:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.15s; }
.mobile-menu-panel.is-open .mobile-menu-links-list li:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.2s; }
.mobile-menu-panel.is-open .mobile-menu-links-list li:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.25s; }
.mobile-menu-cta-button {
  display: block;
  margin: 16px 24px 24px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  text-align: center;
  transition: background 0.2s ease;
  min-height: 44px;
}
.mobile-menu-cta-button:hover {
  background: var(--color-accent-light);
}

/* ===================================================
   LAYOUT HELPERS
   =================================================== */
.homepage-section-narrow-wrapper {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.homepage-section-label-small {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 8px;
}
.homepage-section-label-small::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--color-accent);
  flex-shrink: 0;
}
.homepage-section-label-small--light {
  color: rgba(255,255,255,0.75);
}
.homepage-section-label-small--light::before {
  background: rgba(255,255,255,0.5);
}
.homepage-section-heading {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  line-height: 1.25;
}

/* ===================================================
   HERO SECTION
   =================================================== */
.homepage-hero-section {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding: calc(var(--nav-height) + 60px) var(--space-md) var(--space-xl);
  max-width: var(--content-wide);
  margin: 0 auto;
  position: relative;
}
.homepage-hero-section::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(74,124,89,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.homepage-hero-section::after {
  content: '';
  position: absolute;
  bottom: 5%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45,74,107,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.homepage-hero-content-wrapper {
  position: relative;
  z-index: 1;
}
.homepage-hero-label-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-accent-pale);
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  border: 1px solid rgba(74,124,89,0.2);
}
.homepage-hero-label-dot {
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}
.homepage-hero-headline {
  font-family: 'Merriweather', serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
}
.homepage-hero-headline .word {
  display: inline-block;
  overflow: hidden;
}
.homepage-hero-headline .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotate(3deg);
  animation: char-reveal 0.6s cubic-bezier(0.22,1,0.36,1) forwards;
}
@keyframes char-reveal {
  to { opacity: 1; transform: translateY(0) rotate(0deg); }
}
.homepage-hero-subtext {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  max-width: 520px;
}
.homepage-hero-actions-row {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}
.homepage-hero-primary-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 16px rgba(74,124,89,0.3), 0 1px 4px rgba(74,124,89,0.2);
  min-height: 44px;
}
.homepage-hero-primary-button:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74,124,89,0.35), 0 2px 8px rgba(74,124,89,0.2);
}
.homepage-hero-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, gap 0.2s ease;
  min-height: 44px;
}
.homepage-hero-secondary-link:hover {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
  gap: 12px;
}
.homepage-hero-indicators-row {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.homepage-hero-indicator-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-text-muted);
}
.homepage-hero-indicator-icon {
  color: var(--color-accent);
  font-size: 0.85rem;
}
.homepage-hero-visual-panel {
  position: relative;
  z-index: 1;
}
.homepage-hero-visual-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
}
.homepage-hero-visual-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.homepage-hero-visual-card:hover .homepage-hero-visual-image {
  transform: scale(1.03);
}
.homepage-hero-visual-overlay-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(250,250,247,0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
}
.homepage-hero-visual-overlay-tag i {
  color: var(--color-accent);
}
.homepage-hero-floating-note {
  position: absolute;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  max-width: 200px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.homepage-hero-floating-note--top {
  top: -20px;
  right: -20px;
}
.homepage-hero-floating-note--bottom {
  bottom: 60px;
  right: -20px;
}
.floating-note-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 4px;
}

/* ===================================================
   PROBLEM SECTION
   =================================================== */
.homepage-problem-section {
  padding: var(--space-3xl) 0;
  background: var(--color-surface);
  position: relative;
}
.homepage-problem-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-border), transparent);
}
.homepage-problem-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-border), transparent);
}
.homepage-problem-intro-text {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 620px;
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}
.homepage-problem-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.homepage-problem-image-side img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}
.homepage-problem-point-item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  align-items: flex-start;
}
.homepage-problem-point-item:last-child { margin-bottom: 0; }
.homepage-problem-point-icon {
  width: 40px;
  height: 40px;
  background: var(--color-accent-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 0.9rem;
  flex-shrink: 0;
  border: 1px solid rgba(74,124,89,0.15);
}
.homepage-problem-point-item strong {
  display: block;
  font-family: 'Merriweather', serif;
  font-size: 0.95rem;
  color: var(--color-primary);
  margin-bottom: 6px;
  font-weight: 700;
}
.homepage-problem-point-item p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.7;
}

/* ===================================================
   APPROACH SECTION
   =================================================== */
.homepage-approach-section {
  padding: var(--space-3xl) 0;
}
.homepage-approach-intro {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 620px;
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}
.homepage-approach-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
.homepage-approach-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  position: relative;
  cursor: default;
}
.homepage-approach-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(74,124,89,0.25);
}
.homepage-approach-card-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--color-accent-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
  border: 1px solid rgba(74,124,89,0.15);
  transition: background 0.3s ease;
}
.homepage-approach-card:hover .homepage-approach-card-icon-wrap {
  background: var(--color-accent);
  color: #fff;
}
.homepage-approach-card h3 {
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.homepage-approach-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}


[data-tooltip] {
  position: relative;
}
[data-tooltip]::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--color-primary);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  white-space: normal;
  max-width: 240px;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 100;
  box-shadow: var(--shadow-md);
}
[data-tooltip]::after {
  content: '';
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  border: 5px solid transparent;
  border-top-color: var(--color-primary);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 100;
}
[data-tooltip]:hover::before,
[data-tooltip]:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.site-tooltip-popup {
  display: none;
}

/* ===================================================
   PROCESS SECTION
   =================================================== */
.homepage-process-section {
  padding: var(--space-3xl) 0;
  background: var(--color-surface);
  position: relative;
}
.homepage-process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-border), transparent);
}
.homepage-process-steps-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.homepage-process-step-item {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.homepage-process-step-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.homepage-process-step-number-badge {
  font-family: 'Merriweather', serif;
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--color-accent);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 8px;
}
.homepage-process-step-number-badge::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}
.homepage-process-step-connector { display: none; }
.homepage-process-step-connector--last { display: none; }
.homepage-process-step-icon-circle {
  width: 40px;
  height: 40px;
  background: var(--color-accent-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 0.95rem;
  margin-bottom: var(--space-sm);
  border: 1px solid rgba(74,124,89,0.15);
}
.homepage-process-step-content-card h3 {
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.homepage-process-step-content-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}
.homepage-process-cta-link-row {
  text-align: center;
}
.homepage-process-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.95rem;text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}
.homepage-process-detail-link:hover {
  gap: 12px;
  color: var(--color-accent-light);
  border-bottom-color: var(--color-accent-light);
}

/* ===================================================
   FEATURES SECTION
   =================================================== */
.homepage-features-section {
  padding: var(--space-3xl) 0;
}
.homepage-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.homepage-feature-highlight-box {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.homepage-feature-highlight-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--color-accent), var(--color-accent-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.homepage-feature-highlight-box:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(74,124,89,0.2);
}
.homepage-feature-highlight-box:hover::before {
  transform: scaleX(1);
}
.homepage-feature-icon {
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  display: block;
  transition: transform 0.3s ease;
}
.homepage-feature-highlight-box:hover .homepage-feature-icon {
  transform: scale(1.1);
}
.homepage-feature-title {
  font-family: 'Merriweather', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
  line-height: 1.4;
}
.homepage-feature-description {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin: 0;
}

/* ===================================================
   VISUAL BREAK SECTION
   =================================================== */
.homepage-visual-break-section {
  padding: var(--space-2xl) var(--space-md);
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
}
.homepage-visual-break-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(74,124,89,0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.homepage-visual-break-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}
.homepage-visual-break-image {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255,255,255,0.1);
}
.homepage-visual-break-overlay-content {
  padding: var(--space-lg) 0;
}
.homepage-visual-break-quote {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  line-height: 1.6;
  font-style: italic;
  position: relative;
  padding-left: var(--space-lg);
}
.homepage-visual-break-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-accent);
  border-radius: 2px;
}

/* ===================================================
   FOR WHOM SECTION
   =================================================== */
.homepage-for-whom-section {
  padding: var(--space-3xl) 0;
  background: var(--color-surface);
  position: relative;
}
.homepage-for-whom-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-border), transparent);
}
.homepage-for-whom-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: center;
}
.homepage-for-whom-image-column img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}
.homepage-for-whom-intro {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}
.homepage-for-whom-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.homepage-for-whom-list-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.6;
  transition: color 0.2s ease;
}
.homepage-for-whom-list-item:first-child {
  padding-top: 0;
}
.homepage-for-whom-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.homepage-for-whom-check-icon {
  color: var(--color-accent);
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: var(--color-accent-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  border: 1px solid rgba(74,124,89,0.2);
}

/* ===================================================
   CTA SPLIT SECTION
   =================================================== */
.homepage-cta-split-section {
  padding: var(--space-3xl) var(--space-md);
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  position: relative;
  overflow: hidden;
}
.homepage-cta-split-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(74,124,89,0.1) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.homepage-cta-split-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74,124,89,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.homepage-cta-split-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}
.homepage-cta-split-heading {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-md);
  line-height: 1.3;
}
.homepage-cta-split-description {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin: 0;
}
.homepage-cta-split-primary-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 16px rgba(74,124,89,0.4);
  margin-bottom: var(--space-sm);
  display: block;
  text-align: center;
  min-height: 44px;
}
.homepage-cta-split-primary-button:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74,124,89,0.5);
}
.homepage-cta-split-supporting-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  margin-top: var(--space-sm);
}
.homepage-cta-split-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
}
.homepage-cta-split-secondary-link:hover {
  color: #fff;
  gap: 12px;
  border-bottom-color: rgba(255,255,255,0.5);
}

/* ===================================================
   INNER PAGE HERO
   =================================================== */
.inner-page-hero-section {
  padding: calc(var(--nav-height) + 60px) var(--space-md) var(--space-xl);
  max-width: var(--content-wide);
  margin: 0 auto;
  text-align: center;
}
.inner-page-hero-content-wrapper {
  max-width: 640px;
  margin: 0 auto;
}
.inner-page-hero-headline {
  font-family: 'Merriweather', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
}
.inner-page-hero-subtext {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}

/* ===================================================
   CUM GANDIM PAGE
   =================================================== */
.cum-gandim-principle-section {
  padding: var(--space-xl) 0 var(--space-3xl);
}
.cum-gandim-principle-large-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-xl);
  align-items: start;
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--color-border);
}
.cum-gandim-principle-large-item:last-child {
  border-bottom: none;
}
.cum-gandim-principle-large-item--alt {
  background: none;
}
.cum-gandim-principle-number-display {
  font-family: 'Merriweather', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--color-accent-pale);
  line-height: 1;
  letter-spacing: -0.05em;
  user-select: none;
  position: relative;
}
.cum-gandim-principle-number-display::after {
  content: attr(data-num);
  position: absolute;
  inset: 0;
  color: var(--color-accent);
  opacity: 0.15;
}
.cum-gandim-principle-content-block h2 {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}
.cum-gandim-principle-content-block p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}
.cum-gandim-contrast-section {
  padding: var(--space-3xl) 0;
  background: var(--color-surface);
  position: relative;
}
.cum-gandim-contrast-section::before,
.cum-gandim-contrast-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-border), transparent);
}
.cum-gandim-contrast-section::before { top: 0; }
.cum-gandim-contrast-section::after { bottom: 0; }
.cum-gandim-contrast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.cum-gandim-contrast-column {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}
.cum-gandim-contrast-column--not {
  border-top: 3px solid #E8B4B8;
}
.cum-gandim-contrast-column--yes {
  border-top: 3px solid var(--color-accent);
}
.cum-gandim-contrast-column-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Merriweather', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}
.cum-gandim-contrast-column--not .cum-gandim-contrast-column-header i {
  color: #C9606A;
  background: #FDECEA;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}
.cum-gandim-contrast-column--yes .cum-gandim-contrast-column-header i {
  color: var(--color-accent);
  background: var(--color-accent-pale);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}
.cum-gandim-contrast-list {
  list-style: none;
  padding: 0;
}
.cum-gandim-contrast-list li {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(216,214,206,0.5);
  line-height: 1.5;
}
.cum-gandim-contrast-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.cum-gandim-image-section {
  padding: var(--space-3xl) 0;
}
.cum-gandim-image-text-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.cum-gandim-feature-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}
.cum-gandim-text-column h2 {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}
.cum-gandim-text-column p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}
.cum-gandim-text-column p:last-of-type {
  margin-bottom: var(--space-lg);
}

/* ===================================================
   CUM DECURGE PAGE
   =================================================== */
.cum-decurge-timeline-section {
  padding: var(--space-xl) 0 var(--space-3xl);
}
.cum-decurge-timeline-container {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cum-decurge-timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: var(--space-lg);
  align-items: start;
  position: relative;
}
.cum-decurge-timeline-left-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: var(--space-lg);
}
.cum-decurge-timeline-step-badge {
  background: var(--color-accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(74,124,89,0.25);
  position: relative;
  z-index: 1;
}
.cum-decurge-timeline-vertical-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--color-accent), var(--color-border));
  min-height: 60px;
  margin-top: 8px;
  border-radius: 2px;
}
.cum-decurge-timeline-vertical-line--last {
  background: linear-gradient(to bottom, var(--color-accent), transparent);
}
.cum-decurge-timeline-right-content {
  padding: var(--space-lg) 0 var(--space-xl);
}
.cum-decurge-timeline-content-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
}
.cum-decurge-timeline-content-card::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 28px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 8px 0;
  border-color: transparent var(--color-border) transparent transparent;
}
.cum-decurge-timeline-content-card::after {
  content: '';
  position: absolute;
  left: -6px;
  top: 29px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 7px 7px 0;
  border-color: transparent var(--color-card) transparent transparent;
}
.cum-decurge-timeline-content-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.cum-decurge-timeline-card-icon {
  width: 44px;
  height: 44px;
  background: var(--color-accent-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1rem;
  margin-bottom: var(--space-md);
  border: 1px solid rgba(74,124,89,0.15);
}
.cum-decurge-timeline-content-card h2 {
  font-family: 'Merriweather', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}
.cum-decurge-timeline-content-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}
.cum-decurge-timeline-card-detail-row {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  flex-wrap: wrap;
}
.cum-decurge-timeline-card-detail-row span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 500;
}
.cum-decurge-timeline-card-detail-row i {
  color: var(--color-accent);
  font-size: 0.75rem;
}
.cum-decurge-image-section {
  padding: var(--space-3xl) 0;
  background: var(--color-surface);
  position: relative;
}
.cum-decurge-image-section::before,
.cum-decurge-image-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-border), transparent);
}
.cum-decurge-image-section::before { top: 0; }
.cum-decurge-image-section::after { bottom: 0; }
.cum-decurge-image-feature-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.cum-decurge-feature-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}
.cum-decurge-image-feature-text h2 {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}
.cum-decurge-image-feature-text p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

/* ===================================================
   FAQ PAGE
   =================================================== */
.faq-main-section {
  padding: var(--space-xl) 0 var(--space-3xl);
}
.faq-category-block {
  margin-bottom: var(--space-2xl);
}
.faq-category-heading {
  font-family: 'Merriweather', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-accent);
  display: inline-block;
}
.faq-accordion-container {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-accordion-item {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-card);
  transition: background 0.2s ease;
}
.faq-accordion-item:last-child {
  border-bottom: none;
}
.faq-accordion-item.is-open {
  background: var(--color-surface);
}
.faq-accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  text-align: left;
  min-height: 56px;
  transition: background 0.2s ease;
}
.faq-accordion-trigger:hover {
  background: rgba(74,124,89,0.04);
}
.faq-accordion-trigger span {
  font-family: 'Merriweather', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.4;
  flex: 1;
}
.faq-accordion-icon {
  color: var(--color-accent);
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-accordion-item.is-open .faq-accordion-icon {
  transform: rotate(45deg);
}
.faq-accordion-content-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
  padding: 0 var(--space-lg);
}
.faq-accordion-content-panel.is-open {
  max-height: 600px;
  padding: 0 var(--space-lg) var(--space-md);
}
.faq-accordion-content-panel p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}
.faq-contact-cta-block {
  background: var(--color-accent-pale);
  border: 1px solid rgba(74,124,89,0.2);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  text-align: center;
  margin-top: var(--space-xl);
}
.faq-contact-cta-block p {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

/* ===================================================
   CONTACT PAGE
   =================================================== */
.contact-mission-quote-section {
  padding: var(--space-xl) 0;
}
.contact-mission-quote-card {
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-2xl);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.contact-mission-quote-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(74,124,89,0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.contact-mission-quote-icon {
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  opacity: 0.7;
  position: relative;
  z-index: 1;
}
.contact-mission-quote-text {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.contact-mission-quote-source {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-style: normal;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.contact-main-section {
  padding: var(--space-xl) 0 var(--space-3xl);
}
.contact-page-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}
.contact-form-section-heading {
  font-family: 'Merriweather', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}
.contact-form-intro-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}
.contact-chat-form-wrapper {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
}
.contact-chat-form-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.contact-chat-question-bubble {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.contact-chat-bubble-avatar {
  width: 32px;
  height: 32px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.contact-chat-bubble-text {
  background: var(--color-accent-pale);
  border: 1px solid rgba(74,124,89,0.2);
  border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
  padding: 10px 16px;
  font-size: 0.88rem;
  color: var(--color-text);
  font-weight: 500;
  line-height: 1.5;
  max-width: 85%;
}
.contact-chat-reply-field-wrapper {
  padding-left: 42px;
}
.contact-form-field-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}
.contact-chat-reply-input,
.contact-chat-reply-textarea {
  width: 100%;
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm) var(--radius-sm) var(--radius-md) var(--radius-md);
  padding: 12px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: var(--color-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  min-height: 44px;
}
.contact-chat-reply-input:focus,
.contact-chat-reply-textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(74,124,89,0.12);
}
.contact-chat-reply-textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form-field-error-message {
  font-size: 0.78rem;
  color: #C9606A;
  font-weight: 500;
  min-height: 16px;
  display: block;
}
.contact-chat-privacy-row {
  padding-left: 0;
}
.contact-form-field-group--checkbox {
  flex-direction: column;
}
.contact-chat-privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.contact-chat-privacy-checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-chat-privacy-label-text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.contact-privacy-link {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}
.contact-privacy-link:hover {
  color: var(--color-accent-light);
}
.contact-chat-send-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-accent);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 14px rgba(74,124,89,0.3);
  min-height: 44px;
  align-self: flex-end;
}
.contact-chat-send-button:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74,124,89,0.4);
}
.contact-info-section-heading {
  font-family: 'Merriweather', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
}
.contact-info-detail-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  margin-bottom: var(--space-lg);
}
.contact-info-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--color-accent-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 0.9rem;
  flex-shrink: 0;
  border: 1px solid rgba(74,124,89,0.15);
}
.contact-info-detail-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}
.contact-info-detail-item a,
.contact-info-detail-item address {
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.6;
  transition: color 0.2s ease;
}
.contact-info-detail-item a:hover {
  color: var(--color-accent);
}
.contact-map-wrapper {
  margin-top: var(--space-lg);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

/* ===================================================
   THANKS PAGE
   =================================================== */
.thanks-page-main-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 40px) var(--space-md) var(--space-xl);
}
.thanks-page-content-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.thanks-page-icon-circle {
  width: 72px;
  height: 72px;
  background: var(--color-accent-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 2rem;
  margin: 0 auto var(--space-lg);
  border: 2px solid rgba(74,124,89,0.2);
  animation: icon-pop 0.5s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes icon-pop {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.thanks-page-headline {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}
.thanks-page-description {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-xl);
}
.thanks-page-countdown-wrapper {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
}
.thanks-page-countdown-text {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}
.thanks-page-countdown-progress-bar {
  height: 4px;
  background: var(--color-border);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.thanks-page-countdown-progress-fill {
  height: 100%;
  background: var(--color-accent);
  border-radius: var(--radius-full);
  transition: width 0.9s linear;
}
.thanks-page-return-now-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
  min-height: 44px;
}
.thanks-page-return-now-link:hover {
  gap: 12px;
  color: var(--color-accent-light);
}

/* ===================================================
   LEGAL PAGES
   =================================================== */
.legal-page-hero-section {
  padding: calc(var(--nav-height) + 40px) var(--space-md) var(--space-xl);
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}
.legal-page-hero-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
}
.legal-page-document-type-badge {
  display: inline-flex;
  align-items: center;
  background: var(--color-accent-pale);
  color: var(--color-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
  border: 1px solid rgba(74,124,89,0.2);
}
.legal-page-document-type-badge--terms {
  background: rgba(45,74,107,0.08);
  color: var(--color-secondary);
  border-color: rgba(45,74,107,0.15);
}
.legal-page-document-type-badge--cookies {
  background: rgba(26,26,46,0.06);
  color: var(--color-primary);
  border-color: rgba(26,26,46,0.12);
}
.legal-page-main-title {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.legal-page-meta-row {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  align-items: center;
}
.legal-page-effective-date,
.legal-page-operator-name {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-weight: 500;
}
.legal-page-effective-date i,
.legal-page-operator-name i {
  color: var(--color-accent);
  font-size: 0.8rem;
}
.legal-page-intro-paragraph {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-top: var(--space-md);
  max-width: 680px;
}


.legal-timeline-section {
  padding: var(--space-xl) var(--space-md) var(--space-3xl);
}
.legal-timeline-wrapper {
  max-width: var(--content-wide);
  margin: 0 auto;
  position: relative;
  padding-left: 160px;
}
.legal-timeline-wrapper::before {
  content: '';
  position: absolute;
  left: 120px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-accent), var(--color-border), transparent);
}
.legal-timeline-entry {
  display: grid;
  grid-template-columns: 0 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
  position: relative;
}
.legal-timeline-date-marker {
  position: absolute;
  left: -160px;
  top: 4px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  width: 140px;
}
.legal-timeline-date-text {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.legal-timeline-dot {
  width: 10px;
  height: 10px;
  background: var(--color-accent);
  border-radius: 50%;
  border: 2px solid var(--color-bg);
  box-shadow: 0 0 0 2px var(--color-accent);
  position: absolute;
  right: -45px;
  top: 4px;
}
.legal-timeline-content-block {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}
.legal-timeline-content-block h2 {
  font-family: 'Merriweather', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}
.legal-timeline-content-block p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}
.legal-list {
  list-style: none;
  padding: 0;
  margin: var(--space-sm) 0;
}
.legal-list li {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  padding: 6px 0 6px 20px;
  position: relative;
  border-bottom: 1px solid rgba(216,214,206,0.4);
}
.legal-list li:last-child {
  border-bottom: none;
}
.legal-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: 0.8rem;
}
.legal-inline-link {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}
.legal-inline-link:hover {
  color: var(--color-accent-light);
}


.terms-accordion-section {
  padding: var(--space-xl) var(--space-md) var(--space-3xl);
}
.terms-content-wrapper {
  max-width: var(--content-wide);
  margin: 0 auto;
}
.terms-section-block {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--space-lg);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--color-border);
  align-items: start;
}
.terms-section-block:last-child {
  border-bottom: none;
}
.terms-section-letter-marker {
  font-family: 'Merriweather', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-accent-pale);
  line-height: 1;
  user-select: none;
  border: 2px solid var(--color-accent-pale);
  border-radius: var(--radius-sm);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-accent);
  background: var(--color-accent-pale);
  flex-shrink: 0;
}
.terms-section-text-content h2 {
  font-family: 'Merriweather', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}
.terms-section-text-content p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}
.terms-contact-address {
  font-style: normal;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  margin-top: var(--space-sm);
}


.cookies-compact-section {
  padding: var(--space-xl) var(--space-md) var(--space-3xl);
}
.cookies-content-wrapper {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}
.cookies-intro-block {
  background: var(--color-surface);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: var(--space-md) var(--space-lg);
}
.cookies-intro-block p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin: 0;
}
.cookies-category-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}
.cookies-category-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}
.cookies-category-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.cookies-category-icon--essential {
  background: rgba(45,74,107,0.1);
  color: var(--color-secondary);
}
.cookies-category-icon--analytics {
  background: var(--color-accent-pale);
  color: var(--color-accent);
}
.cookies-category-icon--marketing {
  background: rgba(201,96,106,0.1);
  color: #C9606A;
}
.cookies-category-card-header h2 {
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}
.cookies-category-status {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}
.cookies-category-status--always {
  background: rgba(45,74,107,0.1);
  color: var(--color-secondary);
}
.cookies-category-status--optional {
  background: var(--color-accent-pale);
  color: var(--color-accent);
}
.cookies-category-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}
.cookies-table-wrapper {
  overflow-x: auto;
  margin: var(--space-md) 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}
.cookies-detail-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}
.cookies-detail-table th {
  background: var(--color-surface);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--color-border);
}
.cookies-detail-table td {
  padding: 10px 14px;
  color: var(--color-text);
  border-bottom: 1px solid rgba(216,214,206,0.5);
  line-height: 1.5;
}
.cookies-detail-table tr:last-child td {
  border-bottom: none;
}
.cookies-category-note {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin-top: var(--space-sm);
  margin-bottom: 0;
}
.cookies-management-block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}
.cookies-management-block h2 {
  font-family: 'Merriweather', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}
.cookies-management-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin: var(--space-md) 0;
}
.cookies-management-option-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}
.cookies-management-option-icon {
  width: 36px;
  height: 36px;
  background: var(--color-accent-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.cookies-management-option-item strong {
  display: block;
  font-size: 0.88rem;
  color: var(--color-primary);
  margin-bottom: 4px;
  font-weight: 600;
}
.cookies-management-option-item p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}
.cookies-management-note {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin: 0;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border);
}
.cookies-legal-reference-block {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}
.cookies-legal-reference-block h2 {
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}
.cookies-legal-reference-block p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* ===================================================
   FOOTER
   =================================================== */
.main-site-footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.7);
  margin-top: auto;
  position: relative;
}
.main-site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--color-accent), var(--color-secondary), var(--color-accent));
}
.main-site-footer-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-2xl);
}
.footer-logo-link {
  margin-bottom: var(--space-md);
  display: inline-flex;
}
.main-site-footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}
.main-site-footer-address {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.9;
}
.main-site-footer-address a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}
.main-site-footer-address a:hover {
  color: var(--color-accent-light);
}
.main-site-footer-column-heading {
  font-family: 'Merriweather', serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-md);
}
.main-site-footer-nav-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.main-site-footer-nav-list a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
  padding: 2px 0;
}
.main-site-footer-nav-list a:hover {
  color: var(--color-accent-light);
  padding-left: 6px;
}
.main-site-footer-bottom-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-md) var(--space-md);
  max-width: var(--content-wide);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.footer-legal-links {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}
.footer-legal-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-legal-links a:hover {
  color: var(--color-accent-light);
}

/* ===================================================
   COOKIE CONSENT
   =================================================== */
.cookie-consent-notification-icon {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 900;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid rgba(255,255,255,0.1);
}
.cookie-consent-notification-icon:hover {
  transform: scale(1.1);
  background: var(--color-secondary);
  box-shadow: var(--shadow-xl);
}
.cookie-consent-badge-indicator {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 14px;
  height: 14px;
  background: #E8B4B8;
  border-radius: 50%;
  border: 2px solid var(--color-bg);
  display: none;
  animation: badge-pulse 2s infinite;
}
.cookie-consent-badge-indicator.show-badge {
  display: block;
}
@keyframes badge-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}
.cookie-consent-slide-panel {
  position: fixed;
  bottom: 88px;
  right: 24px;
  width: 340px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  z-index: 901;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease;
  overflow: hidden;
}
.cookie-consent-slide-panel.panel-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}
.cookie-consent-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-md) var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}
.cookie-consent-panel-header h3 {
  font-family: 'Merriweather', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
}
.cookie-consent-panel-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-muted);
  font-size: 1rem;
  padding: 4px;
  transition: color 0.2s ease;
  min-width: 32px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xs);
}
.cookie-consent-panel-close:hover {
  color: var(--color-primary);
  background: var(--color-surface);
}
.cookie-consent-panel-description {
  padding: var(--space-sm) var(--space-md);
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.cookie-consent-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px var(--space-md);
  border-top: 1px solid rgba(216,214,206,0.5);
  gap: var(--space-sm);
}
.cookie-consent-toggle-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.cookie-consent-toggle-info strong {
  font-size: 0.82rem;
  color: var(--color-text);
  font-weight: 600;
}
.cookie-consent-toggle-info span {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}
.cookie-consent-always-on-badge {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--color-accent);
  background: var(--color-accent-pale);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  border: 1px solid rgba(74,124,89,0.2);
}
.cookie-consent-toggle-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
  cursor: pointer;
}
.cookie-consent-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-consent-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--color-border);
  border-radius: var(--radius-full);
  transition: background 0.3s ease;
}
.cookie-consent-toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.cookie-consent-toggle-switch input:checked + .cookie-consent-toggle-slider {
  background: var(--color-accent);
}
.cookie-consent-toggle-switch input:checked + .cookie-consent-toggle-slider::before {
  transform: translateX(18px);
}
.cookie-consent-panel-actions {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
}
.cookie-consent-accept-all-button,
.cookie-consent-save-button {
  flex: 1;
  padding: 10px 14px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  min-height: 40px;
}
.cookie-consent-accept-all-button {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(74,124,89,0.25);
}
.cookie-consent-accept-all-button:hover {
  background: var(--color-accent-light);
  transform: translateY(-1px);
}
.cookie-consent-save-button {
  background: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.cookie-consent-save-button:hover {
  background: var(--color-accent-pale);
  border-color: rgba(74,124,89,0.3);
}
.cookie-consent-panel-legal-note {
  padding: var(--space-xs) var(--space-md) var(--space-md);
  font-size: 0.72rem;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.5;
}
.cookie-consent-panel-legal-note a {
  color: var(--color-accent);
  text-decoration: underline;
}

/* ===================================================
   SCROLL REVEAL ANIMATIONS
   =================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-on-scroll-delay-1 { transition-delay: 0.1s; }
.reveal-on-scroll-delay-2 { transition-delay: 0.2s; }
.reveal-on-scroll-delay-3 { transition-delay: 0.3s; }
.reveal-on-scroll-delay-4 { transition-delay: 0.4s; }

/* ===================================================
   RESPONSIVE — TABLET (max 1024px)
   =================================================== */
@media (max-width: 1024px) {
  .homepage-hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: var(--space-xl);
    gap: var(--space-xl);
  }
  .homepage-hero-visual-panel {
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }
  .homepage-hero-floating-note--top,
  .homepage-hero-floating-note--bottom {
    display: none;
  }
  .homepage-problem-split-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .homepage-problem-image-side img {
    height: 280px;
  }
  .homepage-approach-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
  .homepage-features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .homepage-visual-break-inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .homepage-visual-break-image {
    height: 260px;
  }
  .homepage-for-whom-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .homepage-for-whom-image-column img {
    height: 280px;
  }
  .homepage-cta-split-inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .legal-timeline-wrapper {
    padding-left: 100px;
  }
  .legal-timeline-wrapper::before {
    left: 60px;
  }
  .legal-timeline-date-marker {
    left: -100px;
    width: 80px;
  }
  .legal-timeline-dot {
    right: -25px;
  }
  .cum-gandim-image-text-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .cum-gandim-feature-image {
    height: 260px;
  }
  .cum-decurge-image-feature-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .cum-decurge-feature-image {
    height: 260px;
  }
  .contact-page-layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .main-site-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
  .main-site-footer-brand-column {
    grid-column: 1 / -1;
  }
}

/* ===================================================
   RESPONSIVE — MOBILE (max 768px)
   =================================================== */
@media (max-width: 768px) {
  :root {
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 80px;
  }
  .main-navigation-links-list,
  .hidden-on-mobile {
    display: none;
  }
  .main-navigation-hamburger-button {
    display: flex;
  }
  .main-navigation-container {
    padding: 0 16px;
  }
  .homepage-hero-headline {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }
  .homepage-hero-visual-image {
    height: 280px;
  }
  .homepage-approach-cards-grid {
    grid-template-columns: 1fr;
  }
  .homepage-process-steps-container {
    grid-template-columns: 1fr;
  }
  .homepage-features-grid {
    grid-template-columns: 1fr;
  }
  .homepage-visual-break-section {
    padding: var(--space-xl) var(--space-md);
  }
  .cum-gandim-principle-large-item {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .cum-gandim-principle-number-display {
    font-size: 2.5rem;
  }
  .cum-gandim-contrast-grid {
    grid-template-columns: 1fr;
  }
  .cum-decurge-timeline-item {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  .cum-decurge-timeline-left-side {
    flex-direction: row;
    padding-top: 0;
    align-items: center;
    gap: var(--space-sm);
  }
  .cum-decurge-timeline-vertical-line {
    display: none;
  }
  .cum-decurge-timeline-content-card::before,
  .cum-decurge-timeline-content-card::after {
    display: none;
  }
  .legal-timeline-wrapper {
    padding-left: 0;
  }
  .legal-timeline-wrapper::before {
    display: none;
  }
  .legal-timeline-entry {
    grid-template-columns: 1fr;
  }
  .legal-timeline-date-marker {
    position: static;
    flex-direction: row;
    align-items: center;
    width: auto;
    margin-bottom: var(--space-sm);
  }
  .legal-timeline-dot {
    position: static;
    right: auto;
    top: auto;
  }
  .terms-section-block {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .cookies-management-options-grid {
    grid-template-columns: 1fr;
  }
  .main-site-footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding: var(--space-xl) var(--space-md);
  }
  .main-site-footer-brand-column {
    grid-column: auto;
  }
  .main-site-footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: var(--space-xs);
  }
  .cookie-consent-slide-panel {
    width: calc(100vw - 48px);
    right: 16px;
    bottom: 84px;
  }
  .contact-mission-quote-card {
    padding: var(--space-lg);
  }
  .homepage-cta-split-inner {
    gap: var(--space-lg);
  }
  .inner-page-hero-section {
    padding-top: calc(var(--nav-height) + 40px);
  }
}

/* ===================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   =================================================== */
@media (max-width: 480px) {
  .homepage-hero-actions-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .homepage-hero-primary-button {
    width: 100%;
    justify-content: center;
  }
  .homepage-hero-indicators-row {
    gap: var(--space-sm);
  }
  .faq-accordion-trigger {
    padding: var(--space-md);
  }
  .contact-chat-form-wrapper {
    padding: var(--space-md);
  }
  .homepage-section-narrow-wrapper {
    padding: 0 var(--space-sm);
  }
  .thanks-page-content-card {
    padding: var(--space-xl) var(--space-md);
  }
}

/* ===================================================
   PRINT STYLES
   =================================================== */
@media print {
  .main-navigation-wrapper,
  .mobile-menu-panel,
  .mobile-menu-overlay,
  .cookie-consent-notification-icon,
  .cookie-consent-slide-panel {
    display: none !important;
  }
  body {
    background: #fff;
    background-image: none;
  }
}