/* LivingBau | Lab Studio | OS - Dark Luxury CSS Design System */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

:root {
  --font-heading: 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --bg-primary: #0b0c10;
  --bg-secondary: #12141c;
  --bg-card: #181a24;
  --bg-card-hover: #202330;
  
  --accent-burgundy: #7a1c28;
  --accent-burgundy-hover: #962333;
  --accent-burgundy-glow: rgba(122, 28, 40, 0.4);
  --accent-gold: #c6a052;
  --accent-gold-light: #dfba6f;
  
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  
  --border-light: rgba(255, 255, 255, 0.08);
  --border-burgundy: rgba(122, 28, 40, 0.5);
  --border-gold: rgba(198, 160, 82, 0.4);

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 30px var(--accent-burgundy-glow);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.7;
  letter-spacing: 0.015em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.025em;
  color: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #2a2d3d;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-burgundy);
}

/* PROPORTIONAL LUXURY CONTAINER (1380px Max Width & Clean Side Margins) */
.container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Header & Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11, 12, 16, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-normal);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.official-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  background: transparent;
}

.inline-logo-icon {
  height: 16px;
  width: auto;
  vertical-align: middle;
  margin-right: 6px;
  display: inline-block;
}

.title-logo-icon {
  height: 38px;
  width: auto;
  vertical-align: middle;
  margin-right: 12px;
  display: inline-block;
  filter: drop-shadow(0 2px 6px rgba(198, 160, 82, 0.2));
}

.pillar-logo-icon {
  height: 26px;
  width: auto;
  vertical-align: middle;
  margin-right: 10px;
  display: inline-block;
}

.inline-subtitle-icon {
  height: 14px;
  width: auto;
  vertical-align: middle;
  margin-right: 6px;
  display: inline-block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition-fast);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-burgundy);
  border-radius: var(--radius-full);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language Switcher Styling */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 3px 6px;
  margin-left: 6px;
  list-style: none;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}

.lang-btn:hover {
  color: #ffffff;
}

.lang-btn.active {
  background: var(--accent-gold);
  color: #0b0f19;
  font-weight: 800;
  box-shadow: 0 0 10px rgba(198, 160, 82, 0.4);
}

.lang-slash {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.75rem;
  user-select: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition-normal);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-burgundy), var(--accent-burgundy-hover));
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(122, 28, 40, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(122, 28, 40, 0.6);
  background: linear-gradient(135deg, var(--accent-burgundy-hover), #b5293d);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid var(--border-gold);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent-gold);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 30%, rgba(122, 28, 40, 0.28) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(198, 160, 82, 0.12) 0%, transparent 50%),
              var(--bg-primary);
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  mask-image: radial-gradient(circle at center, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.1) 90%);
  -webkit-mask-image: radial-gradient(circle at center, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.1) 90%);
  pointer-events: none;
}

.hero-content {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  background: transparent;
  border: none;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: none;
  text-shadow: 0 2px 10px rgba(0,0,0,0.95);
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0 auto 16px;
  line-height: 1.15;
  max-width: 960px;
  color: #ffffff;
  text-align: center;
}

.hero-title span {
  background: linear-gradient(135deg, #ffffff 40%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-slogan {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 28px;
  font-style: italic;
  text-align: center;
}

.hero-core-quote {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.5;
  margin: 0 auto 20px;
  padding-left: 20px;
  border-left: 3px solid var(--accent-gold);
  max-width: 960px;
  text-align: left;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0 auto 32px;
  line-height: 1.6;
  max-width: 960px;
}

.hero-tagline-finer {
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 auto 28px;
  max-width: 960px;
  text-align: center;
}

.hero-pillars-teaser {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-items: stretch;
  margin: 0 auto 28px;
  max-width: 960px;
  background: rgba(20, 22, 32, 0.88);
  backdrop-filter: blur(20px);
  padding: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  overflow: hidden;
}

.teaser-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease;
}

.teaser-item:last-child {
  border-right: none;
}

.teaser-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.teaser-label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--accent-gold);
  margin-bottom: 4px;
}

.teaser-title-small {
  font-size: 1.1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.teaser-desc-finer {
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.hero-prelaunch-alert {
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(198, 160, 82, 0.06);
  border: none;
  border-top: 1px solid rgba(198, 160, 82, 0.2);
  border-bottom: 1px solid rgba(198, 160, 82, 0.2);
  padding: 14px 24px;
  border-radius: 0;
  max-width: 960px;
  margin: 0 auto 28px;
  text-align: center;
  line-height: 1.5;
  box-shadow: none;
  text-shadow: 0 2px 10px rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-actions-prelaunch {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto 32px;
}

.hero-prelaunch-alert strong {
  color: var(--accent-gold);
}

@media (max-width: 900px) {
  .hero-pillars-teaser {
    grid-template-columns: 1fr;
  }
  .teaser-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .teaser-item:last-child {
    border-bottom: none;
  }
  .hero-partner-row {
    flex-direction: column;
    text-align: center;
  }
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-motto-clean {
  font-size: 0.95rem;
  color: var(--accent-gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.hero-location-clean {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-location-clean strong {
  color: #ffffff;
}

/* Section Header Shared Styles */
.section {
  padding: 110px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 64px;
}

.section-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-size: 2.6rem;
  margin-bottom: 18px;
}

.section-description {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Cards Grids */
.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition-normal);
  position: relative;
}

.feature-card:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-tag-small {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--accent-gold);
  background: rgba(198, 160, 82, 0.15);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(122, 28, 40, 0.3);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.feature-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Ecosystem Core Clean Cards & Detailed Explanation Below */
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.eco-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition-normal);
}

.eco-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-burgundy);
  box-shadow: var(--shadow-glow);
}

.eco-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.eco-badge {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.eco-badge.lab { background: rgba(122, 28, 40, 0.3); color: #ff8a98; border: 1px solid var(--border-burgundy); }
.eco-badge.os { background: rgba(198, 160, 82, 0.2); color: var(--accent-gold); border: 1px solid var(--border-gold); }
.eco-badge.guild { background: rgba(59, 130, 246, 0.2); color: #93c5fd; border: 1px solid rgba(59, 130, 246, 0.4); }

.eco-title {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.eco-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.clean-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.clean-bullets li {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
}

.clean-bullets li i {
  color: var(--accent-gold);
}

/* Detailed Explanation Box Placed Below Ecosystem Cards */
.ecosystem-details-below {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 48px;
}

.eco-detail-column h4 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-list li {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
  border-left: 2px solid var(--border-light);
  padding-left: 12px;
}

.detail-list li strong {
  color: var(--text-main);
  display: block;
  margin-bottom: 2px;
}

/* Detailed Audience Deep-Dive Sections */
.audience-detailed-section {
  border-top: 1px solid var(--border-light);
}

.audience-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ─── Brands Showcase Grid & Visual Layout ─── */
.brands-showcase-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 44px;
  margin-bottom: 48px;
  align-items: start;
}

.brands-showcase-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  background: var(--bg-card);
}

.brands-showcase-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.brands-showcase-caption {
  padding: 24px;
  border-top: 1px solid var(--border-light);
}

.brands-showcase-caption h4 {
  font-size: 1.1rem;
  font-family: var(--font-heading);
  color: #ffffff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brands-showcase-caption h4 i {
  color: var(--accent-gold);
}

.brands-showcase-caption p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.brands-layers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 1024px) {
  .brands-showcase-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .brands-layers-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .brands-layers-grid {
    grid-template-columns: 1fr;
  }
}

.aud-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.aud-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-gold);
  font-family: var(--font-heading);
}

.aud-badge {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #ff8a98;
  background: rgba(122, 28, 40, 0.3);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-burgundy);
}

/* Package Outputs Placed Below Audience Cards */
.package-outputs-below {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.output-item-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

.output-item-box h5 {
  font-size: 0.9rem;
  color: var(--accent-gold);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.output-item-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Process & Value Flow Cards */
.process-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.flow-card-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition-normal);
}

.flow-card-box:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.flow-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--accent-burgundy), var(--accent-gold));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 16px;
}

.flow-card-box h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.flow-card-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* 90-Day Baltic Market Entry Box */
.market-entry-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.entry-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.entry-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.entry-step {
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  border: 1px solid var(--border-light);
}

.step-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 8px;
}

.entry-step h5 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.entry-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Clean Core Formula Statement */
.core-formula-clean {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 32px 0 0;
}

.clean-quote-statement {
  text-align: center;
  max-width: 960px;
  margin: 40px auto 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--border-light);
}

/* Professional Hub Section (Slide 4) */
.hub-pills-wrapper {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hub-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition-fast);
  cursor: pointer;
}

.hub-pill:hover, .hub-pill.active {
  background: var(--accent-burgundy);
  color: #ffffff;
  border-color: var(--accent-burgundy-hover);
  box-shadow: 0 4px 16px rgba(122, 28, 40, 0.5);
}

.action-chain-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 16px 0;
  gap: 36px;
  flex-wrap: wrap;
}

.chain-node {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: 1px;
}

.chain-node.primary {
  color: var(--accent-gold);
  font-size: 1.1rem;
}

.chain-arrow {
  color: var(--accent-burgundy);
  font-size: 1.3rem;
}

/* Decision Pack Generator */
.generator-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.gen-controls {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent-burgundy);
  box-shadow: 0 0 0 3px rgba(122, 28, 40, 0.3);
}

.gen-output {
  background: var(--bg-card);
  border: 1px solid var(--border-burgundy);
  border-radius: var(--radius-md);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
}

.pack-header {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 16px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pack-badge {
  padding: 6px 14px;
  background: var(--accent-burgundy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
}

.pack-section {
  margin-bottom: 20px;
}

.pack-section h6 {
  font-size: 0.8rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.pack-section p {
  font-size: 0.95rem;
  color: var(--text-main);
}

.pack-status-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.status-pill {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid var(--border-light);
  background: var(--bg-secondary);
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.status-pill.active.approved { background: #059669; color: #fff; border-color: #10b981; }
.status-pill.active.conditional { background: #d97706; color: #fff; border-color: #f59e0b; }
.status-pill.active.nogo { background: #dc2626; color: #fff; border-color: #ef4444; }

/* Interactive OS Tablet Simulation */
.tablet-sim-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}

.tablet-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border: 1px solid var(--border-light);
}

.tablet-img-wrapper img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.os-features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.os-feature-item {
  display: flex;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 24px;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.os-feature-item:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
}

.os-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(198, 160, 82, 0.2);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Material Bank Explorer */
.materials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.mat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
  cursor: pointer;
}

.mat-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
}

.mat-img {
  height: 180px;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.mat-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  background: rgba(11, 12, 16, 0.88);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.mat-info {
  padding: 20px;
}

.mat-title {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.mat-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
}

/* Studio Zones & Location */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border-burgundy);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.location-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  background: #000;
}

.location-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Founders Section */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.founder-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px;
  display: flex;
  gap: 28px;
  align-items: center;
}

.founder-avatar {
  width: 84px;
  height: 84px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--accent-burgundy), var(--accent-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.founder-details h4 {
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.founder-details p.role {
  font-size: 0.9rem;
  color: var(--accent-gold);
  margin-bottom: 8px;
  font-weight: 600;
}

.founder-details p.bio {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  padding: 16px 24px;
  background: var(--bg-card);
  border: 1px solid var(--accent-gold);
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════════
   ECOSYSTEM UMBRELLA — LIVINGBAU Parent Hierarchy Block
   ═══════════════════════════════════════════════════════════════ */

.eco-umbrella {
  text-align: center;
  margin-bottom: 0;
}

.umbrella-main {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(160deg, var(--accent-burgundy), #4a1018);
  border-radius: var(--radius-lg);
  padding: 24px 48px;
  border: 2px solid rgba(198, 160, 82, 0.3);
  box-shadow: 0 0 40px rgba(122, 28, 40, 0.3);
}

.umbrella-main h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.umbrella-main p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

.umbrella-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.connector-line {
  width: 1px;
  height: 28px;
  background: rgba(198, 160, 82, 0.45);
}

.connector-branches {
  display: flex;
  justify-content: center;
  gap: 0;
  position: relative;
  width: 70%;
  max-width: 800px;
  height: 20px;
}

.connector-branches::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(198, 160, 82, 0.45);
}

.branch-line {
  width: 1px;
  height: 20px;
  background: rgba(198, 160, 82, 0.45);
  flex: 1;
  max-width: 1px;
}

.connector-branches .branch-line:first-child { margin-left: 0; }
.connector-branches .branch-line:nth-child(2) { margin: 0 auto; }
.connector-branches .branch-line:last-child { margin-right: 0; }


/* ═══════════════════════════════════════════════════════════════
   ECOSYSTEM 3-COLUMN EQUAL DIAGRAM
   ═══════════════════════════════════════════════════════════════ */

.eco-diagram {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  align-items: stretch !important;
  width: 100% !important;
  max-width: 1380px !important;
  margin: 0 auto !important;
}

.eco-pillar, .eco-hub-center {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

.eco-hub-center {
  background: rgba(122, 28, 40, 0.25) !important;
  border-radius: var(--radius-lg) !important;
  padding: 24px !important;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4) !important;
  text-align: center !important;
  align-items: center !important;
}

.pillar-role-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent-burgundy);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 4px 0 4px 0;
}

.pillar-role-tag.gold {
  color: var(--accent-gold);
}

.pillar-action-verbs {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 20px;
  padding-left: 32px;
}

/* ─── GUILDBAU Verbs Line ─── */
.guild-verbs {
  display: block;
  font-size: 0.78rem;
  color: rgba(198, 160, 82, 0.7);
  font-style: italic;
  margin-top: 6px;
}

/* ─── Eco Result Statement ─── */
.eco-result-statement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 8px 0;
  margin-bottom: 24px;
  background: transparent;
  border: none;
}

.eco-result-statement i {
  font-size: 1.2rem;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.eco-result-statement p {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.5;
}


/* ═══════════════════════════════════════════════════════════════
   LAB STUDIO ZONES — 4-Zone Grid
   ═══════════════════════════════════════════════════════════════ */

.lab-zones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.lab-zone-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.lab-zone-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--border-light);
  transition: var(--transition-normal);
}

.lab-zone-card.featured::before {
  background: linear-gradient(90deg, var(--accent-burgundy), var(--accent-gold));
}

.lab-zone-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.lab-zone-card.featured {
  border-color: var(--border-burgundy);
  background: linear-gradient(160deg, rgba(122, 28, 40, 0.12), var(--bg-card));
}

.zone-img-area {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  margin: -28px -24px 0 -24px;
  width: calc(100% + 48px);
}

/* ═══════════════════════════════════════════════════════════════
   EXECUTIVE ROOM PARTNER NETWORK SECTION & CATALOG MODAL
   ═══════════════════════════════════════════════════════════════ */

.exec-partner-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

@media (max-width: 1024px) {
  .exec-partner-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
  .exec-rooms-3grid {
    grid-template-columns: 1fr !important;
  }
}

.exec-point-card {
  background: rgba(20, 22, 32, 0.85);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.exec-rooms-3grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.exec-room-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exec-room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.65);
}

.exec-catalog-filter-bar {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.04);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.exec-filter-select, .exec-search-input {
  background: rgba(11, 12, 16, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  outline: none;
}

.exec-filter-select:focus, .exec-search-input:focus {
  border-color: var(--accent-gold);
}

.zone-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.lab-zone-card:hover .zone-photo {
  transform: scale(1.05);
}

.zone-text-area {
  padding-top: 20px;
  text-align: center;
}

.zone-icon-area {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 auto 18px;
}

.zone-icon-area i {
  font-size: 1.3rem;
  color: var(--accent-gold);
}

.lab-zone-card.featured .zone-icon-area {
  background: rgba(122, 28, 40, 0.2);
  border-color: var(--border-burgundy);
}

.lab-zone-card.featured .zone-icon-area i {
  color: var(--accent-burgundy-hover);
}

.zone-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.zone-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}


/* ═══════════════════════════════════════════════════════════════
   EXECUTIVE DECISION ROOM — Deep Dive Section
   ═══════════════════════════════════════════════════════════════ */

/* Hero Image Banner */
.dr-hero-image {
  position: relative;
  width: 100%;
  height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
}

.dr-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
}

.dr-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 32px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  display: flex;
  justify-content: flex-end;
}

.dr-hero-stats {
  display: flex;
  gap: 32px;
}

.dr-hero-stats .dr-stat {
  text-align: center;
}

.dr-hero-stats .dr-stat-val {
  font-size: 1.6rem;
  color: var(--accent-gold);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.dr-hero-stats .dr-stat-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Card Photo */
.dr-card-photo {
  width: calc(100% + 56px);
  height: 200px;
  margin: -32px -28px 20px -28px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.dr-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
  transition: transform 0.5s ease;
}

.dr-visual-card:hover .dr-photo {
  transform: scale(1.05);
}

.decision-room-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}


.dr-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 560px;
}

.dr-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dr-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.dr-feature-accent {
  width: 4px;
  min-height: 48px;
  background: var(--accent-burgundy);
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 4px;
}

.dr-feature h5 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.dr-feature p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Decision Room Visual Card */
.dr-visual-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.dr-visual-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-burgundy), var(--accent-gold));
}

.dr-badge-top {
  margin-bottom: 20px;
}

.dr-badge-top span {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(122, 28, 40, 0.15);
  border: 1px solid var(--border-burgundy);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.dr-visual-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-burgundy), #4a1018);
  margin: 0 auto 20px;
  border: 2px solid rgba(198, 160, 82, 0.3);
}

.dr-visual-icon i {
  font-size: 1.6rem;
  color: #ffffff;
}

.dr-visual-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.dr-visual-card > p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
}

.dr-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.dr-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.dr-stat-val {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.dr-stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


/* ═══════════════════════════════════════════════════════════════
   ECOSYSTEM DIAGRAM — Presentation-Inspired 3-Column Layout
   LAB STUDIO (left) ↔ PROFESSIONAL HUB (center) ↔ OS (right)
   ═══════════════════════════════════════════════════════════════ */

.eco-diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: stretch;
  margin-bottom: 40px;
}

/* Pillar Columns (Left=Lab Studio, Right=OS) */
.eco-pillar {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.eco-pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.eco-pillar-left::before {
  background: linear-gradient(90deg, var(--accent-burgundy), var(--accent-burgundy-hover));
}

.eco-pillar-right::before {
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
}

.pillar-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.pillar-header i {
  font-size: 1.2rem;
}

.eco-pillar-left .pillar-header i { color: var(--accent-burgundy); }
.eco-pillar-right .pillar-header i { color: var(--accent-gold); }

.pillar-header h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.pillar-subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 24px;
  padding-left: 32px;
}

/* Numbered Feature List (01-04) */
.pillar-feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pillar-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-normal);
}

.pillar-feature:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateX(4px);
}

.pf-num {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  background: var(--accent-burgundy);
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.pf-num.gold {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #a87e35 100%);
  color: #0b0c10;
}

.pillar-feature h5 {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 3px;
}

.pillar-feature p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
}


/* ─── CENTER HUB — "Professional Project Hub" Device ─── */
.eco-hub-center {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  max-width: 320px;
}

.hub-device {
  background: linear-gradient(160deg, #3d0c14 0%, #7a1c28 40%, #4a1018 100%);
  border-radius: 24px;
  padding: 28px 24px 20px;
  border: 2px solid rgba(198, 160, 82, 0.35);
  box-shadow:
    0 0 40px rgba(122, 28, 40, 0.4),
    0 0 80px rgba(122, 28, 40, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-align: center;
  position: relative;
  width: 100%;
}

.hub-logo-area {
  margin-bottom: 16px;
}

.hub-logo-img {
  height: 32px;
  filter: brightness(1.3);
}

.hub-main-title {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: 1px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hub-keywords {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.hub-keywords span {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Process Flow Steps (01→02→03→04) */
.hub-process-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

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

.ps-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-normal);
}

.ps-circle.active {
  background: var(--accent-gold);
  color: #0b0c10;
  border-color: var(--accent-gold-light);
  box-shadow: 0 0 16px rgba(198, 160, 82, 0.5);
}

.ps-label {
  font-size: 0.55rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ps-arrow {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 0 2px;
  align-self: center;
  margin-bottom: 16px;
}

.hub-formula-bar {
  padding: 10px 16px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.08);
}


/* ─── GUILDBAU Foundation Bar ─── */
.guildbau-foundation-bar {
  margin-bottom: 32px;
}

.guild-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 8px 0;
  background: transparent;
  border: none;
  text-align: center;
}

.guild-bar-inner i {
  font-size: 1.1rem;
  color: var(--accent-gold);
}

.guild-bar-inner span {
  font-size: 0.88rem;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

.guild-bar-inner strong {
  color: var(--accent-gold);
  font-weight: 700;
  letter-spacing: 1px;
}


/* ─── Core Formula & Tagline ─── */
.core-formula-clean {
  text-align: center;
  padding: 28px 24px;
}

.formula-line {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 400;
}

.formula-tagline {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-gold);
  font-style: italic;
  line-height: 1.4;
}


/* Footer */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  padding: 70px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-col h5 {
  font-size: 0.95rem;
  color: var(--accent-gold);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: #fff;
}

  border-top: 1px solid var(--border-light);
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ═══════════════════════════════════════════════════════════════
   NEW PRE-LAUNCH LAYOUTS & COMPONENT STYLES
   ═══════════════════════════════════════════════════════════════ */

/* Status tags for feature roadmap */
.status-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  border: 1px solid transparent;
}

.status-tag.available {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  border-color: rgba(16, 185, 129, 0.25);
}

.status-tag.october {
  background: rgba(122, 28, 40, 0.15);
  color: #ef4444;
  border-color: rgba(122, 28, 40, 0.3);
}

.status-tag.roadmap {
  background: rgba(198, 160, 82, 0.12);
  color: var(--accent-gold);
  border-color: var(--border-gold);
}

/* 4 Partner paths grid */
.partner-paths-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.path-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.path-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  transition: var(--transition-fast);
}

.path-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
}

.path-card.developer:hover::before { background: var(--accent-burgundy); }
.path-card.brand:hover::before { background: var(--accent-gold); }
.path-card.architect:hover::before { background: #93c5fd; }
.path-card.association:hover::before { background: #10b981; }

.path-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent-gold);
  margin-bottom: 24px;
}

.path-card.developer .path-card-icon { color: var(--accent-gold); }
.path-card.brand .path-card-icon { color: var(--accent-gold-light); }
.path-card.architect .path-card-icon { color: #93c5fd; }
.path-card.association .path-card-icon { color: #10b981; }

.path-card h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.path-subtitle {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  font-weight: 600;
}

.path-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.path-results {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.path-results li {
  font-size: 0.8rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.path-results li i {
  font-size: 0.75rem;
  color: var(--accent-gold);
}

.path-card .btn {
  margin-top: auto;
  width: 100%;
  padding: 10px 16px;
  font-size: 0.85rem;
}

/* Why Join Now Bullet list styles */
.why-now-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  margin-top: 32px;
}

.why-now-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-now-item {
  display: flex;
  gap: 16px;
  background: var(--bg-card);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: var(--transition-fast);
}

.why-now-item:hover {
  border-color: var(--border-gold);
  transform: translateX(4px);
}

.why-now-item i {
  font-size: 1.15rem;
  color: var(--accent-gold);
  margin-top: 2px;
}

.why-now-item h5 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.why-now-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Vizuālā laika līnija (Timeline) */
.timeline-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 48px;
}

.timeline-flow::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(to right, var(--accent-gold) 20%, var(--border-light) 80%);
  z-index: 1;
}

.timeline-node {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.timeline-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 4px solid var(--border-light);
  margin-bottom: 20px;
  transition: var(--transition-fast);
  margin-left: 8px;
}

.timeline-node.active .timeline-circle {
  border-color: var(--accent-gold);
  background: var(--accent-gold);
  box-shadow: 0 0 12px rgba(198, 160, 82, 0.6);
}

.timeline-node.launch .timeline-circle {
  border-color: var(--accent-burgundy);
  background: var(--accent-burgundy);
  box-shadow: 0 0 12px rgba(122, 28, 40, 0.6);
}

.timeline-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  width: 100%;
  transition: var(--transition-fast);
}

.timeline-node:hover .timeline-card {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-sm);
}

.timeline-month {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-gold);
  margin-bottom: 6px;
}

.timeline-node.launch .timeline-month {
  color: #ef4444;
}

.timeline-card h4 {
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.timeline-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.timeline-bullets li {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.timeline-bullets li i {
  font-size: 0.68rem;
  color: var(--accent-gold);
  margin-top: 3px;
}

/* Qualification booking form styles */
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
}

.checkbox-group input {
  margin-top: 5px;
}

.checkbox-group label {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  cursor: pointer;
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
  .hero-title { font-size: 3rem; }
  .eco-diagram { grid-template-columns: 1fr; gap: 24px; }
  .eco-hub-center { max-width: 400px; min-width: auto; margin: 0 auto; }
  .lab-zones-grid { grid-template-columns: 1fr 1fr; }
  .decision-room-layout { grid-template-columns: 1fr; gap: 32px; }
  .connector-branches { width: 50%; }
  .package-outputs-below, .cards-grid-3, .cards-grid-4, .materials-grid, .process-flow-grid, .entry-steps-grid, .partner-paths-grid, .why-now-grid, .timeline-flow { grid-template-columns: 1fr 1fr; }
  .timeline-flow::before { display: none; }
  .generator-box, .tablet-sim-container, .location-grid, .founders-grid { grid-template-columns: 1fr; }
  .hero-bg-img { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .action-chain-bar { justify-content: center; text-align: center; }
}

@media (max-width: 640px) {
  .nav-menu { display: none; }
  .hero-title { font-size: 2.2rem; }
  .eco-diagram { grid-template-columns: 1fr; }
  .eco-hub-center { max-width: 100%; }
  .hub-process-flow { gap: 4px; }
  .lab-zones-grid { grid-template-columns: 1fr; }
  .decision-room-layout { grid-template-columns: 1fr; }
  .umbrella-main { padding: 18px 24px; }
  .connector-branches { width: 80%; }
  .dr-stat-row { grid-template-columns: 1fr; gap: 12px; }
  .package-outputs-below, .cards-grid-3, .cards-grid-4, .materials-grid, .founders-grid, .footer-grid, .process-flow-grid, .entry-steps-grid, .partner-paths-grid, .why-now-grid, .timeline-flow, .form-row-2 { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   NEW 3x3 MATERIALS GRID & PARTNER CARDS STYLES (Point 3 & 5)
   ═══════════════════════════════════════════════════════════════ */

.materials-grid-3x3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .materials-grid-3x3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .materials-grid-3x3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Partner Material Card UI */
.partner-mat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: var(--shadow-sm);
}

.partner-mat-card:hover,
.partner-mat-card:focus-visible {
  outline: none;
  transform: translateY(-5px);
  border-color: var(--accent-burgundy);
  box-shadow: 0 12px 30px rgba(122, 28, 40, 0.25), 0 0 0 2px rgba(198, 160, 82, 0.4);
}

/* Image 16:9 Aspect Ratio */
.partner-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111319;
}

.partner-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.partner-mat-card:hover .partner-card-img {
  transform: scale(1.04);
}

/* QR Code Badge on top-right */
.partner-card-qr {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 11px;
  background: rgba(11, 12, 16, 0.88);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(198, 160, 82, 0.3);
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

/* Card Body */
.partner-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.partner-card-title {
  font-size: 1.08rem;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 14px;
  color: #ffffff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.8em;
}

.partner-card-meta {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.partner-card-company {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent-gold);
}

.partner-card-status {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}

/* Advanced Modal Popup UI Styling */
.partner-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 12, 16, 0.88);
  backdrop-filter: blur(14px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.partner-modal-content {
  background: #151821;
  border: 1px solid var(--border-burgundy);
  border-radius: var(--radius-lg);
  max-width: 580px;
  width: 100%;
  padding: 40px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(122, 28, 40, 0.15);
  position: relative;
  margin: auto;
  animation: modalEnter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalEnter {
  from { transform: scale(0.96) translateY(10px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.partner-modal-close {
  position: absolute;
  top: 24px;
  right: 28px;
  color: var(--text-muted);
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s ease;
}

.partner-modal-close:hover {
  color: #ffffff;
}

.partner-modal-qr-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(122, 28, 40, 0.15);
  border: 1px solid var(--border-burgundy);
  color: var(--accent-gold);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.partner-modal-title {
  font-size: 1.45rem;
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 6px;
}

.partner-modal-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.partner-modal-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #d1d5db;
  margin-bottom: 26px;
}

.partner-modal-info-block {
  background: #0d0f15;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.partner-modal-info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.partner-modal-info-row i {
  font-size: 1.15rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.partner-modal-info-row strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent-gold);
  margin-bottom: 3px;
}

.partner-modal-info-row p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #e5e7eb;
}

.partner-modal-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.partner-modal-price i {
  color: var(--accent-gold);
}

.partner-modal-price span {
  color: var(--accent-gold);
}

.partner-modal-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.partner-modal-btn-primary {
  flex: 1.3;
  justify-content: center;
  padding: 15px 22px;
}

.partner-modal-btn-secondary {
  flex: 1;
  justify-content: center;
  padding: 15px 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.partner-modal-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

.partner-modal-website-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
  margin-top: 8px;
}

.partner-modal-website-link:hover {
  color: var(--accent-gold);
}

@media (max-width: 640px) {
  .hero-slogan {
    margin-bottom: 32px; /* fallback reduced margin for mobile */
  }
  
  /* Header & Navigation */
  .nav-container {
    height: 64px;
    padding: 0 16px;
  }
  .official-logo-img {
    height: 38px;
  }
  .header-cta .btn {
    padding: 10px 16px;
    font-size: 0.82rem;
    gap: 6px;
  }
  
  /* Hero padding correction for mobile */
  .hero {
    padding: 100px 0 60px;
  }
  
  /* Container padding */
  .container {
    padding: 0 20px;
  }

  /* Material modal responsive updates */
  .partner-modal-content {
    padding: 24px 20px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
  }
  .partner-modal-actions {
    flex-direction: column;
    gap: 10px;
  }
  .partner-modal-btn-primary,
  .partner-modal-btn-secondary {
    width: 100%;
    padding: 12px 18px;
    font-size: 0.88rem;
  }
  .partner-modal-footer-links {
    flex-direction: column !important;
    align-items: center !important;
    gap: 14px !important;
    text-align: center;
  }
  .partner-modal-website-link {
    width: 100%;
    justify-content: center;
  }
  .partner-modal-guildbau-link {
    width: 100%;
    justify-content: center;
  }
  
  /* Hide ecosystem complex connector lines on mobile */
  .umbrella-connector, .connector-branches {
    display: none !important;
  }
  .eco-umbrella {
    margin-bottom: 24px;
  }
}

@media (max-width: 400px) {
  .official-logo-img {
    height: 32px;
  }
  .header-cta .btn {
    padding: 8px 12px;
    font-size: 0.78rem;
  }
  .header-cta .btn i {
    font-size: 0.85rem;
  }
}

/* Prevent empty spaces in grids with odd number of items on tablet viewports (2 columns) */
@media (max-width: 1200px) and (min-width: 641px) {
  .cards-grid-3 > *:last-child,
  .package-outputs-below > *:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 1024px) and (min-width: 641px) {
  .materials-grid-3x3 > *:last-child {
    grid-column: span 2;
  }
}

/* ═══════════════════════════════════════════════════════════════
   DIGITAL PROCUREMENT AGENT & DEVELOPER OFFER STYLES
   ═══════════════════════════════════════════════════════════════ */

.procurement-flow-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin: 32px 0;
}

.procurement-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.procurement-step-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.step-num-badge {
  display: inline-block;
  width: 28px;
  height: 28px;
  line-height: 28px;
  border-radius: 50%;
  background: rgba(198, 160, 82, 0.15);
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 8px;
  border: 1px solid rgba(198, 160, 82, 0.3);
}

.procurement-step-card h5 {
  font-size: 0.88rem;
  color: #fff;
  margin-bottom: 6px;
}

.procurement-step-card p {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.supplier-standard-bar {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.supplier-standard-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.supplier-pill {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--text-main);
  font-weight: 500;
}

/* Developer Process Flow Grid (Symmetrical 3-Column Layout) */
.process-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.flow-card-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.flow-card-box:hover {
  border-color: var(--accent-gold);
  transform: translateY(-3px);
}

.flow-icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(198, 160, 82, 0.12);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  font-size: 1.1rem;
  border: 1px solid rgba(198, 160, 82, 0.25);
}

.flow-card-box h4 {
  font-size: 0.98rem;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 600;
}

.flow-card-box p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Pricing & Neutral Corporate Badges */
.price-tag-big {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-top: 12px;
  letter-spacing: 0.3px;
}

.session-statuses-bar {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 32px;
  text-align: center;
}

.status-pills-flex {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.status-badge-official {
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  transition: all 0.2s ease;
}

.status-badge-official.approved { color: #10b981; border-color: rgba(16, 185, 129, 0.3); }
.status-badge-official.conditional { color: #f59e0b; border-color: rgba(245, 158, 11, 0.3); }
.status-badge-official.nogo { color: #ef4444; border-color: rgba(239, 68, 68, 0.3); }
.status-badge-official.nodata { color: #93c5fd; border-color: rgba(147, 197, 253, 0.3); }
.status-badge-official.delegated { color: #a855f7; border-color: rgba(168, 85, 247, 0.3); }

/* Neutral Corporate Trust Standards Grid */
.trust-standards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.trust-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 26px;
}

.trust-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .procurement-flow-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-standards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .procurement-flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-flow-grid {
    grid-template-columns: 1fr;
  }
  .supplier-standard-bar {
    flex-direction: column;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════════════════════
   LIVINGBAU RESIDENT PARTNER CARDS & GUILDBAU VERIFICATION
   ═══════════════════════════════════════════════════════════════ */

.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.resident-card {
  background: var(--bg-card);
  border: 1px solid rgba(198, 160, 82, 0.25);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.resident-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(198, 160, 82, 0.15);
}

.res-card-top {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.res-logo-box {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 12px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.res-logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.res-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.72rem;
  color: #0b0c10;
  text-align: center;
  line-height: 1.1;
}

.res-card-title-group {
  flex: 1;
}

.res-company-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 6px;
}

.res-company-name {
  font-size: 1.02rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

.res-verified-tag {
  color: #10b981;
  font-size: 0.76rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.res-company-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.res-divider {
  height: 1px;
  background: var(--border-light);
  margin: 16px 0 14px;
}

.res-location {
  font-size: 0.84rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}

.res-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  text-align: left;
}

.res-stat-item label {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}

.res-stat-item .val-big {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  font-family: var(--font-heading);
}

.res-stat-item .val-green {
  font-size: 1.05rem;
  font-weight: 700;
  color: #10b981;
}

.res-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

.res-profile-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  padding: 4px 0;
  transition: all 0.25s ease;
  letter-spacing: 0.2px;
  text-decoration: none;
  cursor: pointer;
}

.res-profile-link:hover {
  color: #ffffff;
  text-decoration: underline;
  transform: translateY(-1px);
}

.btn-guildbau-verify {
  font-size: 0.8rem;
  font-weight: 600;
  color: #10b981;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  padding: 4px 0;
  transition: all 0.25s ease;
  letter-spacing: 0.2px;
  cursor: pointer;
  text-decoration: none;
}

.btn-guildbau-verify:hover {
  color: #34d399;
  text-decoration: underline;
  transform: translateY(-1px);
  box-shadow: none;
}

/* Modal for GuildBau Verification & Profile Details */
.guild-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 12, 16, 0.88);
  backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.guild-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.guild-modal-card {
  background: #12141c;
  border: 1px solid var(--accent-gold);
  border-radius: var(--radius-lg);
  max-width: 620px;
  width: 100%;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
  position: relative;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.guild-modal-overlay.active .guild-modal-card {
  transform: translateY(0);
}

.guild-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 1.4rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s ease;
}

.guild-modal-close:hover {
  color: #fff;
}

@media (max-width: 900px) {
  .cards-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* GuildBau Verification Badge Button */
.guildbau-verify-btn {
  background: rgba(122, 28, 40, 0.28);
  border: 1px solid rgba(198, 160, 82, 0.45);
  color: var(--accent-gold);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
  text-decoration: none;
  white-space: nowrap;
}

.guildbau-verify-btn:hover {
  background: rgba(122, 28, 40, 0.65);
  border-color: var(--accent-gold);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(198, 160, 82, 0.35);
  transform: translateY(-1px);
}

/* ConTech & PropTech Network Styles */
.contech-card {
  background: rgba(20, 22, 32, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.contech-card:hover {
  border-color: rgba(198, 160, 82, 0.4);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
  transform: translateY(-3px);
}

.contech-card.is-baltic {
  border-left: 4px solid #7a1c28;
  background: linear-gradient(145deg, rgba(35, 18, 24, 0.95), rgba(18, 20, 28, 0.95));
}

.contech-badge-baltic {
  background: rgba(122, 28, 40, 0.9);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.contech-badge-category {
  background: rgba(198, 160, 82, 0.15);
  border: 1px solid rgba(198, 160, 82, 0.3);
  color: var(--accent-gold);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 12px;
}

.contech-badge-region {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 12px;
}

/* Dropdown navigation styles */
.nav-item-dropdown {
  position: relative;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(20, 22, 32, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  padding: 10px 0;
  min-width: 240px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 1000;
  margin-top: 8px;
}

.dropdown-item a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
  text-align: left;
  white-space: nowrap;
}

.dropdown-item a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

/* Caret icon for dropdown indicator */
.nav-link i.fa-chevron-down {
  font-size: 0.65rem;
  margin-left: 6px;
  transition: transform var(--transition-fast);
}

.nav-item-dropdown:hover .nav-link i.fa-chevron-down {
  transform: rotate(180deg);
}



