/* ============================================================
   QyxarnixHub - Main Stylesheet
   Neo Brutalist Design System
   ============================================================ */


:root {
  --color-primary: #1a3a2a;
  --color-primary-light: #2d5c42;
  --color-primary-ultra-light: #e8f4ee;
  --color-secondary: #f5f0e8;
  --color-accent: #d4a853;
  --color-accent-dark: #b8892e;
  --color-accent-light: #fdf3dc;
  --color-surface: #faf8f4;
  --color-surface-dark: #f0ece4;
  --color-text-primary: #1a1a18;
  --color-text-secondary: #4a4a42;
  --color-text-muted: #7a7a72;
  --color-border: #1a3a2a;
  --color-border-light: #d0ccc0;
  --color-white: #ffffff;
  --color-dark-card: #1a3a2a;
  --color-dark-card-text: #e8f4ee;

  --shadow-hard-sm: 3px 3px 0 var(--color-primary);
  --shadow-hard-md: 5px 5px 0 var(--color-primary);
  --shadow-hard-lg: 8px 8px 0 var(--color-primary);
  --shadow-hard-accent: 5px 5px 0 var(--color-accent);
  --shadow-soft: 0 4px 20px rgba(26, 58, 42, 0.08);
  --shadow-soft-lg: 0 8px 40px rgba(26, 58, 42, 0.12);

  --border-width: 2px;
  --border-width-thick: 3px;

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

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

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Outfit', sans-serif;

  --nav-height: 80px;
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}


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

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

body {
  font-family: var(--font-body);
  background-color: var(--color-surface);
  color: var(--color-text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

ul {
  list-style: none;
}

address {
  font-style: normal;
}


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

.hero-headline {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-headline em {
  font-style: normal;
  color: var(--color-primary-light);
  position: relative;
}

.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-md);
}

.section-heading.centered-heading {
  text-align: center;
}

.section-subheading {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  max-width: 60ch;
  margin: 0 auto var(--space-lg);
  text-align: center;
  line-height: 1.7;
}

.page-hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: var(--space-sm);
}

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

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


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


.main-navigation {
  position: fixed;
  top: var(--space-sm);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 1160px;
  z-index: 1000;
  transition: background var(--transition-slow), backdrop-filter var(--transition-slow), border-color var(--transition-slow), box-shadow var(--transition-slow);
  border-radius: var(--radius-xl);
}

.main-navigation.scrolled {
  background: rgba(250, 248, 244, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(26, 58, 42, 0.12);
  box-shadow: var(--shadow-soft-lg);
}

.navigation-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-md);
  height: var(--nav-height);
  background: var(--color-white);
  border: var(--border-width-thick) solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-hard-md);
  transition: box-shadow var(--transition-base);
}

.main-navigation.scrolled .navigation-container {
  background: rgba(255, 255, 255, 0.95);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  text-decoration: none;
}

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

.brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.navigation-links {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  transition: color var(--transition-base), background var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
  background: var(--color-primary-ultra-light);
}

.nav-link.nav-cta {
  background: var(--color-primary);
  color: var(--color-white);
  border: var(--border-width) solid var(--color-primary);
  box-shadow: var(--shadow-hard-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.nav-link.nav-cta:hover {
  box-shadow: 2px 2px 0 var(--color-primary);
  transform: translate(1px, 1px);
  background: var(--color-primary-light);
  color: var(--color-white);
}

.nav-link.nav-cta.active {
  background: var(--color-primary);
  color: var(--color-white);
}

.mobile-menu-toggle {
  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;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}


.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-primary);
  z-index: 999;
  clip-path: polygon(100% 0, 100% 0, 100% 0, 100% 0);
  transition: clip-path 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-overlay.is-open {
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
}

.mobile-menu-content {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease 0.3s, transform 0.3s ease 0.3s;
}

.mobile-menu-overlay.is-open .mobile-menu-content {
  opacity: 1;
  transform: translateY(0);
}

.mobile-navigation-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.mobile-navigation-links a {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.02em;
  transition: color var(--transition-base), opacity var(--transition-base);
}

.mobile-navigation-links a:hover {
  color: var(--color-accent);
}


.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 28px;
  border: var(--border-width-thick) solid var(--color-primary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hard-md);
  cursor: pointer;
  transition: box-shadow var(--transition-base), transform var(--transition-base), background var(--transition-base);
}

.primary-button:hover {
  box-shadow: 3px 3px 0 var(--color-primary);
  transform: translate(2px, 2px);
  background: var(--color-primary-light);
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 28px;
  border: var(--border-width-thick) solid var(--color-primary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hard-sm);
  cursor: pointer;
  transition: box-shadow var(--transition-base), transform var(--transition-base), background var(--transition-base);
}

.secondary-button:hover {
  background: var(--color-primary-ultra-light);
  box-shadow: 2px 2px 0 var(--color-primary);
  transform: translate(1px, 1px);
}

.text-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--color-primary);
  font-size: 0.9rem;
  transition: gap var(--transition-base), color var(--transition-base);
}

.text-link-arrow:hover {
  gap: 12px;
  color: var(--color-primary-light);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.welcome-banner {
  min-height: 100vh;
  padding: calc(var(--nav-height) + 4rem) var(--space-md) var(--space-3xl);
  background: var(--color-secondary);
  position: relative;
  overflow: hidden;
}

.welcome-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-primary-ultra-light) 0%, var(--color-secondary) 100%);
  z-index: 0;
}

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

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: var(--space-sm);
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: var(--space-md) 0 var(--space-lg);
  max-width: 50ch;
}

.hero-action-group {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

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

.credential-card {
  background: var(--color-white);
  border: var(--border-width-thick) solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-hard-lg);
  position: relative;
}

.credential-quote-mark {
  font-size: 4rem;
  line-height: 1;
  color: var(--color-accent);
  font-family: Georgia, serif;
  margin-bottom: -1rem;
}

.credential-quote-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
  font-style: italic;
  margin-bottom: var(--space-md);
}

.credential-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.credential-author-avatar {
  width: 44px;
  height: 44px;
  background: var(--color-primary-ultra-light);
  border: var(--border-width) solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.credential-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.credential-author-info strong {
  font-size: 0.875rem;
  color: var(--color-text-primary);
}

.credential-author-info span {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.hero-image-frame {
  border: var(--border-width-thick) solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hard-lg);
  height: 280px;
}

.hero-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  animation: bounceDown 2s ease-in-out infinite;
}

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

/* ============================================================
   PLATFORM INTRODUCTION
   ============================================================ */
.platform-introduction {
  padding: var(--space-3xl) 0;
  background: var(--color-white);
}

.section-label-row {
  margin-bottom: var(--space-sm);
}

.introduction-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-top: var(--space-md);
}

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

.image-with-border {
  position: relative;
}

.section-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border: var(--border-width-thick) solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hard-lg);
}

.image-accent-block {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 80px;
  height: 80px;
  background: var(--color-accent);
  border: var(--border-width-thick) solid var(--color-border);
  border-radius: var(--radius-md);
  z-index: -1;
}

/* ============================================================
   INFO BLOCKS (KEY TOPICS)
   ============================================================ */
.key-topics-section {
  padding: var(--space-3xl) 0;
  background: var(--color-surface);
}

.topics-header {
  text-align: center;
  margin-bottom: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.info-block {
  background: var(--color-white);
  border: var(--border-width-thick) solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-hard-md);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.info-block:hover {
  box-shadow: 3px 3px 0 var(--color-primary);
  transform: translate(2px, 2px);
}

.info-block-accent {
  background: var(--color-accent-light);
  border-color: var(--color-accent-dark);
  box-shadow: 5px 5px 0 var(--color-accent-dark);
}

.info-block-accent:hover {
  box-shadow: 3px 3px 0 var(--color-accent-dark);
}

.info-block-dark {
  background: var(--color-dark-card);
  border-color: var(--color-dark-card);
  color: var(--color-dark-card-text);
  box-shadow: 5px 5px 0 var(--color-accent-dark);
}

.info-block-dark:hover {
  box-shadow: 3px 3px 0 var(--color-accent-dark);
}

.info-block-dark .info-block-title,
.info-block-dark .info-block-text {
  color: var(--color-dark-card-text);
}

.info-block-dark .info-block-link {
  color: var(--color-accent);
}

.info-block-icon {
  width: 52px;
  height: 52px;
  background: var(--color-primary-ultra-light);
  border: var(--border-width) solid var(--color-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.info-block-accent .info-block-icon {
  background: var(--color-accent-light);
  border-color: var(--color-accent-dark);
  color: var(--color-accent-dark);
}

.info-block-dark .info-block-icon {
  background: rgba(255,255,255,0.1);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.info-block-title {
  font-size: 1.15rem;
  font-weight: 700;
}

.info-block-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  flex: 1;
}

.info-block-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
  transition: gap var(--transition-base);
}

.info-block-link:hover {
  gap: 10px;
}

/* ============================================================
   VERTICAL TIMELINE
   ============================================================ */
.learning-path-section {
  padding: var(--space-3xl) 0;
  background: var(--color-white);
}

.learning-path-header {
  text-align: center;
  margin-bottom: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vertical-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.vertical-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-border);
  transform: translateX(-50%);
}

.timeline-entry {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-xl);
  position: relative;
}

.timeline-entry-left {
  justify-content: flex-end;
  padding-right: calc(50% + var(--space-lg));
}

.timeline-entry-right {
  justify-content: flex-start;
  padding-left: calc(50% + var(--space-lg));
}

.timeline-content-card {
  background: var(--color-white);
  border: var(--border-width-thick) solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-hard-md);
  width: 100%;
  max-width: 380px;
  position: relative;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.timeline-content-card:hover {
  box-shadow: 3px 3px 0 var(--color-primary);
  transform: translate(2px, 2px);
}

.timeline-step-number {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--color-accent-dark);
  background: var(--color-accent-light);
  border: var(--border-width) solid var(--color-accent-dark);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.timeline-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.timeline-card-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

.timeline-card-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border: var(--border-width) solid var(--color-border-light);
  border-radius: var(--radius-md);
  margin-top: var(--space-sm);
}

.timeline-connector {
  position: absolute;
  left: 50%;
  top: 2rem;
  width: 20px;
  height: 20px;
  background: var(--color-accent);
  border: var(--border-width-thick) solid var(--color-border);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

/* ============================================================
   GUIDES SECTION
   ============================================================ */
.featured-guides-section {
  padding: var(--space-3xl) 0;
  background: var(--color-surface);
}

.guides-header {
  margin-bottom: var(--space-xl);
  display: flex;
  flex-direction: column;
}

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

.guide-card {
  background: var(--color-white);
  border: var(--border-width-thick) solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hard-md);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.guide-card:hover {
  box-shadow: 3px 3px 0 var(--color-primary);
  transform: translate(2px, 2px);
}

.guide-card-image-wrap {
  position: relative;
  overflow: hidden;
}

.guide-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.guide-card-featured .guide-image {
  height: 260px;
}

.guide-card:hover .guide-image {
  transform: scale(1.04);
}

.guide-category-tag {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--color-accent);
  color: var(--color-text-primary);
  border: var(--border-width) solid var(--color-border);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.guide-card-content {
  padding: var(--space-md);
}

.guide-card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}

.guide-card-excerpt {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

.guide-read-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
  transition: gap var(--transition-base);
}

.guide-read-link:hover {
  gap: 10px;
}

/* ============================================================
   ABOUT PLATFORM
   ============================================================ */
.about-platform-section {
  padding: var(--space-3xl) 0;
  background: var(--color-secondary);
}

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

.about-image-stack {
  position: relative;
}

.about-main-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border: var(--border-width-thick) solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hard-lg);
}

.about-accent-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--color-primary);
  border: var(--border-width-thick) solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow: var(--shadow-hard-md);
  min-width: 140px;
  text-align: center;
}

.about-accent-card i {
  font-size: 1.8rem;
  color: var(--color-accent);
  margin-bottom: 4px;
}

.about-accent-card span {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.4;
}

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

.about-feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin: var(--space-md) 0 var(--space-lg);
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.about-feature-item i {
  color: var(--color-primary-light);
  margin-top: 2px;
  flex-shrink: 0;
}

/* ============================================================
   LOCATION / CONTACT SECTION
   ============================================================ */
.location-contact-section {
  padding: var(--space-3xl) 0;
  background: var(--color-white);
}

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

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

.contact-detail-block {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--color-surface);
  border: var(--border-width) solid var(--color-border-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.contact-detail-block:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-hard-sm);
}

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

.contact-detail-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-detail-text strong {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}

.contact-detail-text span,
.contact-detail-text a {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.contact-detail-text a:hover {
  color: var(--color-primary);
}

.map-frame {
  border: var(--border-width-thick) solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hard-md);
}

.map-frame iframe {
  display: block;
}

/* ============================================================
   PAGE HERO (INNER PAGES)
   ============================================================ */
.page-hero-section {
  padding: calc(var(--nav-height) + 5rem) var(--space-md) var(--space-3xl);
  background: var(--color-secondary);
  border-bottom: var(--border-width-thick) solid var(--color-border);
  text-align: center;
}

.page-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.page-hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-top: var(--space-sm);
}

/* ============================================================
   PRINCIPLES PAGE
   ============================================================ */
.principles-intro-section {
  padding: var(--space-3xl) 0;
  background: var(--color-white);
}

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

.principles-highlight-box {
  background: var(--color-surface);
  border: var(--border-width-thick) solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-hard-md);
  margin-bottom: var(--space-md);
}

.principles-highlight-box i {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.principles-highlight-box h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.principles-highlight-box p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

.principles-highlight-accent {
  background: var(--color-accent-light);
  border-color: var(--color-accent-dark);
  box-shadow: 5px 5px 0 var(--color-accent-dark);
}

.principles-highlight-accent i {
  color: var(--color-accent-dark);
}

.principles-list-section {
  padding: var(--space-3xl) 0;
  background: var(--color-surface);
}

.principles-timeline {
  max-width: 800px;
  margin: var(--space-xl) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.principle-entry {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-md);
  align-items: start;
}

.principle-number {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--color-accent-dark);
  background: var(--color-accent-light);
  border: var(--border-width-thick) solid var(--color-accent-dark);
  padding: 6px 10px;
  border-radius: var(--radius-md);
  text-align: center;
  margin-top: 8px;
  box-shadow: var(--shadow-hard-accent);
}

.principle-content-card {
  background: var(--color-white);
  border: var(--border-width-thick) solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-hard-md);
}

.principle-card-tinted {
  background: var(--color-primary-ultra-light);
}

.principle-card-dark {
  background: var(--color-dark-card);
  color: var(--color-dark-card-text);
}

.principle-card-dark .principle-title,
.principle-card-dark .principle-body {
  color: var(--color-dark-card-text);
}

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

.principle-body {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}

.lifecycle-section {
  padding: var(--space-3xl) 0;
  background: var(--color-white);
}

.lifecycle-header {
  text-align: center;
  margin-bottom: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.lifecycle-phase-card {
  background: var(--color-surface);
  border: var(--border-width-thick) solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-hard-md);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.lifecycle-phase-card:hover {
  box-shadow: 3px 3px 0 var(--color-primary);
  transform: translate(2px, 2px);
}

.lifecycle-phase-accent {
  background: var(--color-primary-ultra-light);
  border-color: var(--color-primary-light);
}

.lifecycle-phase-dark {
  background: var(--color-dark-card);
  color: var(--color-dark-card-text);
  box-shadow: 5px 5px 0 var(--color-accent-dark);
}

.lifecycle-phase-dark h3,
.lifecycle-phase-dark p {
  color: var(--color-dark-card-text);
}

.lifecycle-phase-icon {
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.lifecycle-phase-dark .lifecycle-phase-icon {
  color: var(--color-accent);
}

.lifecycle-phase-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.lifecycle-phase-card p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

.greenwashing-section {
  padding: var(--space-3xl) 0;
  background: var(--color-surface);
}

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

.greenwashing-signals {
  margin-top: var(--space-md);
  background: var(--color-white);
  border: var(--border-width-thick) solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-hard-md);
}

.greenwashing-signals h4 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-sm);
  color: var(--color-text-muted);
}

.signal-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border-light);
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

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

.signal-item i {
  color: var(--color-accent-dark);
  margin-top: 2px;
  flex-shrink: 0;
}

.greenwashing-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border: var(--border-width-thick) solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hard-lg);
}

/* ============================================================
   TOOLS PAGE
   ============================================================ */
.tools-overview-section {
  padding: var(--space-3xl) 0;
  background: var(--color-white);
}

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

.tools-intro-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-text-secondary);
  padding: var(--space-md) var(--space-lg);
  background: var(--color-primary-ultra-light);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

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

.tool-card {
  background: var(--color-surface);
  border: var(--border-width-thick) solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-hard-md);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.tool-card:hover {
  box-shadow: 3px 3px 0 var(--color-primary);
  transform: translate(2px, 2px);
}

.tool-card-primary {
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 5px 5px 0 var(--color-accent-dark);
  color: var(--color-dark-card-text);
}

.tool-card-primary:hover {
  box-shadow: 3px 3px 0 var(--color-accent-dark);
}

.tool-card-tinted {
  background: var(--color-accent-light);
  border-color: var(--color-accent-dark);
  box-shadow: 5px 5px 0 var(--color-accent-dark);
}

.tool-card-tinted:hover {
  box-shadow: 3px 3px 0 var(--color-accent-dark);
}

.tool-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.tool-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border: var(--border-width) solid rgba(255,255,255,0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-accent);
  flex-shrink: 0;
}

.tool-icon-green {
  background: var(--color-primary-ultra-light);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.tool-icon-amber {
  background: var(--color-accent-light);
  border-color: var(--color-accent-dark);
  color: var(--color-accent-dark);
}

.tool-icon-dark {
  background: var(--color-surface-dark);
  border-color: var(--color-border-light);
  color: var(--color-text-secondary);
}

.tool-card-primary .tool-icon-wrap {
  color: var(--color-accent);
}

.tool-category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.tool-card-primary .tool-category {
  color: rgba(232, 244, 238, 0.7);
}

.tool-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.tool-card-primary .tool-card-title {
  color: var(--color-dark-card-text);
}

.tool-card-description {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

.tool-card-primary .tool-card-description {
  color: rgba(232, 244, 238, 0.85);
}

.tool-methodology-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  background: rgba(255,255,255,0.5);
  border-radius: var(--radius-sm);
  padding: 8px;
  margin-bottom: var(--space-sm);
}

.tool-card-primary .tool-methodology-note {
  background: rgba(255,255,255,0.1);
  color: rgba(232, 244, 238, 0.7);
}

.tool-methodology-note i {
  flex-shrink: 0;
  margin-top: 1px;
}

.tool-categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tool-category-tag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-pill);
  color: var(--color-text-secondary);
}

.tool-card-primary .tool-category-tag {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: rgba(232, 244, 238, 0.8);
}

.labels-guide-section {
  padding: var(--space-3xl) 0;
  background: var(--color-surface);
}

.labels-header {
  text-align: center;
  margin-bottom: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.labels-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.label-category-block {
  background: var(--color-white);
  border: var(--border-width-thick) solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hard-md);
}

.label-category-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  font-size: 1rem;
  font-weight: 700;
}

.label-category-header i {
  font-size: 1.3rem;
}

.label-category-verified {
  background: var(--color-primary);
  color: var(--color-white);
}

.label-category-verified i {
  color: var(--color-accent);
}

.label-category-partial {
  background: var(--color-accent-light);
  color: var(--color-text-primary);
  border-bottom: var(--border-width) solid var(--color-border-light);
}

.label-items-list {
  padding: var(--space-md) var(--space-lg);
}

.label-item {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border-light);
}

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

.label-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.label-item p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.tools-methodology-section {
  padding: var(--space-3xl) 0;
  background: var(--color-white);
}

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

.methodology-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border: var(--border-width-thick) solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hard-lg);
}

/* ============================================================
   HELP PAGE
   ============================================================ */
.help-categories-section {
  padding: var(--space-3xl) 0;
  background: var(--color-white);
}

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

.help-category-card {
  background: var(--color-surface);
  border: var(--border-width-thick) solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-hard-md);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  text-align: center;
}

.help-category-card:hover {
  box-shadow: 3px 3px 0 var(--color-primary);
  transform: translate(2px, 2px);
}

.help-category-featured {
  background: var(--color-primary);
  color: var(--color-dark-card-text);
  box-shadow: 5px 5px 0 var(--color-accent-dark);
}

.help-category-featured h3,
.help-category-featured p,
.help-category-featured .help-guide-count {
  color: var(--color-dark-card-text);
}

.help-category-accent {
  background: var(--color-accent-light);
  border-color: var(--color-accent-dark);
  box-shadow: 5px 5px 0 var(--color-accent-dark);
}

.help-category-icon {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.help-category-featured .help-category-icon {
  color: var(--color-accent);
}

.help-category-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.help-category-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

.help-guide-count {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text-muted);
  background: rgba(255,255,255,0.5);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  display: inline-block;
}

.featured-help-section {
  padding: var(--space-3xl) 0;
  background: var(--color-surface);
}

.featured-help-header {
  margin-bottom: var(--space-xl);
  display: flex;
  flex-direction: column;
}

.help-guides-timeline {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.help-guide-entry {
  padding-left: 0;
}

.help-guide-entry-right {
  padding-left: var(--space-xl);
}

.help-guide-card {
  background: var(--color-white);
  border: var(--border-width-thick) solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-hard-md);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.help-guide-card:hover {
  box-shadow: 3px 3px 0 var(--color-primary);
  transform: translate(2px, 2px);
}

.help-guide-card-tinted {
  background: var(--color-primary-ultra-light);
}

.help-guide-card-dark {
  background: var(--color-dark-card);
  color: var(--color-dark-card-text);
  box-shadow: 5px 5px 0 var(--color-accent-dark);
}

.help-guide-card-dark .help-guide-title,
.help-guide-card-dark .help-guide-body {
  color: var(--color-dark-card-text);
}

.help-guide-card-dark .help-guide-meta span {
  color: rgba(232, 244, 238, 0.7);
}

.help-guide-number {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--color-accent-dark);
  background: var(--color-accent-light);
  border: var(--border-width) solid var(--color-accent-dark);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.help-guide-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.help-guide-body {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}

.help-guide-meta {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border-light);
}

.help-guide-meta span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.faq-section {
  padding: var(--space-3xl) 0;
  background: var(--color-white);
}

.faq-header {
  margin-bottom: var(--space-xl);
  display: flex;
  flex-direction: column;
}

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

.faq-item {
  border: var(--border-width-thick) solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-hard-sm);
  transition: box-shadow var(--transition-base);
}

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

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

.faq-question:hover {
  background: var(--color-primary-ultra-light);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform var(--transition-base);
  color: var(--color-primary);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-base);
  padding: 0 var(--space-lg);
}

.faq-answer.is-open {
  max-height: 300px;
  padding: 0 var(--space-lg) var(--space-md);
}

.faq-answer p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-main-section {
  padding: var(--space-3xl) 0;
  background: var(--color-white);
}

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

.inquiry-form-container {
  background: var(--color-surface);
  border: var(--border-width-thick) solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-hard-lg);
}

.form-heading {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

.wizard-step-indicator {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-xl);
}

.wizard-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.wizard-step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-border-light);
  border: var(--border-width-thick) solid var(--color-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-muted);
  transition: all var(--transition-base);
}

.wizard-step.active .wizard-step-number,
.wizard-step.completed .wizard-step-number {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-hard-sm);
}

.wizard-step-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.wizard-step.active .wizard-step-label {
  color: var(--color-primary);
}

.wizard-step-connector {
  flex: 1;
  height: 2px;
  background: var(--color-border-light);
  margin-top: -12px;
  max-width: 60px;
}

.form-step {
  display: none;
}

.form-step.form-step-active {
  display: block;
}

.form-field-group {
  margin-bottom: var(--space-md);
}

.form-field-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-text-primary);
}

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

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-primary);
  background: var(--color-white);
  border: var(--border-width-thick) solid var(--color-border-light);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  outline: none;
  min-height: 44px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-hard-sm);
}

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

.form-privacy-group {
  margin-top: var(--space-sm);
}

.privacy-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  cursor: pointer;
}

.privacy-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.privacy-checkbox-custom {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: var(--border-width-thick) solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-base), border-color var(--transition-base);
  margin-top: 1px;
}

.privacy-checkbox:checked + .privacy-checkbox-custom {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.privacy-checkbox:checked + .privacy-checkbox-custom::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--color-white);
  font-size: 0.75rem;
}

.privacy-text {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.privacy-text a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
}

.form-step-actions {
  margin-top: var(--space-md);
  display: flex;
  justify-content: flex-end;
}

.form-step-actions-split {
  justify-content: space-between;
}

.wizard-next-button,
.wizard-submit-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 12px 24px;
  border: var(--border-width-thick) solid var(--color-primary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hard-sm);
  cursor: pointer;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  min-height: 44px;
}

.wizard-next-button:hover,
.wizard-submit-button:hover {
  box-shadow: 2px 2px 0 var(--color-primary);
  transform: translate(1px, 1px);
  background: var(--color-primary-light);
}

.wizard-back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--color-text-secondary);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 20px;
  border: var(--border-width) solid var(--color-border-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  min-height: 44px;
}

.wizard-back-button:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-ultra-light);
}

.contact-info-card {
  background: var(--color-surface);
  border: var(--border-width-thick) solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-hard-lg);
}

.contact-info-heading {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: var(--border-width) solid var(--color-border-light);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border-light);
}

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

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--color-primary-ultra-light);
  border: var(--border-width) solid var(--color-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-detail {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-info-detail strong {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}

.contact-info-detail span,
.contact-info-detail a {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.contact-info-detail a:hover {
  color: var(--color-primary);
}

/* ============================================================
   SERVICE AREA SECTION
   ============================================================ */
.service-area-section {
  padding: var(--space-3xl) 0;
  background: var(--color-surface);
}

.service-area-header {
  text-align: center;
  margin-bottom: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.service-area-card {
  background: var(--color-white);
  border: var(--border-width-thick) solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-hard-md);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  text-align: center;
}

.service-area-card:hover {
  box-shadow: 3px 3px 0 var(--color-primary);
  transform: translate(2px, 2px);
}

.service-area-card-accent {
  background: var(--color-primary);
  color: var(--color-dark-card-text);
  border-color: var(--color-primary);
  box-shadow: 5px 5px 0 var(--color-accent-dark);
}

.service-area-card-accent h3,
.service-area-card-accent p {
  color: var(--color-dark-card-text);
}

.service-area-card i {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  display: block;
}

.service-area-card-accent i {
  color: var(--color-accent);
}

.service-area-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-area-card p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

/* ============================================================
   MAP SECTION (CONTACT PAGE)
   ============================================================ */
.map-section {
  padding: var(--space-3xl) 0;
  background: var(--color-white);
}

.map-section-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-xl);
  align-items: start;
}

.map-section-text h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.map-section-text p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.map-frame-large {
  border: var(--border-width-thick) solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hard-lg);
}

/* ============================================================
   THANKS PAGE
   ============================================================ */
.thanks-page-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 4rem) var(--space-md) var(--space-3xl);
  background: var(--color-secondary);
  text-align: center;
}

.thanks-content {
  max-width: 560px;
  margin: 0 auto;
}

.thanks-icon-wrap {
  width: 96px;
  height: 96px;
  background: var(--color-primary);
  border: var(--border-width-thick) solid var(--color-border);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--color-accent);
  margin: 0 auto var(--space-lg);
  box-shadow: var(--shadow-hard-lg);
}

.thanks-heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: var(--space-md);
}

.thanks-body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

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

.thanks-action-group {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page-hero {
  padding: calc(var(--nav-height) + 4rem) var(--space-md) var(--space-xl);
  background: var(--color-secondary);
  border-bottom: var(--border-width-thick) solid var(--color-border);
  text-align: center;
}

.legal-hero-content {
  max-width: 720px;
  margin: 0 auto;
}

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

.legal-page-subtitle {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

.legal-last-updated {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

.legal-content-section {
  padding: var(--space-xl) 0 var(--space-3xl);
  background: var(--color-surface);
}

.legal-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.legal-card {
  background: var(--color-white);
  border: var(--border-width-thick) solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-hard-md);
}

.legal-card-tinted {
  background: var(--color-primary-ultra-light);
}

.legal-card-bordered {
  background: var(--color-white);
  border-left: 6px solid var(--color-primary);
}

.legal-card-intro {
  background: var(--color-accent-light);
  border-color: var(--color-accent-dark);
  box-shadow: 5px 5px 0 var(--color-accent-dark);
  text-align: center;
}

.legal-intro-icon {
  font-size: 2.5rem;
  color: var(--color-accent-dark);
  margin-bottom: var(--space-sm);
}

.legal-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: var(--border-width) solid var(--color-border-light);
}

.legal-subheading {
  font-size: 1rem;
  font-weight: 700;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-primary);
}

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

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

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

.legal-list li {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

.legal-company-details {
  background: var(--color-surface);
  border: var(--border-width) solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin: var(--space-sm) 0;
}

.legal-company-details p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

.legal-card a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
  transition: color var(--transition-base);
}

.legal-card a:hover {
  color: var(--color-primary-light);
}


.cookie-table-wrap {
  overflow-x: auto;
  margin: var(--space-sm) 0 var(--space-md);
  border: var(--border-width) solid var(--color-border-light);
  border-radius: var(--radius-md);
}

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

.cookie-table th {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 10px 14px;
  text-align: left;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

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

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

.cookie-table tr:nth-child(even) td {
  background: var(--color-surface);
}

.cookie-table code {
  font-family: monospace;
  font-size: 0.85em;
  background: var(--color-surface-dark);
  padding: 2px 6px;
  border-radius: 3px;
  color: var(--color-primary);
}

/* ============================================================
   FOOTER
   ============================================================ */
.page-footer {
  background: var(--color-text-primary);
  color: var(--color-dark-card-text);
  margin-top: auto;
}

.footer-cta-block {
  background: var(--color-primary);
  border-bottom: var(--border-width-thick) solid var(--color-accent);
  padding: var(--space-3xl) var(--space-md);
  text-align: center;
}

.footer-cta-content {
  max-width: 680px;
  margin: 0 auto;
}

.footer-cta-headline {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.footer-cta-description {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(232, 244, 238, 0.8);
  margin-bottom: var(--space-lg);
}

.footer-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-accent);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  padding: 16px 36px;
  border: var(--border-width-thick) solid var(--color-text-primary);
  border-radius: var(--radius-md);
  box-shadow: 5px 5px 0 rgba(0,0,0,0.3);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.footer-cta-button:hover {
  box-shadow: 3px 3px 0 rgba(0,0,0,0.3);
  transform: translate(2px, 2px);
  color: var(--color-text-primary);
}

.footer-main-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-xl);
  padding: var(--space-xl) var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand-link {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}

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

.footer-brand-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-white);
}

.footer-brand-description {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(232, 244, 238, 0.6);
}

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

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

.footer-link-list a {
  font-size: 0.875rem;
  color: rgba(232, 244, 238, 0.7);
  transition: color var(--transition-base);
}

.footer-link-list a:hover {
  color: var(--color-white);
}

.footer-address p {
  font-size: 0.875rem;
  color: rgba(232, 244, 238, 0.7);
  line-height: 1.65;
  margin-bottom: 8px;
}

.footer-address a {
  color: rgba(232, 244, 238, 0.7);
  transition: color var(--transition-base);
}

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

.footer-legal-bar {
  border-top: 1px solid rgba(232, 244, 238, 0.1);
  padding: var(--space-md);
}

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

.footer-legal-text {
  font-size: 0.75rem;
  color: rgba(232, 244, 238, 0.45);
  line-height: 1.5;
}

.footer-legal-links {
  font-size: 0.75rem;
  color: rgba(232, 244, 238, 0.45);
  white-space: nowrap;
}

.footer-legal-links a {
  color: rgba(232, 244, 238, 0.55);
  transition: color var(--transition-base);
}

.footer-legal-links a:hover {
  color: var(--color-white);
}

/* ============================================================
   COOKIE CONSENT MODAL
   ============================================================ */
.cookie-consent-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 24, 0.7);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.cookie-consent-backdrop.is-visible {
  opacity: 1;
}

.cookie-consent-modal {
  background: var(--color-white);
  border: var(--border-width-thick) solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  max-width: 560px;
  width: 100%;
  box-shadow: var(--shadow-hard-lg), 0 20px 60px rgba(0,0,0,0.25);
  transform: translateY(20px);
  transition: transform var(--transition-slow);
  position: relative;
  z-index: 9999;
}

.cookie-consent-backdrop.is-visible .cookie-consent-modal {
  transform: translateY(0);
}

.cookie-consent-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.cookie-consent-icon {
  width: 48px;
  height: 48px;
  background: var(--color-accent-light);
  border: var(--border-width-thick) solid var(--color-accent-dark);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-accent-dark);
  flex-shrink: 0;
  box-shadow: var(--shadow-hard-accent);
}

.cookie-consent-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-text-primary);
}

.cookie-consent-description {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
}

.cookie-consent-description a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
}

.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  background: var(--color-surface);
  border: var(--border-width) solid var(--color-border-light);
  border-radius: var(--radius-lg);
}

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

.cookie-category-info {
  flex: 1;
}

.cookie-category-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text-primary);
  display: block;
  margin-bottom: 2px;
}

.cookie-category-desc {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.cookie-toggle-wrap {
  flex-shrink: 0;
}

.cookie-toggle {
  position: relative;
  width: 48px;
  height: 26px;
}

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

.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--color-border-light);
  border: var(--border-width) solid var(--color-border-light);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--transition-base), border-color var(--transition-base);
}

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

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

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateY(-50%) translateX(22px);
}

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

.cookie-consent-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.cookie-accept-all-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 24px;
  border: var(--border-width-thick) solid var(--color-primary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hard-sm);
  cursor: pointer;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  min-height: 44px;
}

.cookie-accept-all-btn:hover {
  box-shadow: 2px 2px 0 var(--color-primary);
  transform: translate(1px, 1px);
  background: var(--color-primary-light);
}

.cookie-save-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 12px 24px;
  border: var(--border-width-thick) solid var(--color-primary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hard-sm);
  cursor: pointer;
  transition: box-shadow var(--transition-base), transform var(--transition-base), background var(--transition-base);
  min-height: 44px;
}

.cookie-save-btn:hover {
  background: var(--color-primary-ultra-light);
  box-shadow: 2px 2px 0 var(--color-primary);
  transform: translate(1px, 1px);
}

.cookie-reject-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 8px;
  text-decoration: underline;
  transition: color var(--transition-base);
  min-height: 44px;
}

.cookie-reject-btn:hover {
  color: var(--color-text-secondary);
}

/* ============================================================
   RESPONSIVE - TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .hero-credential-block {
    max-width: 600px;
  }

  .hero-image-frame {
    height: 240px;
  }

  .introduction-content-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

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

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

  .guides-grid .guide-card-featured {
    grid-column: 1 / -1;
  }

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

  .about-image-stack {
    max-width: 560px;
  }

  .location-content-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer-main-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

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

  .greenwashing-content-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

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

  .labels-comparison-grid {
    grid-template-columns: 1fr;
  }

  .methodology-content-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

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

  .contact-content-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

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

  .map-section-inner {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .principles-intro-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .vertical-timeline::before {
    display: none;
  }

  .timeline-entry-left,
  .timeline-entry-right {
    padding: 0;
    justify-content: flex-start;
  }

  .timeline-content-card {
    max-width: 100%;
  }

  .timeline-connector {
    display: none;
  }

  .principle-entry {
    grid-template-columns: 60px 1fr;
  }
}

/* ============================================================
   RESPONSIVE - MOBILE
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  .navigation-links {
    display: none;
  }

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

  .main-navigation {
    width: calc(100% - 1rem);
    top: 8px;
  }

  .navigation-container {
    padding: 0 var(--space-sm);
    height: var(--nav-height);
  }

  .welcome-banner {
    padding: calc(var(--nav-height) + 3rem) var(--space-sm) var(--space-xl);
  }

  .welcome-banner::before {
    display: none;
  }

  .hero-content-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

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

  .primary-button,
  .secondary-button {
    width: 100%;
    justify-content: center;
  }

  .hero-image-frame {
    height: 200px;
  }

  .info-blocks-grid {
    grid-template-columns: 1fr;
  }

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

  .guides-grid .guide-card-featured {
    grid-column: auto;
  }

  .footer-main-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding: var(--space-lg) var(--space-sm);
  }

  .footer-legal-content {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .footer-cta-block {
    padding: var(--space-xl) var(--space-sm);
  }

  .lifecycle-phases-grid {
    grid-template-columns: 1fr;
  }

  .help-categories-grid {
    grid-template-columns: 1fr;
  }

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

  .principle-entry {
    grid-template-columns: 1fr;
  }

  .principle-number {
    width: fit-content;
  }

  .help-guide-entry-right {
    padding-left: 0;
  }

  .wizard-step-label {
    display: none;
  }

  .inquiry-form-container {
    padding: var(--space-md);
  }

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

  .page-hero-section {
    padding: calc(var(--nav-height) + 3rem) var(--space-sm) var(--space-xl);
  }

  .legal-page-hero {
    padding: calc(var(--nav-height) + 3rem) var(--space-sm) var(--space-lg);
  }

  .legal-card {
    padding: var(--space-md);
  }

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

  .about-accent-card {
    position: static;
    margin-top: var(--space-sm);
    flex-direction: row;
    text-align: left;
  }

  .about-main-image {
    height: 280px;
  }

  .greenwashing-image {
    height: 260px;
  }

  .section-image {
    height: 260px;
  }

  .methodology-image {
    height: 260px;
  }

  .thanks-action-group {
    flex-direction: column;
    align-items: center;
  }

  .thanks-action-group .primary-button,
  .thanks-action-group .secondary-button {
    width: 100%;
    justify-content: center;
  }

  .footer-cta-headline {
    font-size: 1.4rem;
  }

  .hero-credential-block {
    max-width: 100%;
  }

  .contact-info-card {
    padding: var(--space-md);
  }

  .map-frame iframe {
    height: 280px;
  }

  .map-frame-large iframe {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .wizard-step-indicator {
    gap: 4px;
  }

  .wizard-step-connector {
    max-width: 30px;
  }

  .form-step-actions-split {
    flex-direction: column-reverse;
    gap: var(--space-sm);
  }

  .wizard-next-button,
  .wizard-submit-button,
  .wizard-back-button {
    width: 100%;
    justify-content: center;
  }

  .hero-action-group {
    gap: var(--space-sm);
  }

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

/* ============================================================
   AOS ANIMATION OVERRIDES
   ============================================================ */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center {
  text-align: center;
}

.mt-auto {
  margin-top: auto;
}