
    @import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #0d1526;
  --color-bg-tertiary: #111d2f;
  --color-bg-card: rgba(255, 255, 255, 0.05);
  
  --color-text-primary: #ffffff;
  --color-text-secondary: #94a3b8;
  --color-text-muted: #64748b;
  
  --color-primary: #f59e0b;
  --color-primary-hover: #fbbf24;
  --color-secondary: #06b6d4;
  --color-accent-tertiary: #8b5cf6;
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Noto Serif JP', serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

section, [class*="-section"] {
  width: 100%;
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
}

h4 {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
}

p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

ul, ol {
  list-style: none;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--color-primary);
  color: #1a1a1a;
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(245, 158, 11, 0.3);
}

.btn-secondary {
  background: var(--color-secondary);
  color: #ffffff;
}

.btn-secondary:hover {
  background: #0891b2;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(6, 182, 212, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: var(--color-primary-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-primary);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

input, textarea, select {
  font-family: var(--font-primary);
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-text-primary);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

input::placeholder, textarea::placeholder {
  color: var(--color-text-muted);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

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

.grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.flex {
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
}

.flex-col {
  flex-direction: column;
}

.flex-center {
  align-items: center;
  justify-content: center;
}

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

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

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

.opacity-75 {
  opacity: 0.75;
}

.opacity-50 {
  opacity: 0.5;
}

.transition-all {
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
  
  .grid {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.25rem;
  }
  
  h3 {
    font-size: 1.125rem;
  }
  
  .container {
    padding: 0 1rem;
  }
}

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

::selection {
  background: var(--color-primary);
  color: #1a1a1a;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: rgba(245, 158, 11, 0.5);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}
:root {
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #0d1526;
  --color-bg-tertiary: #111d2f;
  --color-bg-card: rgba(255, 255, 255, 0.05);
  --color-text-primary: #ffffff;
  --color-text-secondary: #94a3b8;
  --color-text-muted: #64748b;
  --color-primary: #f59e0b;
  --color-primary-hover: #fbbf24;
  --color-secondary: #06b6d4;
  --color-accent-tertiary: #8b5cf6;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Noto Serif JP', serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
}

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
}

.header-zen-flow {
  background: var(--color-bg-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: static;
  width: 100%;
  z-index: 100;
}

.header-zen-flow-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header-zen-flow-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 300ms ease;
}

.header-zen-flow-brand:hover {
  opacity: 0.85;
}

.header-zen-flow-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.header-zen-flow-logo-text {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.5px;
}

.header-zen-flow-desktop-nav {
  display: none;
  align-items: center;
  gap: clamp(0.5rem, 1vw, 2rem);
  flex: 1;
  justify-content: flex-end;
}

.header-zen-flow-nav-link {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  transition: color 300ms ease;
  position: relative;
  padding-bottom: 2px;
}

.header-zen-flow-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.header-zen-flow-nav-link:hover {
  color: var(--color-text-primary);
}

.header-zen-flow-nav-link:hover::after {
  width: 100%;
}

.header-zen-flow-cta-button {
  background: var(--color-primary);
  color: #0f172a;
  padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-md);
  border: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.header-zen-flow-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.25);
}

.header-zen-flow-cta-button:active {
  transform: translateY(0);
  transition-duration: 150ms;
}

.header-zen-flow-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  cursor: pointer;
  transition: all 300ms ease;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.header-zen-flow-mobile-toggle:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.header-zen-flow-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  display: flex;
  flex-direction: column;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  padding-top: 80px;
  overflow-y: auto;
}

.header-zen-flow-mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-zen-flow-mobile-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: var(--color-bg-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 clamp(1rem, 4vw, 2rem);
  z-index: 100;
}

.header-zen-flow-mobile-close {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 300ms ease;
}

.header-zen-flow-mobile-close:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.header-zen-flow-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 2rem clamp(1rem, 4vw, 2rem);
}

.header-zen-flow-mobile-link {
  color: var(--color-text-primary);
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 500;
  transition: color 300ms ease;
  display: block;
}

.header-zen-flow-mobile-link:last-child {
  border-bottom: none;
}

.header-zen-flow-mobile-link:hover {
  color: var(--color-primary);
}

.header-zen-flow-mobile-cta {
  background: var(--color-primary);
  color: #0f172a;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  margin: 2rem clamp(1rem, 4vw, 2rem);
  display: block;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.header-zen-flow-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.25);
}

@media (min-width: 768px) {
  .header-zen-flow-container {
    padding: 1rem clamp(1.5rem, 5vw, 2.5rem);
  }

  .header-zen-flow-desktop-nav {
    display: flex;
  }

  .header-zen-flow-mobile-toggle {
    display: none;
  }

  .header-zen-flow-mobile-menu {
    display: none;
  }
}

@media (min-width: 1024px) {
  .header-zen-flow-container {
    padding: 1.25rem 2rem;
    gap: 3rem;
  }

  .header-zen-flow-logo-text {
    font-size: 1.375rem;
  }

  .header-zen-flow-nav-link {
    font-size: 1rem;
  }

  .header-zen-flow-cta-button {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

    .interior-flow-hub {
  width: 100%;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #0a0f1e;
}

.hero-ambient-glow {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-gradient-field {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.07) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-shape-1 {
  position: absolute;
  bottom: 15%;
  left: 8%;
  width: 250px;
  height: 250px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

.hero-floating-shape-2 {
  position: absolute;
  top: 30%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 2;
  pointer-events: none;
}

.hero-accent-orb {
  position: absolute;
  bottom: 10%;
  right: 15%;
  width: 280px;
  height: 280px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-line-element {
  position: absolute;
  top: 40%;
  left: 0;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-corner-accent {
  position: absolute;
  bottom: 5%;
  left: 50%;
  width: 150px;
  height: 150px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.hero-title-index {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-index {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3.5rem);
  justify-content: center;
  margin: 2.5rem 0;
}

.hero-stat-item-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.hero-stat-number-index {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #f59e0b;
  line-height: 1;
}

.hero-stat-label-index {
  font-size: 0.875rem;
  color: #94a3b8;
}

.hero-buttons-index {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.approach-section {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
}

.approach-shape-1 {
  position: absolute;
  top: 10%;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 50% 40% 45% 55% / 50% 50% 50% 50%;
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.approach-glow-left {
  position: absolute;
  bottom: 20%;
  left: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.approach-glow-right {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.approach-accent-line {
  position: absolute;
  top: 0;
  left: 10%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.approach-floating-panel {
  position: absolute;
  bottom: 15%;
  right: 10%;
  width: 180px;
  height: 140px;
  background: rgba(59, 130, 246, 0.04);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  transform: rotate(-8deg);
  z-index: 2;
  pointer-events: none;
}

.approach-organic-form {
  position: absolute;
  top: 30%;
  left: 5%;
  width: 220px;
  height: 240px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 70% 30% 60% 40% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.approach-content {
  position: relative;
  z-index: 10;
}

.approach-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.approach-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.approach-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.approach-subtitle-index {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.approach-steps-index {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.approach-step-index {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.approach-step-index:hover {
  background: #f1f5f9;
  transform: translateX(4px);
}

.approach-step-number-index {
  font-size: 2.5rem;
  font-weight: 800;
  color: #3b82f6;
  flex-shrink: 0;
  min-width: 60px;
  line-height: 1;
}

.approach-step-content-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.approach-step-title-index {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.approach-step-text-index {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

.features-section {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #0d1526;
}

.features-mesh-1 {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.features-glow-1 {
  position: absolute;
  bottom: 15%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.07) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.features-glow-2 {
  position: absolute;
  top: 40%;
  right: 5%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.features-accent-shape {
  position: absolute;
  bottom: 5%;
  left: 10%;
  width: 250px;
  height: 250px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%;
  z-index: 2;
  pointer-events: none;
}

.features-line-accent {
  position: absolute;
  top: 25%;
  left: 0;
  width: 250px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.12), transparent);
  z-index: 2;
  pointer-events: none;
}

.features-floating-element {
  position: absolute;
  bottom: 30%;
  right: 8%;
  width: 200px;
  height: 180px;
  background: rgba(6, 182, 212, 0.05);
  border: 1px solid rgba(6, 182, 212, 0.08);
  border-radius: 14px;
  transform: rotate(12deg);
  z-index: 1;
  pointer-events: none;
}

.features-content {
  position: relative;
  z-index: 10;
}

.features-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.features-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.features-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.features-cards-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.features-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.1);
  border-radius: 12px;
  transition: all 0.35s ease;
}

.features-card-index:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 158, 11, 0.2);
  box-shadow: 0 12px 40px rgba(245, 158, 11, 0.15);
}

.features-card-icon-index {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.12);
  border-radius: 12px;
  color: #f59e0b;
  font-size: 1.5rem;
}

.features-card-title-index {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

.features-card-text-index {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #cbd5e1;
}

@media (max-width: 768px) {
  .features-card-index {
    flex: 1 1 100%;
    max-width: none;
  }
}

.philosophy-section {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f8fafc;
}

.philosophy-bg-glow {
  position: absolute;
  top: 5%;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  filter: blur(85px);
  z-index: 1;
  pointer-events: none;
}

.philosophy-accent-1 {
  position: absolute;
  bottom: 20%;
  left: -80px;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.07);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.philosophy-accent-2 {
  position: absolute;
  top: 30%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: rgba(34, 197, 94, 0.06);
  border-radius: 60% 40% 50% 50% / 50% 50% 50% 50%;
  z-index: 1;
  pointer-events: none;
}

.philosophy-line-top {
  position: absolute;
  top: 0;
  right: 20%;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

.philosophy-shape-bottom {
  position: absolute;
  bottom: 5%;
  right: 8%;
  width: 220px;
  height: 200px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 2;
  pointer-events: none;
}

.philosophy-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
}

.philosophy-text-block {
  flex: 1 1 400px;
}

.philosophy-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.philosophy-description-index {
  font-size: 1rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 2rem;
}

.philosophy-quote-index {
  padding: 2rem 2rem;
  border-left: 4px solid #3b82f6;
  background: #ffffff;
  margin: 2rem 0;
  border-radius: 4px;
}

.philosophy-quote-index p {
  font-size: 1.125rem;
  font-style: italic;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.philosophy-quote-index cite {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

.philosophy-closing-index {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #475569;
}

.philosophy-image-block {
  flex: 1 1 400px;
}

.philosophy-image-index {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .philosophy-content {
    flex-direction: column;
  }

  .philosophy-text-block,
  .philosophy-image-block {
    flex: 1 1 100%;
  }
}

.posts-section {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #111d2f;
}

.posts-glow-1 {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.posts-glow-2 {
  position: absolute;
  bottom: 10%;
  right: 8%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.07) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.posts-shape-accent {
  position: absolute;
  top: 35%;
  right: 5%;
  width: 280px;
  height: 280px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
  z-index: 2;
  pointer-events: none;
}

.posts-line-divider {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.12), transparent);
  z-index: 2;
  pointer-events: none;
}

.posts-float-panel {
  position: absolute;
  bottom: 20%;
  left: 5%;
  width: 190px;
  height: 160px;
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.08);
  border-radius: 12px;
  transform: rotate(-10deg);
  z-index: 1;
  pointer-events: none;
}

.posts-content {
  position: relative;
  z-index: 10;
}

.posts-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.posts-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.posts-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.posts-subtitle-index {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.posts-cards-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 3rem;
}

.posts-card-index {
  flex: 1 1 320px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.1);
  border-radius: 12px;
  transition: all 0.35s ease;
}

.posts-card-index:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 158, 11, 0.2);
  box-shadow: 0 15px 45px rgba(245, 158, 11, 0.12);
}

.posts-card-image-index {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.posts-card-body-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
}

.posts-card-title-index {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
}

.posts-card-text-index {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #cbd5e1;
  flex-grow: 1;
}

.posts-card-link-index {
  display: inline-block;
  color: #f59e0b;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.posts-card-link-index:hover {
  color: #fbbf24;
  transform: translateX(2px);
}

.posts-cta-index {
  text-align: center;
}

.posts-cta-text-index {
  color: #cbd5e1;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

@media (max-width: 768px) {
  .posts-card-index {
    flex: 1 1 100%;
    max-width: none;
  }
}

.values-section {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
}

.values-mesh-bg {
  position: absolute;
  top: 5%;
  left: 0;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.values-glow-center {
  position: absolute;
  bottom: 15%;
  right: 10%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.07) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.values-accent-left {
  position: absolute;
  top: 40%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: rgba(34, 197, 94, 0.06);
  border-radius: 50% 40% 60% 40% / 40% 50% 40% 60%;
  z-index: 2;
  pointer-events: none;
}

.values-accent-right {
  position: absolute;
  bottom: 20%;
  right: 5%;
  width: 220px;
  height: 220px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.values-shape-1 {
  position: absolute;
  top: 10%;
  right: 8%;
  width: 180px;
  height: 140px;
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  transform: rotate(8deg);
  z-index: 2;
  pointer-events: none;
}

.values-shape-2 {
  position: absolute;
  bottom: 10%;
  left: 8%;
  width: 200px;
  height: 160px;
  background: rgba(139, 92, 246, 0.04);
  border: 1px solid rgba(139, 92, 246, 0.08);
  border-radius: 12px;
  transform: rotate(-12deg);
  z-index: 1;
  pointer-events: none;
}

.values-content {
  position: relative;
  z-index: 10;
}

.values-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin-bottom: 1rem;
}

.values-intro-index {
  font-size: 1rem;
  color: #64748b;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.values-grid-index {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.values-item-index {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
}

.values-item-number-index {
  font-size: 2rem;
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
}

.values-item-title-index {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.values-item-text-index {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

@media (max-width: 768px) {
  .values-item-index {
    flex: 1 1 100%;
  }
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #0a0f1e;
}

.contact-glow-1 {
  position: absolute;
  top: 5%;
  right: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.contact-glow-2 {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.07) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.contact-shape-accent {
  position: absolute;
  top: 30%;
  left: 8%;
  width: 250px;
  height: 250px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 45% 55% 50% 50% / 50% 50% 45% 55%;
  z-index: 2;
  pointer-events: none;
}

.contact-line-accent {
  position: absolute;
  top: 25%;
  right: 10%;
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.12), transparent);
  z-index: 2;
  pointer-events: none;
}

.contact-float-element {
  position: absolute;
  bottom: 20%;
  right: 8%;
  width: 200px;
  height: 160px;
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.08);
  border-radius: 12px;
  transform: rotate(10deg);
  z-index: 1;
  pointer-events: none;
}

.contact-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.contact-form-wrapper {
  flex: 1 1 400px;
}

.contact-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.contact-description-index {
  font-size: 1rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-form-index {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-label-index {
  font-size: 0.875rem;
  font-weight: 500;
  color: #e2e8f0;
}

.contact-input-index,
.contact-textarea-index {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
  font-family: var(--font-primary);
  transition: all 0.3s ease;
}

.contact-input-index::placeholder,
.contact-textarea-index::placeholder {
  color: #64748b;
}

.contact-input-index:focus,
.contact-textarea-index:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

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

.contact-submit-btn-index {
  width: 100%;
  padding: 1rem 2rem;
  background: #f59e0b;
  color: #1a1a1a;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
}

.contact-submit-btn-index:hover {
  background: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(245, 158, 11, 0.3);
}

.contact-submit-btn-index:active {
  transform: translateY(0);
}

.contact-privacy-note-index {
  font-size: 0.75rem;
  color: #94a3b8;
  text-align: center;
}

.contact-privacy-link-index {
  color: #f59e0b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-privacy-link-index:hover {
  color: #fbbf24;
}

.contact-info-block {
  flex: 1 1 400px;
}

.contact-info-title-index {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.contact-faq-item-index {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-faq-item-index:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-faq-question-index {
  font-size: 1rem;
  font-weight: 600;
  color: #f59e0b;
  margin-bottom: 0.75rem;
}

.contact-faq-answer-index {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #cbd5e1;
}

@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }

  .contact-form-wrapper,
  .contact-info-block {
    flex: 1 1 100%;
  }
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #111d2f;
}

.cta-glow-1 {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.cta-glow-2 {
  position: absolute;
  bottom: 10%;
  right: 8%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.cta-shape-accent {
  position: absolute;
  top: 35%;
  right: 10%;
  width: 280px;
  height: 280px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
  z-index: 2;
  pointer-events: none;
}

.cta-line-element {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.12), transparent);
  z-index: 2;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-heading-index {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-text-index {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #cbd5e1;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.cta-btn-index {
  display: inline-block;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 1.25rem;
  background: #1e293b;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner-text-index {
  color: #e2e8f0;
  margin: 0;
  font-size: clamp(0.75rem, 1vw, 0.9375rem);
  max-width: 400px;
  line-height: 1.6;
}

.cookie-banner-buttons-index {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: 0.625rem 1.25rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.875rem;
  border: none;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
}

.cookie-btn-accept-index {
  background: #f59e0b;
  color: #1a1a1a;
}

.cookie-btn-accept-index:hover {
  background: #fbbf24;
  transform: translateY(-2px);
}

.cookie-btn-decline-index {
  background: transparent;
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline-index:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }

  .cookie-banner-text-index {
    text-align: center;
    max-width: 100%;
  }

  .cookie-banner-buttons-index {
    width: 100%;
    justify-content: center;
  }

  .cookie-btn-accept-index,
  .cookie-btn-decline-index {
    flex: 1;
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  .approach-step-index {
    flex-direction: column;
    text-align: center;
  }

  .approach-step-number-index {
    font-size: 2rem;
  }

  .philosophy-content {
    gap: 2rem;
  }

  .contact-content {
    gap: 2rem;
  }

  .values-grid-index {
    gap: 1.5rem;
  }
}

@media (min-width: 768px) {
  .hero-section {
    padding: 5rem 0;
  }

  .approach-section,
  .features-section,
  .philosophy-section,
  .posts-section,
  .values-section,
  .contact-section,
  .cta-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .hero-section,
  .approach-section,
  .features-section,
  .philosophy-section,
  .posts-section,
  .values-section,
  .contact-section,
  .cta-section {
    padding: 6rem 0;
  }
}

    /* ==========================================
   FOOTER COMPONENT STYLES
   ========================================== */

.footer {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 5vw, 3rem) 0;
  color: var(--color-text-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .container {
  position: relative;
  z-index: 10;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

/* ========== FOOTER CONTENT WRAPPER ========== */

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3rem);
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

/* ========== ABOUT SECTION ========== */

.footer-about {
  flex: 1 1 280px;
  min-width: 200px;
}

.footer-about-title {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

.footer-about-text {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0;
  font-family: var(--font-primary);
}

/* ========== NAVIGATION SECTION ========== */

.footer-nav-section {
  flex: 1 1 200px;
  min-width: 160px;
}

.footer-nav-title {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.875rem, 2vw, 1.25rem);
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, 1.5vw, 0.875rem);
}

.footer-nav-link {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  font-family: var(--font-primary);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  position: relative;
}

.footer-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-nav-link:hover {
  color: var(--color-primary);
}

.footer-nav-link:hover::after {
  width: 100%;
}

.footer-nav-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ========== CONTACT SECTION ========== */

.footer-contact-section {
  flex: 1 1 240px;
  min-width: 180px;
}

.footer-contact-title {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.875rem, 2vw, 1.25rem);
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: clamp(0.875rem, 2vw, 1.25rem);
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  margin: 0;
  font-family: var(--font-primary);
}

.footer-contact-label {
  font-weight: 600;
  color: var(--color-text-primary);
  display: block;
}

.footer-contact-value {
  color: var(--color-text-secondary);
  line-height: 1.6;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* ========== LEGAL SECTION ========== */

.footer-legal-section {
  flex: 1 1 220px;
  min-width: 160px;
}

.footer-legal-title {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.875rem, 2vw, 1.25rem);
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

.footer-legal-nav {
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, 1.5vw, 0.875rem);
}

.footer-legal-link {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  font-family: var(--font-primary);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  position: relative;
}

.footer-legal-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-legal-link:hover {
  color: var(--color-primary);
}

.footer-legal-link:hover::after {
  width: 100%;
}

.footer-legal-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ========== DIVIDER ========== */

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: clamp(1.5rem, 4vw, 2.5rem) 0;
}

/* ========== COPYRIGHT ========== */

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

.footer-copyright-text {
  font-size: clamp(0.8125rem, 1.2vw, 0.9375rem);
  color: var(--color-text-muted);
  margin: 0;
  font-family: var(--font-primary);
  line-height: 1.6;
}

/* ========== DECORATIVE ELEMENTS ========== */

.footer-deco-glow-1 {
  position: absolute;
  top: -100px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.footer-deco-glow-2 {
  position: absolute;
  bottom: -120px;
  left: -100px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.footer-deco-accent {
  position: absolute;
  top: 40%;
  left: 5%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

/* ========== RESPONSIVE DESIGN ========== */

@media (max-width: 768px) {
  .footer {
    padding: clamp(2.5rem, 6vw, 3.5rem) 0 clamp(1.5rem, 4vw, 2rem) 0;
  }

  .footer-content {
    flex-direction: column;
    gap: clamp(1.75rem, 4vw, 2.5rem);
  }

  .footer-about,
  .footer-nav-section,
  .footer-contact-section,
  .footer-legal-section {
    flex: 1 1 100%;
    min-width: auto;
  }

  .footer-divider {
    margin: clamp(1.25rem, 3vw, 2rem) 0;
  }
}

@media (max-width: 480px) {
  .footer .container {
    padding: 0 clamp(0.875rem, 3vw, 1.5rem);
  }

  .footer-nav,
  .footer-legal-nav {
    gap: clamp(0.5rem, 1vw, 0.75rem);
  }

  .footer-contact-info {
    gap: clamp(0.75rem, 1.5vw, 1rem);
  }

  .footer-about-text {
    font-size: 0.875rem;
  }
}

/* ========== REDUCED MOTION PREFERENCE ========== */

@media (prefers-reduced-motion: reduce) {
  .footer-nav-link,
  .footer-legal-link {
    transition: none;
  }

  .footer-nav-link::after,
  .footer-legal-link::after {
    transition: none;
  }
}
    

/* Category Page Styles */
.category-page-elegant-interiors {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* ==================== HERO SECTION ==================== */
.hero-section-elegant-interiors {
  position: relative;
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--color-bg-primary);
  overflow: hidden;
}

.hero-deco-gradient-field-elegant {
  position: absolute;
  width: 500px;
  height: 500px;
  top: -100px;
  left: -150px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-glow-accent-elegant {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 50%;
  right: -80px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-floating-shape-elegant {
  position: absolute;
  width: 280px;
  height: 280px;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(139, 92, 246, 0.04);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

.hero-content-elegant-interiors {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-header-elegant-interiors {
  margin-bottom: 3rem;
}

.hero-tag-elegant-interiors {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero-title-elegant-interiors {
  font-size: clamp(2rem, 6vw + 0.5rem, 4rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-description-elegant-interiors {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: 0;
}

.hero-stats-elegant-interiors {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  justify-content: center;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item-elegant-interiors {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.stat-number-elegant-interiors {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  font-family: var(--font-primary);
}

.stat-label-elegant-interiors {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #94a3b8;
  font-weight: 500;
}

/* ==================== POSTS SECTION ==================== */
.posts-section-elegant-interiors {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--color-bg-secondary);
  overflow: hidden;
}

.posts-deco-mesh-elegant {
  position: absolute;
  width: 600px;
  height: 600px;
  top: -150px;
  right: -200px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.posts-deco-accent-elegant {
  position: absolute;
  width: 250px;
  height: 250px;
  bottom: 50px;
  left: 5%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.05) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.posts-header-elegant-interiors {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 10;
}

.posts-title-elegant-interiors {
  font-size: clamp(2rem, 5vw + 0.5rem, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.posts-subtitle-elegant-interiors {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
}

.posts-grid-elegant-interiors {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  position: relative;
  z-index: 10;
}

.card-elegant-interiors {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  flex: 1 1 320px;
  max-width: 400px;
  transition: all 0.3s ease;
}

.card-elegant-interiors:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.card-image-elegant-interiors {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(6, 182, 212, 0.1));
}

.card-title-elegant-interiors {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.card-description-elegant-interiors {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  flex-grow: 1;
}

.card-meta-elegant-interiors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.meta-badge-elegant-interiors {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  background: rgba(245, 158, 11, 0.12);
  color: #cbd5e1;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 500;
}

.meta-badge-elegant-interiors i {
  color: var(--color-primary);
  font-size: 0.85rem;
}

.card-link-elegant-interiors {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  margin-top: auto;
  padding-top: 1rem;
}

.card-link-elegant-interiors:hover {
  color: var(--color-primary-hover);
  transform: translateX(4px);
}

.card-link-elegant-interiors::after {
  content: '→';
  font-size: 1.1em;
}

/* ==================== PRINCIPLES SECTION ==================== */
.principles-section-elegant-interiors {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--color-bg-primary);
  overflow: hidden;
}

.principles-deco-shape-elegant {
  position: absolute;
  width: 350px;
  height: 350px;
  top: 30%;
  right: -100px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%;
  z-index: 1;
  pointer-events: none;
}

.principles-header-elegant-interiors {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 10;
}

.principles-title-elegant-interiors {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
}

.principles-steps-elegant-interiors {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

.principle-step-elegant-interiors {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.principle-step-elegant-interiors:hover {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.2);
}

.principle-number-elegant-interiors {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  min-width: 80px;
  font-family: var(--font-primary);
}

.principle-content-elegant-interiors {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.principle-step-title-elegant-interiors {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #ffffff;
}

.principle-step-text-elegant-interiors {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: #cbd5e1;
  line-height: 1.7;
}

/* ==================== INSIGHT SECTION ==================== */
.insight-section-elegant-interiors {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  background: var(--color-bg-tertiary);
  overflow: hidden;
}

.insight-deco-glow-elegant {
  position: absolute;
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.insight-content-elegant-interiors {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

.featured-quote-elegant-interiors {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(245, 158, 11, 0.08);
  border-radius: var(--radius-lg);
  margin: 0;
}

.quote-text-elegant-interiors {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: #ffffff;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.quote-author-elegant-interiors {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #94a3b8;
  font-style: normal;
  font-weight: 500;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .hero-stats-elegant-interiors {
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .principle-step-elegant-interiors {
    flex-direction: column;
    gap: 1rem;
  }

  .principle-number-elegant-interiors {
    font-size: 2.5rem;
  }

  .card-elegant-interiors {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero-title-elegant-interiors {
    font-size: 1.75rem;
  }

  .stat-item-elegant-interiors {
    flex: 1 1 45%;
  }

  .principle-step-elegant-interiors {
    padding: 1.25rem;
    gap: 1rem;
  }

  .featured-quote-elegant-interiors {
    padding: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Post Page 1 Styles */
.main-color-psychology-design {
  width: 100%;
  background: #ffffff;
  color: #1a1a1a;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.hero-section-color-psychology-design {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.hero-content-color-psychology-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-wrapper-color-psychology-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-color-psychology-design {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-color-psychology-design {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #475569;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.6;
}

.meta-badges-color-psychology-design {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.meta-badge-color-psychology-design {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #1e293b;
}

.meta-badge-color-psychology-design i {
  color: #3b82f6;
  font-size: 1rem;
}

.hero-image-wrapper-color-psychology-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-color-psychology-design {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.breadcrumbs-color-psychology-design {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.breadcrumbs-color-psychology-design a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-color-psychology-design a:hover {
  color: #1e40af;
  text-decoration: underline;
}

.breadcrumbs-color-psychology-design span {
  color: #9ca3af;
}

.intro-section-color-psychology-design {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-color-psychology-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-block-color-psychology-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-color-psychology-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.2;
}

.intro-text-color-psychology-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-block-color-psychology-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-color-psychology-design {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.concept-section-color-psychology-design {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.section-header-color-psychology-design {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-tag-color-psychology-design {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-title-color-psychology-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.concept-content-color-psychology-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.concept-text-block-color-psychology-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.concept-subtitle-color-psychology-design {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.concept-text-color-psychology-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.concept-image-block-color-psychology-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.concept-image-color-psychology-design {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.colors-guide-section-color-psychology-design {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.colors-cards-color-psychology-design {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.color-card-color-psychology-design {
  flex: 1 1 250px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.color-card-color-psychology-design:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.color-card-swatch-color-psychology-design {
  width: 100%;
  height: 80px;
  border-radius: 8px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.color-card-title-color-psychology-design {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.color-card-text-color-psychology-design {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.application-section-color-psychology-design {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.application-steps-color-psychology-design {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.step-item-color-psychology-design {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
  transition: box-shadow 0.3s ease;
}

.step-item-color-psychology-design:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.step-number-color-psychology-design {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.step-content-color-psychology-design {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

.step-title-color-psychology-design {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.step-text-color-psychology-design {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.experience-section-color-psychology-design {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.experience-content-color-psychology-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.experience-text-block-color-psychology-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.experience-title-color-psychology-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.2;
}

.experience-quote-color-psychology-design {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #3b82f6;
  background: #f8fafc;
  margin: clamp(1.5rem, 2vw, 2rem) 0;
  border-radius: 8px;
}

.quote-text-color-psychology-design {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-author-color-psychology-design {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

.experience-text-color-psychology-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.experience-image-block-color-psychology-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.experience-image-color-psychology-design {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.practical-section-color-psychology-design {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practical-content-color-psychology-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.practical-text-block-color-psychology-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-subtitle-color-psychology-design {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.practical-text-color-psychology-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.practical-image-block-color-psychology-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-image-color-psychology-design {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.conclusion-section-color-psychology-design {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-color-psychology-design {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-color-psychology-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.2;
}

.conclusion-text-color-psychology-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.related-section-color-psychology-design {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
}

.related-title-color-psychology-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.2;
}

.related-cards-color-psychology-design {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-color-psychology-design {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-color-psychology-design:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.related-image-color-psychology-design {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
}

.related-image-color-psychology-design img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-title-color-psychology-design {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.related-card-text-color-psychology-design {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.disclaimer-section-color-psychology-design {
  background: #f3f4f6;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
}

.disclaimer-content-color-psychology-design {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
}

.disclaimer-title-color-psychology-design {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.disclaimer-text-color-psychology-design {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #64748b;
  line-height: 1.7;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

@media (max-width: 768px) {
  .hero-content-color-psychology-design,
  .intro-content-color-psychology-design,
  .concept-content-color-psychology-design,
  .experience-content-color-psychology-design,
  .practical-content-color-psychology-design {
    flex-direction: column;
  }

  .hero-text-wrapper-color-psychology-design,
  .hero-image-wrapper-color-psychology-design,
  .intro-text-block-color-psychology-design,
  .intro-image-block-color-psychology-design,
  .concept-text-block-color-psychology-design,
  .concept-image-block-color-psychology-design,
  .experience-text-block-color-psychology-design,
  .experience-image-block-color-psychology-design,
  .practical-text-block-color-psychology-design,
  .practical-image-block-color-psychology-design {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-item-color-psychology-design {
    gap: 1rem;
  }

  .step-number-color-psychology-design {
    min-width: 50px;
  }

  .related-card-color-psychology-design {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero-title-color-psychology-design {
    font-size: 1.5rem;
  }

  .section-title-color-psychology-design {
    font-size: 1.25rem;
  }

  .meta-badges-color-psychology-design {
    gap: 0.75rem;
  }

  .meta-badge-color-psychology-design {
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
  }
}

/* Post Page 2 Styles */
.main-minimalist-space-design {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  overflow-x: hidden;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.hero-section-minimalist-space-design {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.breadcrumbs-minimalist-space-design {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.breadcrumbs-minimalist-space-design a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-minimalist-space-design a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-minimalist-space-design span {
  color: var(--color-text-muted);
}

.hero-content-minimalist-space-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-text-block-minimalist-space-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-minimalist-space-design {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.15;
}

.hero-subtitle-minimalist-space-design {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.hero-meta-minimalist-space-design {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.meta-badge-minimalist-space-design {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 20px;
  font-size: 0.875rem;
  color: var(--color-primary);
}

.meta-badge-minimalist-space-design i {
  color: var(--color-primary);
}

.hero-image-block-minimalist-space-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-minimalist-space-design {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  max-height: 400px;
}

@media (max-width: 768px) {
  .hero-content-minimalist-space-design {
    flex-direction: column;
  }

  .hero-text-block-minimalist-space-design,
  .hero-image-block-minimalist-space-design {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-minimalist-space-design {
    max-height: 300px;
  }
}

.intro-section-minimalist-space-design {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-minimalist-space-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-text-minimalist-space-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-minimalist-space-design {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.intro-description-minimalist-space-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.intro-image-minimalist-space-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-img-minimalist-space-design {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  max-height: 350px;
}

@media (max-width: 768px) {
  .intro-content-minimalist-space-design {
    flex-direction: column;
  }

  .intro-text-minimalist-space-design,
  .intro-image-minimalist-space-design {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.principles-section-minimalist-space-design {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.principles-header-minimalist-space-design {
  text-align: center;
  margin-bottom: 3rem;
}

.principles-tag-minimalist-space-design {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.principles-title-minimalist-space-design {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 700;
}

.principles-subtitle-minimalist-space-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.principles-steps-minimalist-space-design {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 2rem);
}

.principles-step-minimalist-space-design {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
}

.principles-step-number-minimalist-space-design {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.principles-step-content-minimalist-space-design {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.principles-step-title-minimalist-space-design {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #ffffff;
  font-weight: 600;
}

.principles-step-text-minimalist-space-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .principles-step-minimalist-space-design {
    gap: 1rem;
  }

  .principles-step-number-minimalist-space-design {
    min-width: 50px;
    font-size: 1.75rem;
  }
}

.features-section-minimalist-space-design {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.features-content-minimalist-space-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.features-text-minimalist-space-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.features-title-minimalist-space-design {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 700;
}

.features-description-minimalist-space-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.features-cards-minimalist-space-design {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.features-card-minimalist-space-design {
  flex: 1 1 calc(50% - 0.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}

.features-card-minimalist-space-design:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-primary);
}

.features-card-icon-minimalist-space-design {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.15);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.25rem;
}

.features-card-title-minimalist-space-design {
  font-size: 1.125rem;
  color: #ffffff;
  font-weight: 600;
}

.features-card-text-minimalist-space-design {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.features-image-minimalist-space-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.features-image-img-minimalist-space-design {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  max-height: 350px;
}

@media (max-width: 768px) {
  .features-content-minimalist-space-design {
    flex-direction: column;
  }

  .features-text-minimalist-space-design,
  .features-image-minimalist-space-design {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .features-cards-minimalist-space-design {
    gap: 1rem;
  }

  .features-card-minimalist-space-design {
    flex: 1 1 100%;
  }
}

.implementation-section-minimalist-space-design {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.implementation-header-minimalist-space-design {
  text-align: center;
  margin-bottom: 3rem;
}

.implementation-title-minimalist-space-design {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: 1rem;
  font-weight: 700;
}

.implementation-subtitle-minimalist-space-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.implementation-content-minimalist-space-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: 3rem;
}

.implementation-text-minimalist-space-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-section-title-minimalist-space-design {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.5rem);
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

.implementation-section-title-minimalist-space-design:first-child {
  margin-top: 0;
}

.implementation-text-block-minimalist-space-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.implementation-quote-minimalist-space-design {
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: #f8fafc;
  margin: 2rem 0;
  border-radius: var(--radius-md);
}

.quote-text-minimalist-space-design {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #0f172a;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-author-minimalist-space-design {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

.implementation-image-minimalist-space-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-image-img-minimalist-space-design {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  max-height: 350px;
}

.implementation-text-2-minimalist-space-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-image-2-minimalist-space-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-image-2-img-minimalist-space-design {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  max-height: 350px;
}

@media (max-width: 768px) {
  .implementation-content-minimalist-space-design {
    flex-direction: column;
  }

  .implementation-text-minimalist-space-design,
  .implementation-image-minimalist-space-design,
  .implementation-text-2-minimalist-space-design,
  .implementation-image-2-minimalist-space-design {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.benefits-section-minimalist-space-design {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.benefits-header-minimalist-space-design {
  text-align: center;
  margin-bottom: 3rem;
}

.benefits-title-minimalist-space-design {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  font-weight: 700;
}

.benefits-grid-minimalist-space-design {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.benefits-item-minimalist-space-design {
  flex: 1 1 calc(50% - 0.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  text-align: center;
}

.benefits-item-icon-minimalist-space-design {
  font-size: 2.5rem;
  color: var(--color-primary);
}

.benefits-item-title-minimalist-space-design {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #ffffff;
  font-weight: 600;
}

.benefits-item-text-minimalist-space-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .benefits-item-minimalist-space-design {
    flex: 1 1 100%;
  }
}

.conclusion-section-minimalist-space-design {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-minimalist-space-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.conclusion-text-minimalist-space-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-title-minimalist-space-design {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.conclusion-description-minimalist-space-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.conclusion-image-minimalist-space-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-image-img-minimalist-space-design {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  max-height: 350px;
}

@media (max-width: 768px) {
  .conclusion-content-minimalist-space-design {
    flex-direction: column;
  }

  .conclusion-text-minimalist-space-design,
  .conclusion-image-minimalist-space-design {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.related-section-minimalist-space-design {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-minimalist-space-design {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-minimalist-space-design {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 700;
}

.related-subtitle-minimalist-space-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

.related-cards-minimalist-space-design {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.related-card-minimalist-space-design {
  flex: 1 1 calc(33.333% - 1rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.related-card-minimalist-space-design:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.15);
}

.related-card-image-minimalist-space-design {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-img-minimalist-space-design {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-minimalist-space-design {
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-minimalist-space-design {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #ffffff;
  font-weight: 600;
  line-height: 1.3;
}

.related-card-text-minimalist-space-design {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .related-card-minimalist-space-design {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .related-card-minimalist-space-design {
    flex: 1 1 100%;
  }
}

.disclaimer-section-minimalist-space-design {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-minimalist-space-design {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(245, 158, 11, 0.1);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
}

.disclaimer-icon-minimalist-space-design {
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.disclaimer-text-minimalist-space-design {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.disclaimer-title-minimalist-space-design {
  font-size: 1.125rem;
  color: #ffffff;
  font-weight: 600;
}

.disclaimer-body-minimalist-space-design {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .disclaimer-content-minimalist-space-design {
    flex-direction: column;
    gap: 1rem;
  }

  .disclaimer-icon-minimalist-space-design {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .hero-title-minimalist-space-design {
    font-size: 1.75rem;
  }

  .intro-title-minimalist-space-design,
  .principles-title-minimalist-space-design,
  .features-title-minimalist-space-design,
  .implementation-title-minimalist-space-design,
  .benefits-title-minimalist-space-design,
  .conclusion-title-minimalist-space-design,
  .related-title-minimalist-space-design {
    font-size: 1.5rem;
  }
}

/* Post Page 3 Styles */
.main-natural-materials-texture {
  width: 100%;
}

.hero-section-natural-materials-texture {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-natural-materials-texture .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.breadcrumbs-natural-materials-texture {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-natural-materials-texture a {
  color: #06b6d4;
  transition: color 0.3s ease;
}

.breadcrumbs-natural-materials-texture a:hover {
  color: #f59e0b;
}

.breadcrumbs-natural-materials-texture span {
  color: #64748b;
}

.breadcrumbs-natural-materials-texture a:last-child {
  color: #cbd5e1;
}

.hero-content-natural-materials-texture {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-wrapper-natural-materials-texture {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-wrapper-natural-materials-texture {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-natural-materials-texture {
  color: #ffffff;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  margin-bottom: 1rem;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-natural-materials-texture {
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.article-meta-natural-materials-texture {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.meta-badge-natural-materials-texture {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #f59e0b;
}

.meta-badge-natural-materials-texture i {
  font-size: 1rem;
}

.hero-image-natural-materials-texture {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-width: 100%;
}

@media (max-width: 768px) {
  .hero-content-natural-materials-texture {
    flex-direction: column;
  }

  .hero-text-wrapper-natural-materials-texture,
  .hero-image-wrapper-natural-materials-texture {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .breadcrumbs-natural-materials-texture {
    font-size: 0.75rem;
  }
}

.introduction-section-natural-materials-texture {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.introduction-section-natural-materials-texture .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.introduction-content-natural-materials-texture {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.introduction-text-natural-materials-texture {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-image-natural-materials-texture {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-title-natural-materials-texture {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.introduction-description-natural-materials-texture {
  color: #374151;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.introduction-image-content-natural-materials-texture {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-width: 100%;
}

@media (max-width: 768px) {
  .introduction-content-natural-materials-texture {
    flex-direction: column;
  }

  .introduction-text-natural-materials-texture,
  .introduction-image-natural-materials-texture {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-primary-section-natural-materials-texture {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.content-primary-section-natural-materials-texture .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.content-primary-wrapper-natural-materials-texture {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-primary-text-natural-materials-texture {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-primary-image-natural-materials-texture {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-primary-title-natural-materials-texture {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-primary-description-natural-materials-texture {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.content-primary-image-content-natural-materials-texture {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-width: 100%;
}

@media (max-width: 768px) {
  .content-primary-wrapper-natural-materials-texture {
    flex-direction: column;
  }

  .content-primary-text-natural-materials-texture,
  .content-primary-image-natural-materials-texture {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-secondary-section-natural-materials-texture {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.content-secondary-section-natural-materials-texture .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.content-secondary-wrapper-natural-materials-texture {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-secondary-text-natural-materials-texture {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-secondary-image-natural-materials-texture {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-secondary-title-natural-materials-texture {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-secondary-description-natural-materials-texture {
  color: #374151;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.content-secondary-image-content-natural-materials-texture {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-width: 100%;
}

@media (max-width: 768px) {
  .content-secondary-wrapper-natural-materials-texture {
    flex-direction: column-reverse;
  }

  .content-secondary-text-natural-materials-texture,
  .content-secondary-image-natural-materials-texture {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-tertiary-section-natural-materials-texture {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.content-tertiary-section-natural-materials-texture .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.content-tertiary-wrapper-natural-materials-texture {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-tertiary-text-natural-materials-texture {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-tertiary-image-natural-materials-texture {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-tertiary-title-natural-materials-texture {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-tertiary-description-natural-materials-texture {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.content-tertiary-image-content-natural-materials-texture {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-width: 100%;
}

@media (max-width: 768px) {
  .content-tertiary-wrapper-natural-materials-texture {
    flex-direction: column;
  }

  .content-tertiary-text-natural-materials-texture,
  .content-tertiary-image-natural-materials-texture {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.techniques-section-natural-materials-texture {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.techniques-section-natural-materials-texture .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.techniques-header-natural-materials-texture {
  text-align: center;
  margin-bottom: 3rem;
}

.techniques-tag-natural-materials-texture {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.techniques-title-natural-materials-texture {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.techniques-subtitle-natural-materials-texture {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.techniques-list-natural-materials-texture {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.technique-step-natural-materials-texture {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.technique-number-natural-materials-texture {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: #f59e0b;
  flex-shrink: 0;
  min-width: 60px;
}

.technique-content-natural-materials-texture {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.technique-title-natural-materials-texture {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
}

.technique-text-natural-materials-texture {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .technique-step-natural-materials-texture {
    flex-direction: column;
    gap: 1rem;
  }

  .technique-number-natural-materials-texture {
    font-size: 2rem;
  }
}

.highlight-section-natural-materials-texture {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.highlight-section-natural-materials-texture .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.featured-quote-natural-materials-texture {
  padding: 2rem 2.5rem;
  border-left: 4px solid #f59e0b;
  background: rgba(245, 158, 11, 0.08);
  margin: 0;
  text-align: center;
}

.quote-text-natural-materials-texture {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-author-natural-materials-texture {
  color: #cbd5e1;
  font-size: 0.875rem;
  font-style: normal;
}

.conclusion-section-natural-materials-texture {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.conclusion-section-natural-materials-texture .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.conclusion-content-natural-materials-texture {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.conclusion-text-natural-materials-texture {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-image-natural-materials-texture {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-title-natural-materials-texture {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conclusion-description-natural-materials-texture {
  color: #374151;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-cta-natural-materials-texture {
  margin-top: 2rem;
}

.btn-primary-cta-natural-materials-texture {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f59e0b;
  color: #0f172a;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary-cta-natural-materials-texture:hover {
  background: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(245, 158, 11, 0.3);
}

.conclusion-image-content-natural-materials-texture {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-width: 100%;
}

@media (max-width: 768px) {
  .conclusion-content-natural-materials-texture {
    flex-direction: column;
  }

  .conclusion-text-natural-materials-texture,
  .conclusion-image-natural-materials-texture {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.disclaimer-section-natural-materials-texture {
  background: #0d1526;
  padding: clamp(2rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.disclaimer-section-natural-materials-texture .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.disclaimer-content-natural-materials-texture {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-natural-materials-texture {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  margin-bottom: 1rem;
  font-weight: 600;
}

.disclaimer-text-natural-materials-texture {
  color: #94a3b8;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.8;
}

.related-section-natural-materials-texture {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.related-section-natural-materials-texture .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.related-header-natural-materials-texture {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-natural-materials-texture {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.related-subtitle-natural-materials-texture {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

.related-cards-natural-materials-texture {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.related-card-natural-materials-texture {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-natural-materials-texture:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.related-card-image-natural-materials-texture {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #e2e8f0;
}

.related-card-img-natural-materials-texture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-natural-materials-texture {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
}

.related-card-title-natural-materials-texture {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
}

.related-card-description-natural-materials-texture {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

.related-card-link-natural-materials-texture {
  color: #f59e0b;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: 0.5rem;
}

.related-card-link-natural-materials-texture:hover {
  color: #fbbf24;
}

@media (max-width: 768px) {
  .related-card-natural-materials-texture {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* Post Page 4 Styles */
.main-lighting-design-strategy {
  width: 100%;
}

.hero-section-lighting-design-strategy {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-lighting-design-strategy .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.breadcrumbs-lighting-design-strategy {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.breadcrumbs-lighting-design-strategy a {
  color: #06b6d4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-lighting-design-strategy a:hover {
  color: #f59e0b;
}

.breadcrumbs-lighting-design-strategy span {
  color: #64748b;
}

.hero-content-lighting-design-strategy {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-text-wrapper-lighting-design-strategy {
  flex: 1 1 300px;
  max-width: 50%;
}

.hero-title-lighting-design-strategy {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-lighting-design-strategy {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #94a3b8;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.article-meta-lighting-design-strategy {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.meta-badge-lighting-design-strategy {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-lighting-design-strategy i {
  font-size: 0.875rem;
}

.hero-image-wrapper-lighting-design-strategy {
  flex: 1 1 300px;
  max-width: 50%;
}

.hero-image-lighting-design-strategy {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero-content-lighting-design-strategy {
    flex-direction: column;
  }

  .hero-text-wrapper-lighting-design-strategy,
  .hero-image-wrapper-lighting-design-strategy {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.introduction-section-lighting-design-strategy {
  background: #0d1526;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.introduction-section-lighting-design-strategy .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.introduction-content-lighting-design-strategy {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.introduction-text-lighting-design-strategy {
  flex: 1 1 300px;
  max-width: 50%;
}

.introduction-title-lighting-design-strategy {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.introduction-body-lighting-design-strategy {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.introduction-body-lighting-design-strategy:last-of-type {
  margin-bottom: 0;
}

.introduction-image-wrapper-lighting-design-strategy {
  flex: 1 1 300px;
  max-width: 50%;
}

.introduction-image-lighting-design-strategy {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .introduction-content-lighting-design-strategy {
    flex-direction: column;
  }

  .introduction-text-lighting-design-strategy,
  .introduction-image-wrapper-lighting-design-strategy {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.principles-section-lighting-design-strategy {
  background: #111d2f;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.principles-section-lighting-design-strategy .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.principles-header-lighting-design-strategy {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-tag-lighting-design-strategy {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.principles-title-lighting-design-strategy {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.principles-subtitle-lighting-design-strategy {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.principles-steps-lighting-design-strategy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.principles-step-lighting-design-strategy {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(245, 158, 11, 0.1);
}

.principles-step-number-lighting-design-strategy {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: #f59e0b;
  flex-shrink: 0;
  min-width: 60px;
}

.principles-step-content-lighting-design-strategy {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.principles-step-title-lighting-design-strategy {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.principles-step-text-lighting-design-strategy {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  color: #cbd5e1;
}

@media (max-width: 768px) {
  .principles-step-lighting-design-strategy {
    flex-direction: column;
    align-items: flex-start;
  }
}

.space-transformation-section-lighting-design-strategy {
  background: #0d1526;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.space-transformation-section-lighting-design-strategy .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.space-transformation-wrapper-lighting-design-strategy {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.space-transformation-text-lighting-design-strategy {
  flex: 1 1 300px;
  max-width: 50%;
}

.space-transformation-title-lighting-design-strategy {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.space-transformation-body-lighting-design-strategy {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.space-transformation-body-lighting-design-strategy:last-of-type {
  margin-bottom: 0;
}

.space-transformation-image-wrapper-lighting-design-strategy {
  flex: 1 1 300px;
  max-width: 50%;
}

.space-transformation-image-lighting-design-strategy {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .space-transformation-wrapper-lighting-design-strategy {
    flex-direction: column;
  }

  .space-transformation-text-lighting-design-strategy,
  .space-transformation-image-wrapper-lighting-design-strategy {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.features-section-lighting-design-strategy {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.features-section-lighting-design-strategy .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.features-header-lighting-design-strategy {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.features-title-lighting-design-strategy {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.features-cards-lighting-design-strategy {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.features-card-lighting-design-strategy {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(245, 158, 11, 0.1);
  transition: all 0.3s ease;
}

.features-card-lighting-design-strategy:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.15);
}

.features-card-icon-lighting-design-strategy {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f59e0b;
  font-size: 1.5rem;
}

.features-card-title-lighting-design-strategy {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.features-card-text-lighting-design-strategy {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  color: #cbd5e1;
}

@media (max-width: 768px) {
  .features-card-lighting-design-strategy {
    flex: 1 1 100%;
    max-width: none;
  }
}

.application-section-lighting-design-strategy {
  background: #111d2f;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.application-section-lighting-design-strategy .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.application-wrapper-lighting-design-strategy {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.application-image-wrapper-lighting-design-strategy {
  flex: 1 1 300px;
  max-width: 50%;
  order: -1;
}

.application-image-lighting-design-strategy {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.application-text-lighting-design-strategy {
  flex: 1 1 300px;
  max-width: 50%;
}

.application-title-lighting-design-strategy {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.application-body-lighting-design-strategy {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.featured-quote-lighting-design-strategy {
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #f59e0b;
  background: rgba(245, 158, 11, 0.08);
  margin: 1.5rem 0;
  font-style: italic;
  border-radius: 8px;
}

.featured-quote-lighting-design-strategy p {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.featured-quote-lighting-design-strategy cite {
  font-size: 0.875rem;
  color: #94a3b8;
  font-style: normal;
}

@media (max-width: 768px) {
  .application-wrapper-lighting-design-strategy {
    flex-direction: column;
  }

  .application-image-wrapper-lighting-design-strategy,
  .application-text-lighting-design-strategy {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }
}

.conclusion-section-lighting-design-strategy {
  background: #0d1526;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.conclusion-section-lighting-design-strategy .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.conclusion-content-lighting-design-strategy {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.conclusion-text-lighting-design-strategy {
  flex: 1 1 300px;
  max-width: 50%;
}

.conclusion-title-lighting-design-strategy {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conclusion-body-lighting-design-strategy {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.conclusion-body-lighting-design-strategy:last-of-type {
  margin-bottom: 0;
}

.conclusion-image-wrapper-lighting-design-strategy {
  flex: 1 1 300px;
  max-width: 50%;
}

.conclusion-image-lighting-design-strategy {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .conclusion-content-lighting-design-strategy {
    flex-direction: column;
  }

  .conclusion-text-lighting-design-strategy,
  .conclusion-image-wrapper-lighting-design-strategy {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.disclaimer-section-lighting-design-strategy {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.disclaimer-section-lighting-design-strategy .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.disclaimer-box-lighting-design-strategy {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.disclaimer-title-lighting-design-strategy {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #a5b4fc;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-title-lighting-design-strategy i {
  font-size: 1.25rem;
}

.disclaimer-text-lighting-design-strategy {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.8;
}

.related-section-lighting-design-strategy {
  background: #111d2f;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.related-section-lighting-design-strategy .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.related-header-lighting-design-strategy {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.related-title-lighting-design-strategy {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.related-subtitle-lighting-design-strategy {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #94a3b8;
}

.related-cards-lighting-design-strategy {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-lighting-design-strategy {
  flex: 1 1 300px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.1);
  transition: all 0.3s ease;
}

.related-card-lighting-design-strategy:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.15);
}

.related-card-image-lighting-design-strategy {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-lighting-design-strategy img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-lighting-design-strategy:hover .related-card-image-lighting-design-strategy img {
  transform: scale(1.05);
}

.related-card-content-lighting-design-strategy {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  flex-grow: 1;
  position: relative;
}

.related-card-title-lighting-design-strategy {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
}

.related-card-text-lighting-design-strategy {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-arrow-lighting-design-strategy {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: auto;
  color: #f59e0b;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.related-card-lighting-design-strategy:hover .related-card-arrow-lighting-design-strategy {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .related-card-lighting-design-strategy {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero-title-lighting-design-strategy {
    font-size: 1.5rem;
  }

  .principles-step-number-lighting-design-strategy {
    min-width: 50px;
    font-size: 1.75rem;
  }

  .breadcrumbs-lighting-design-strategy {
    font-size: 0.75rem;
  }
}

/* Post Page 5 Styles */
.main-small-space-optimization {
  width: 100%;
  background: var(--color-bg-primary);
}

.hero-section-small-space-optimization {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.breadcrumbs-small-space-optimization {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-small-space-optimization a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-small-space-optimization a:hover {
  color: var(--color-primary-hover);
}

.breadcrumbs-small-space-optimization span {
  color: var(--color-text-muted);
}

.hero-content-small-space-optimization {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-text-block-small-space-optimization {
  flex: 1 1 350px;
  max-width: 50%;
}

.hero-title-small-space-optimization {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-subtitle-small-space-optimization {
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-meta-small-space-optimization {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.meta-badge-small-space-optimization {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 20px;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.meta-badge-small-space-optimization i {
  color: var(--color-primary);
}

.hero-image-block-small-space-optimization {
  flex: 1 1 350px;
  max-width: 50%;
}

.hero-image-small-space-optimization {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .hero-content-small-space-optimization {
    flex-direction: column;
  }

  .hero-text-block-small-space-optimization,
  .hero-image-block-small-space-optimization {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .meta-badge-small-space-optimization {
    font-size: 0.8125rem;
    padding: 0.375rem 0.875rem;
  }
}

.intro-section-small-space-optimization {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-wrapper-small-space-optimization {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-text-small-space-optimization {
  flex: 1 1 350px;
  max-width: 50%;
}

.intro-title-small-space-optimization {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-description-small-space-optimization {
  color: var(--color-text-secondary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.intro-image-small-space-optimization {
  flex: 1 1 350px;
  max-width: 50%;
}

.intro-image-img-small-space-optimization {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .intro-wrapper-small-space-optimization {
    flex-direction: column;
  }

  .intro-text-small-space-optimization,
  .intro-image-small-space-optimization {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-one-small-space-optimization {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-one-small-space-optimization {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-text-one-small-space-optimization {
  flex: 1 1 350px;
  max-width: 50%;
}

.content-title-one-small-space-optimization {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-description-one-small-space-optimization {
  color: var(--color-text-secondary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.content-highlights-small-space-optimization {
  background: rgba(245, 158, 11, 0.08);
  padding: 1.5rem;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.highlight-title-small-space-optimization {
  color: var(--color-primary);
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.highlight-list-small-space-optimization {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.highlight-item-small-space-optimization {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.highlight-item-small-space-optimization::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.content-image-one-small-space-optimization {
  flex: 1 1 350px;
  max-width: 50%;
}

.content-img-one-small-space-optimization {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .content-wrapper-one-small-space-optimization {
    flex-direction: column;
  }

  .content-text-one-small-space-optimization,
  .content-image-one-small-space-optimization {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-two-small-space-optimization {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-two-small-space-optimization {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-image-two-small-space-optimization {
  flex: 1 1 350px;
  max-width: 50%;
  order: -1;
}

.content-img-two-small-space-optimization {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

.content-text-two-small-space-optimization {
  flex: 1 1 350px;
  max-width: 50%;
}

.content-title-two-small-space-optimization {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-description-two-small-space-optimization {
  color: var(--color-text-secondary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.quote-section-small-space-optimization {
  padding: 2rem 2.5rem;
  border-left: 4px solid var(--color-primary);
  background: rgba(245, 158, 11, 0.08);
  margin: 2rem 0;
  border-radius: var(--radius-md);
}

.quote-text-small-space-optimization {
  color: var(--color-text-primary);
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.quote-author-small-space-optimization {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  font-style: normal;
}

@media (max-width: 768px) {
  .content-wrapper-two-small-space-optimization {
    flex-direction: column;
  }

  .content-image-two-small-space-optimization,
  .content-text-two-small-space-optimization {
    flex: 1 1 100%;
    max-width: 100%;
    order: unset;
  }
}

.content-section-three-small-space-optimization {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-three-small-space-optimization {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-text-three-small-space-optimization {
  flex: 1 1 350px;
  max-width: 50%;
}

.content-title-three-small-space-optimization {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-description-three-small-space-optimization {
  color: var(--color-text-secondary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.color-strategy-small-space-optimization {
  background: rgba(245, 158, 11, 0.08);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.strategy-title-small-space-optimization {
  color: var(--color-primary);
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.strategy-grid-small-space-optimization {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.strategy-item-small-space-optimization {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.strategy-label-small-space-optimization {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9375rem;
}

.strategy-text-small-space-optimization {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.content-image-three-small-space-optimization {
  flex: 1 1 350px;
  max-width: 50%;
}

.content-img-three-small-space-optimization {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .content-wrapper-three-small-space-optimization {
    flex-direction: column;
  }

  .content-text-three-small-space-optimization,
  .content-image-three-small-space-optimization {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-small-space-optimization {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-small-space-optimization {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.conclusion-title-small-space-optimization {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  text-align: center;
}

.conclusion-text-block-small-space-optimization {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-description-small-space-optimization {
  color: var(--color-text-secondary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
}

.conclusion-cta-small-space-optimization {
  background: rgba(245, 158, 11, 0.1);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-top: 1rem;
}

.cta-title-small-space-optimization {
  color: var(--color-text-primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.cta-description-small-space-optimization {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.related-section-small-space-optimization {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-small-space-optimization {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-small-space-optimization {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.related-subtitle-small-space-optimization {
  color: var(--color-text-secondary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
}

.related-cards-small-space-optimization {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-small-space-optimization {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-small-space-optimization:hover {
  transform: translateY(-5px);
}

.related-card-image-small-space-optimization {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.related-img-small-space-optimization {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.related-card-small-space-optimization:hover .related-img-small-space-optimization {
  transform: scale(1.05);
}

.related-card-content-small-space-optimization {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0 0.5rem;
}

.related-card-title-small-space-optimization {
  color: var(--color-text-primary);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.4;
}

.related-card-text-small-space-optimization {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.related-card-link-small-space-optimization {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

.related-card-link-small-space-optimization:hover {
  color: var(--color-primary-hover);
  gap: 0.75rem;
}

.related-card-link-small-space-optimization::after {
  content: "→";
}

@media (max-width: 768px) {
  .related-card-small-space-optimization {
    flex: 1 1 100%;
    max-width: none;
  }
}

.disclaimer-section-small-space-optimization {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.disclaimer-content-small-space-optimization {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-small-space-optimization {
  color: var(--color-text-primary);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.disclaimer-text-small-space-optimization {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-meta-small-space-optimization {
    gap: 0.75rem;
  }

  .related-header-small-space-optimization {
    margin-bottom: 2rem;
  }
}

/* About Page Styles */
:root {
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #0d1526;
  --color-bg-tertiary: #111d2f;
  --color-bg-card: rgba(255, 255, 255, 0.05);
  --color-text-primary: #ffffff;
  --color-text-secondary: #94a3b8;
  --color-text-muted: #64748b;
  --color-primary: #f59e0b;
  --color-primary-hover: #fbbf24;
  --color-secondary: #06b6d4;
  --color-accent-tertiary: #8b5cf6;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Noto Serif JP', serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
}

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 5vw, 2rem);
  padding-right: clamp(1rem, 5vw, 2rem);
}

.interior-flow-about {
  width: 100%;
}

.hero-sanctuary-section-about {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-sanctuary-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  text-align: center;
}

.hero-sanctuary-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
}

.hero-sanctuary-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  max-width: 600px;
}

.hero-sanctuary-stats-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3.5rem);
  justify-content: center;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.stat-item-about {
  text-align: center;
}

.stat-number-about {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  display: block;
  line-height: 1;
}

.stat-label-about {
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  color: #94a3b8;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-sanctuary-image-about {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

@media (min-width: 768px) {
  .hero-sanctuary-section-about {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }

  .hero-sanctuary-stats-about {
    gap: clamp(3rem, 6vw, 4.5rem);
  }
}

.philosophy-legacy-section-about {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.philosophy-legacy-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.philosophy-header-about {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.philosophy-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(245, 158, 11, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.philosophy-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.philosophy-text-about {
  font-size: clamp(0.875rem, 1.5vw, 1.0625rem);
  color: #475569;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.philosophy-narrative-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.narrative-block-about {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.narrative-block-title-about {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.narrative-block-text-about {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .philosophy-legacy-section-about {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }

  .philosophy-narrative-about {
    gap: clamp(2rem, 4vw, 3rem);
  }
}

.approach-mastery-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.approach-mastery-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.approach-header-about {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.approach-subtitle-about {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.approach-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.methodology-cards-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.methodology-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.methodology-card-about:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.methodology-card-number-about {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.methodology-card-title-about {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.methodology-card-text-about {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .approach-mastery-section-about {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }

  .methodology-card-about {
    flex: 1 1 300px;
  }
}

.values-resonance-section-about {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.values-resonance-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.values-header-about {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.values-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(245, 158, 11, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.values-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.values-cards-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.values-card-about {
  flex: 1 1 260px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
}

.values-card-icon-about {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
}

.values-card-title-about {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
}

.values-card-text-about {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .values-resonance-section-about {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }
}

.approach-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: clamp(1.5rem, 3vw, 2.5rem) auto 0;
}

.values-image-about {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: clamp(1.5rem, 3vw, 2.5rem) auto 0;
}

.commitment-assurance-section-about {
  background: #f0f9ff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.commitment-assurance-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
}

.commitment-label-about {
  font-size: 0.875rem;
  color: var(--color-primary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.commitment-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.commitment-text-about {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.commitment-highlight-about {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-secondary);
}

.commitment-highlight-text-about {
  font-size: 0.9375rem;
  color: #1e293b;
  line-height: 1.7;
  font-style: italic;
}

@media (min-width: 768px) {
  .commitment-assurance-section-about {
    padding: clamp(3.5rem, 8vw, 6rem) 0;
  }
}

/* Privacy Page Styles */
/* Legal Documentation Page Component */
.legal-hub {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.legal-hub .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 5vw, 2rem);
  padding-right: clamp(1rem, 5vw, 2rem);
}

/* Hero Section */
.legal-hub-hero {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-primary);
  position: relative;
  overflow: hidden;
}

.legal-hub-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.legal-hub-hero h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hub-hero-meta {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
}

/* Content Section */
.legal-hub-content {
  padding: clamp(2.5rem, 6vw, 6rem) 0;
  background: var(--color-bg-primary);
  position: relative;
  overflow: hidden;
}

.legal-hub-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.legal-hub-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-hub-section h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.legal-hub-section h3 {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
  color: #ffffff;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-hub-section p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: var(--color-text-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hub-section ul,
.legal-hub-section ol {
  margin-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legal-hub-section li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: var(--color-text-secondary);
}

.legal-hub-section li strong {
  color: #ffffff;
  font-weight: 600;
}

/* Contact Section */
.legal-hub-contact {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-secondary);
  position: relative;
  overflow: hidden;
  margin-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-hub-contact-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.legal-hub-contact h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-primary);
}

.legal-hub-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-hub-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-hub-contact-label {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 600;
  color: #ffffff;
}

.legal-hub-contact-value {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: var(--color-text-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Intro paragraph */
.legal-hub-intro {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}

.legal-hub-intro strong {
  color: #ffffff;
  font-weight: 600;
}

/* Responsive */
@media (min-width: 768px) {
  .legal-hub-hero {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .legal-hub-content {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .legal-hub-contact {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .legal-hub-section h2 {
    margin-bottom: 1rem;
  }

  .legal-hub-contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .legal-hub-hero {
    padding: 6rem 0;
  }

  .legal-hub-content {
    padding: 6rem 0;
  }

  .legal-hub-contact {
    padding: 6rem 0;
  }
}

/* Thank You Page Styles */
.thank-page {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.thank-section {
  width: 100%;
  background: var(--color-bg-primary);
  padding: clamp(2rem, 8vw, 4rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.thank-section .container {
  width: 100%;
  max-width: 1440px;
  padding: 0 clamp(1rem, 4vw, 2rem);
  margin: 0 auto;
}

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.thank-icon {
  width: clamp(60px, 12vw, 120px);
  height: clamp(60px, 12vw, 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.15);
  border-radius: 50%;
  animation: icon-pulse 2s ease-in-out infinite;
}

.thank-icon i {
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--color-primary);
}

@keyframes icon-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

.thank-section h1 {
  color: var(--color-text-primary);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.thank-lead {
  color: var(--color-primary);
  font-size: clamp(1.125rem, 2.5vw + 0.25rem, 1.5rem);
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  letter-spacing: 0.5px;
}

.thank-description {
  color: var(--color-text-secondary);
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  font-family: var(--font-primary);
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
}

.thank-next-steps {
  color: var(--color-text-muted);
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  font-family: var(--font-primary);
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
  font-style: italic;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(2rem, 5vw, 3rem);
  font-size: clamp(0.9375rem, 1.2vw + 0.5rem, 1.0625rem);
  font-family: var(--font-primary);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: #000000;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .thank-section {
    min-height: 100vh;
    padding: clamp(3rem, 10vw, 5rem) 0;
  }

  .thank-content {
    gap: clamp(2rem, 5vw, 3rem);
  }

  .thank-section h1 {
    font-size: clamp(2.5rem, 7vw, 3.75rem);
  }

  .thank-lead {
    font-size: clamp(1.25rem, 3vw + 0.25rem, 1.75rem);
  }

  .thank-description,
  .thank-next-steps {
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    min-height: 100vh;
    padding: clamp(4rem, 12vw, 6rem) 0;
  }

  .thank-content {
    gap: clamp(2.5rem, 6vw, 3.5rem);
  }

  .thank-icon {
    width: clamp(80px, 10vw, 140px);
    height: clamp(80px, 10vw, 140px);
  }

  .thank-icon i {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
  }

  .thank-section h1 {
    font-size: clamp(3rem, 8vw, 4rem);
  }

  .thank-lead {
    font-size: clamp(1.5rem, 3.5vw, 1.875rem);
  }

  .thank-description,
  .thank-next-steps {
    font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
  }

  .btn {
    padding: clamp(1rem, 2.5vw, 1.25rem) clamp(2.5rem, 6vw, 3.5rem);
  }
}

@media (min-width: 1440px) {
  .thank-section {
    min-height: 100vh;
  }

  .thank-section h1 {
    font-size: clamp(3.5rem, 6vw, 4.5rem);
  }

  .thank-lead {
    font-size: clamp(1.75rem, 2.5vw, 2rem);
  }

  .thank-description,
  .thank-next-steps {
    font-size: clamp(1.125rem, 1.2vw, 1.375rem);
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .thank-icon {
    animation: none;
  }

  .btn {
    transition: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: more) {
  .thank-section h1 {
    letter-spacing: 1px;
  }

  .btn-primary {
    border: 2px solid var(--color-primary);
  }
}

/* 404 Page Styles */
.main.error-page {
  width: 100%;
}

.error-section {
  background: var(--color-bg-primary);
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  position: relative;
}

.error-section .container {
  width: 100%;
  max-width: 1440px;
  padding: 0 clamp(1rem, 4vw, 2rem);
  margin: 0 auto;
}

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Decorative icon */
.error-decoration {
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
  opacity: 0.15;
  animation: float 3s ease-in-out infinite;
}

.error-decoration i {
  font-size: clamp(4rem, 12vw, 8rem);
  color: var(--color-primary);
  display: block;
}

/* Error code - large and prominent */
.error-code {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: clamp(1rem, 3vw, 2rem);
  text-shadow: 0 8px 32px rgba(245, 158, 11, 0.15);
}

/* Error title */
.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  font-weight: 600;
  line-height: 1.2;
}

/* Main description */
.error-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw + 0.3rem, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  line-height: 1.6;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Subtitle */
.error-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.2vw + 0.3rem, 1rem);
  color: var(--color-text-muted);
  margin: 0 0 clamp(2rem, 5vw, 3.5rem) 0;
  line-height: 1.6;
  max-width: 550px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Button styling */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: #000000;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.2);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Decorative elements */
.error-decorative-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.decoration-item {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.decoration-1 {
  width: clamp(150px, 30vw, 400px);
  height: clamp(150px, 30vw, 400px);
  background: var(--color-secondary);
  top: -10%;
  right: -5%;
  animation: float-reverse 4s ease-in-out infinite;
}

.decoration-2 {
  width: clamp(100px, 20vw, 300px);
  height: clamp(100px, 20vw, 300px);
  background: var(--color-primary);
  bottom: 5%;
  left: -5%;
  animation: float 5s ease-in-out infinite;
}

.decoration-3 {
  width: clamp(120px, 25vw, 350px);
  height: clamp(120px, 25vw, 350px);
  background: var(--color-accent-tertiary);
  top: 30%;
  left: 5%;
  animation: float-reverse 3.5s ease-in-out infinite;
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes float-reverse {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
}

/* Responsive adjustments for tablet */
@media (min-width: 768px) {
  .error-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }

  .error-code {
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  }

  .error-title {
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
  }

  .error-description {
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
  }

  .error-subtitle {
    margin-bottom: clamp(2.5rem, 6vw, 4rem);
  }
}

/* Responsive adjustments for desktop */
@media (min-width: 1024px) {
  .error-section {
    min-height: 100vh;
    padding: 0;
  }

  .error-code {
    margin-bottom: 2.5rem;
  }

  .error-title {
    margin-bottom: 2rem;
  }

  .error-description {
    margin-bottom: 2rem;
  }

  .error-subtitle {
    margin-bottom: 4rem;
  }

  .decoration-1 {
    width: 400px;
    height: 400px;
  }

  .decoration-2 {
    width: 300px;
    height: 300px;
  }

  .decoration-3 {
    width: 350px;
    height: 350px;
  }
}

/* Large desktop */
@media (min-width: 1440px) {
  .error-section {
    min-height: 100vh;
  }
}

/* Mobile-specific adjustments */
@media (max-width: 480px) {
  .error-code {
    letter-spacing: -0.01em;
  }

  .error-description {
    max-width: 100%;
  }

  .error-subtitle {
    max-width: 100%;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Accessibility - prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .error-decoration,
  .decoration-item,
  .btn-primary {
    animation: none;
    transition: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: more) {
  .error-code {
    text-shadow: 0 4px 8px rgba(245, 158, 11, 0.4);
  }

  .error-decoration {
    opacity: 0.25;
  }

  .decoration-item {
    opacity: 0.15;
  }
}