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

:root {
  --color-bg-primary-dark: #0f0a1e;
  --color-bg-secondary-dark: #1a1035;
  --color-bg-tertiary-dark: #251848;
  --color-bg-primary-light: #ffffff;
  --color-bg-secondary-light: #f8fafc;
  --color-bg-tertiary-light: #f1f5f9;
  
  --color-bg-card-dark: rgba(139, 92, 246, 0.08);
  --color-bg-card-light: #ffffff;
  
  --color-text-primary-dark: #ffffff;
  --color-text-secondary-dark: #a5b4fc;
  --color-text-muted-dark: #8b7ba8;
  
  --color-text-primary-light: #1e293b;
  --color-text-secondary-light: #64748b;
  --color-text-muted-light: #9ca3af;
  
  --color-primary: #8b5cf6;
  --color-primary-hover: #a78bfa;
  --color-secondary: #d8b4fe;
  --color-accent: #ec4899;
  
  --font-primary: 'Noto Sans JP', sans-serif;
  --font-heading: 'Poppins', sans-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.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --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);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  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);
  line-height: 1.2;
}

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

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

p, li, span {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

button {
  font-family: var(--font-primary);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

input, textarea, select {
  font-family: var(--font-primary);
  border: none;
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid currentColor;
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.flex-row {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
}

.flex-col {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 2rem);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-md);
}

@media (max-width: 767px) {
  h1 {
    line-height: 1.2;
  }
  
  h2 {
    line-height: 1.3;
  }
}

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

@media (min-width: 1024px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1440px) {
  .container {
    padding: 0 2rem;
  }
}

.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;
}

.focus-visible:focus {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

.no-scroll {
  overflow: hidden;
}

.fade-in {
  animation: fadeIn 0.6s ease-in-out;
}

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

.slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.scale-up {
  animation: scaleUp 0.5s ease-out;
}

@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.glow {
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

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

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

.text-gradient {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container-sm {
  max-width: 800px;
  margin: 0 auto;
}

.container-md {
  max-width: 1000px;
  margin: 0 auto;
}

.aspect-ratio-16-9 {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.aspect-ratio-4-3 {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.aspect-ratio-1-1 {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

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

figure {
  margin: 0;
  padding: 0;
}

figcaption {
  font-size: 0.875rem;
  margin-top: var(--space-sm);
}

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

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

::-webkit-scrollbar-track {
  background: rgba(139, 92, 246, 0.05);
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-hover);
}

.container-fluid {
  width: 100%;
  padding: 0 var(--space-md);
}

.section-padding-sm {
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.section-padding-md {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-padding-lg {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

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

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

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

@media (max-width: 767px) {
  .text-center-mobile {
    text-align: center;
  }
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.pointer-events-none {
  pointer-events: none;
}

.cursor-pointer {
  cursor: pointer;
}

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

.transition-fast {
  transition: all 0.15s ease;
}

.transition-slow {
  transition: all 0.5s ease;
}
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&family=Poppins:wght@500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css');

:root {
  --color-bg-primary-dark: #0f0a1e;
  --color-bg-secondary-dark: #1a1035;
  --color-bg-tertiary-dark: #251848;
  --color-bg-primary-light: #ffffff;
  --color-bg-secondary-light: #f8fafc;
  --color-bg-tertiary-light: #f1f5f9;
  --color-bg-card-dark: rgba(139, 92, 246, 0.08);
  --color-bg-card-light: #ffffff;
  --color-text-primary-dark: #ffffff;
  --color-text-secondary-dark: #a5b4fc;
  --color-text-muted-dark: #8b7ba8;
  --color-text-primary-light: #1e293b;
  --color-text-secondary-light: #64748b;
  --color-text-muted-light: #9ca3af;
  --color-primary: #8b5cf6;
  --color-primary-hover: #a78bfa;
  --color-secondary: #d8b4fe;
  --color-accent: #ec4899;
  --font-primary: 'Noto Sans JP', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --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;
}

html {
  scroll-behavior: smooth;
}

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

.header-modern-zen {
  position: static;
  background: var(--color-bg-primary-dark);
  border-bottom: 1px solid rgba(139, 92, 246, 0.15);
  width: 100%;
  z-index: 100;
}

.header-modern-zen-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: clamp(70px, 12vw, 90px);
}

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

.header-modern-zen-brand:hover {
  opacity: 0.8;
}

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

.header-modern-zen-logo-text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.header-modern-zen-desktop-nav {
  display: none;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex: 1;
  margin-left: clamp(2rem, 5vw, 4rem);
  justify-content: flex-end;
}

.header-modern-zen-nav-link {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #a5b4fc;
  text-decoration: none;
  font-weight: 500;
  transition: color 300ms ease;
  position: relative;
}

.header-modern-zen-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 300ms ease;
}

.header-modern-zen-nav-link:hover {
  color: #ffffff;
}

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

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

.header-modern-zen-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.header-modern-zen-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
  transition: all 300ms ease;
}

.header-modern-zen-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 1px;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.header-modern-zen-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.header-modern-zen-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header-modern-zen-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.header-modern-zen-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-primary-dark);
  padding-top: clamp(70px, 12vw, 90px);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
  overflow-y: auto;
}

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

.header-modern-zen-mobile-header {
  padding: 1rem clamp(1rem, 4vw, 2rem);
  border-bottom: 1px solid rgba(139, 92, 246, 0.15);
  display: flex;
  justify-content: flex-end;
}

.header-modern-zen-mobile-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 300ms ease;
}

.header-modern-zen-mobile-close:hover {
  color: var(--color-primary);
}

.header-modern-zen-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1rem 0;
}

.header-modern-zen-mobile-link {
  display: block;
  padding: clamp(1rem, 3vw, 1.25rem) clamp(1rem, 4vw, 2rem);
  color: #a5b4fc;
  text-decoration: none;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 500;
  border-bottom: 1px solid rgba(139, 92, 246, 0.08);
  transition: all 300ms ease;
}

.header-modern-zen-mobile-link:hover {
  background: rgba(139, 92, 246, 0.08);
  color: #ffffff;
  padding-left: clamp(1.5rem, 5vw, 2.5rem);
}

.header-modern-zen-mobile-cta {
  display: block;
  margin: 1.5rem clamp(1rem, 4vw, 2rem);
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1rem, 3vw, 1.5rem);
  background: var(--color-primary);
  color: #0f0a1e;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 600;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 300ms ease;
}

.header-modern-zen-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

@media (min-width: 768px) {
  .header-modern-zen-desktop-nav {
    display: flex;
  }

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

  .header-modern-zen-mobile-menu {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .header-modern-zen-cta-button {
    display: none;
  }
}

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

    .living-spaces-portal {
  width: 100%;
}

.hero-section-index {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: #0f0a1e;
}

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

.hero-gradient-mesh-index {
  position: absolute;
  top: 20%;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse 600px 400px at 50% 50%, rgba(139, 92, 246, 0.1), transparent 60%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-accent-index {
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 300px;
  height: 300px;
  background: rgba(236, 72, 153, 0.08);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

.hero-light-orb-index {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 250px;
  height: 250px;
  background: rgba(168, 85, 247, 0.06);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-organic-shape-index {
  position: absolute;
  bottom: 0;
  right: 15%;
  width: 280px;
  height: 280px;
  background: rgba(236, 72, 153, 0.05);
  border-radius: 30% 70% 50% 50% / 50% 50% 70% 30%;
  z-index: 2;
  pointer-events: none;
}

.hero-line-accent-index {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

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

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

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

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

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

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

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

.stat-label-index {
  font-size: clamp(0.75rem, 1.5vw, 0.9375rem);
  color: #a5b4fc;
  opacity: 0.9;
}

.hero-cta-group-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.25rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: 8px;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: var(--font-primary);
}

.btn-primary {
  background: #8b5cf6;
  color: #000000;
}

.btn-primary:hover {
  background: #a78bfa;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.3);
}

.btn-primary:active {
  transform: translateY(-1px);
  transition-duration: 150ms;
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #8b5cf6;
}

.btn-secondary:hover {
  background: #8b5cf6;
  color: #000000;
  transform: translateY(-3px);
}

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

.features-gradient-field-index {
  position: absolute;
  top: 0;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.features-glow-accent-index {
  position: absolute;
  top: 50%;
  right: -100px;
  width: 350px;
  height: 350px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 50%;
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.features-shape-element-index {
  position: absolute;
  bottom: 5%;
  left: 5%;
  width: 280px;
  height: 280px;
  background: rgba(236, 72, 153, 0.07);
  border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%;
  z-index: 2;
  pointer-events: none;
}

.features-floating-panel-index {
  position: absolute;
  top: 30%;
  right: 10%;
  width: 200px;
  height: 150px;
  background: rgba(139, 92, 246, 0.04);
  border: 1px solid rgba(139, 92, 246, 0.1);
  border-radius: 12px;
  transform: rotate(-15deg);
  z-index: 1;
  pointer-events: none;
}

.features-corner-accent-index {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 150px;
  height: 150px;
  background: rgba(168, 85, 247, 0.05);
  border-radius: 40% 60% 70% 30% / 60% 40% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

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

.section-header-index {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.section-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(139, 92, 246, 0.15);
  color: #d8b4fe;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

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

.features-subtitle-index {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: #a5b4fc;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.features-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.12);
  border-radius: 12px;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.features-card-index:hover {
  transform: translateY(-8px);
  background: rgba(139, 92, 246, 0.12);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.25);
}

.features-card-icon-index {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.2);
  border-radius: 10px;
  color: #d8b4fe;
  font-size: 1.5rem;
}

.features-card-title-index {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.features-card-text-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #a5b4fc;
  line-height: 1.6;
  flex-grow: 1;
}

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

.about-color-wash-index {
  position: absolute;
  top: 0;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse 600px 500px at 50% 50%, rgba(139, 92, 246, 0.09), transparent 60%);
  filter: blur(95px);
  z-index: 1;
  pointer-events: none;
}

.about-glow-element-index {
  position: absolute;
  bottom: 10%;
  left: -100px;
  width: 350px;
  height: 350px;
  background: rgba(236, 72, 153, 0.07);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.about-accent-shape-index {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 250px;
  height: 250px;
  background: rgba(168, 85, 247, 0.05);
  border-radius: 35% 65% 50% 50% / 50% 50% 65% 35%;
  z-index: 2;
  pointer-events: none;
}

.about-floating-card-index {
  position: absolute;
  bottom: 25%;
  right: 8%;
  width: 180px;
  height: 140px;
  background: rgba(139, 92, 246, 0.03);
  border: 1px solid rgba(139, 92, 246, 0.08);
  border-radius: 10px;
  transform: rotate(8deg);
  z-index: 1;
  pointer-events: none;
}

.about-content-index {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-text-block-index {
  flex: 1 1 350px;
  min-width: 300px;
}

.about-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.2;
}

.about-description-index {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: #a5b4fc;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.about-highlights-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.about-highlight-item-index {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1rem);
  color: #d8b4fe;
}

.about-highlight-icon-index {
  color: #8b5cf6;
  font-weight: 700;
  flex-shrink: 0;
}

.about-image-block-index {
  flex: 1 1 350px;
  min-width: 300px;
}

.about-image-index {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-index:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(139, 92, 246, 0.2);
}

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

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

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

.process-mesh-gradient-index {
  position: absolute;
  top: -100px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  filter: blur(85px);
  z-index: 1;
  pointer-events: none;
}

.process-glow-orb-index {
  position: absolute;
  top: 40%;
  right: -120px;
  width: 300px;
  height: 300px;
  background: rgba(168, 85, 247, 0.08);
  border-radius: 50%;
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.process-accent-line-index {
  position: absolute;
  bottom: 30%;
  left: 20%;
  width: 250px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.25), transparent);
  z-index: 2;
  pointer-events: none;
}

.process-floating-shape-index {
  position: absolute;
  bottom: 5%;
  left: -80px;
  width: 280px;
  height: 280px;
  background: rgba(236, 72, 153, 0.06);
  border-radius: 50% 50% 40% 60% / 60% 40% 50% 50%;
  z-index: 1;
  pointer-events: none;
}

.process-corner-element-index {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: rgba(139, 92, 246, 0.04);
  border-radius: 45% 55% 70% 30% / 55% 45% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

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

.process-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.process-subtitle-index {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: #a5b4fc;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.process-steps-index {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: clamp(3rem, 6vw, 4.5rem);
}

.process-step-index {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: rgba(139, 92, 246, 0.07);
  border: 1px solid rgba(139, 92, 246, 0.1);
  border-radius: 10px;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step-index:hover {
  background: rgba(139, 92, 246, 0.11);
  border-color: rgba(139, 92, 246, 0.2);
  transform: translateX(8px);
}

.process-step-number-index {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #8b5cf6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
}

.process-step-content-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.25rem;
}

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

.process-step-text-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #a5b4fc;
  line-height: 1.6;
}

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

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

.featured-shape-element-index {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 280px;
  height: 280px;
  background: rgba(236, 72, 153, 0.06);
  border-radius: 50% 50% 60% 40% / 40% 60% 50% 50%;
  z-index: 2;
  pointer-events: none;
}

.featured-gradient-field-index {
  position: absolute;
  top: 50%;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse 600px 400px at 50% 50%, rgba(168, 85, 247, 0.07), transparent 60%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.featured-floating-panel-index {
  position: absolute;
  top: 30%;
  right: 10%;
  width: 200px;
  height: 150px;
  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;
}

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

.featured-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.featured-subtitle-index {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: #a5b4fc;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.featured-cards-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin: clamp(3rem, 6vw, 4.5rem) 0;
  justify-content: center;
}

.featured-card-index {
  flex: 1 1 320px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: rgba(139, 92, 246, 0.07);
  border: 1px solid rgba(139, 92, 246, 0.12);
  border-radius: 12px;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.featured-card-index:hover {
  transform: translateY(-10px);
  background: rgba(139, 92, 246, 0.11);
  box-shadow: 0 25px 50px rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.25);
}

.featured-card-image-index {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 10px;
  margin: -1.5rem -1.5rem 0 -1.5rem;
}

.featured-image-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-card-index:hover .featured-image-index {
  transform: scale(1.05);
}

.featured-card-content-index {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.featured-card-title-index {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.featured-card-text-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #a5b4fc;
  line-height: 1.6;
  flex-grow: 1;
}

.featured-card-link-index {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #d8b4fe;
  font-weight: 500;
  text-decoration: none;
  transition: all 300ms ease;
  margin-top: 0.5rem;
}

.featured-card-link-index:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.featured-cta-index {
  display: flex;
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

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

.insights-glow-element-index {
  position: absolute;
  top: -50px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: rgba(139, 92, 246, 0.09);
  border-radius: 50%;
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.insights-shape-accent-index {
  position: absolute;
  bottom: 10%;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(236, 72, 153, 0.07);
  border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%;
  z-index: 2;
  pointer-events: none;
}

.insights-color-field-index {
  position: absolute;
  top: 50%;
  right: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(ellipse 600px 500px at 50% 50%, rgba(168, 85, 247, 0.08), transparent 60%);
  filter: blur(95px);
  z-index: 1;
  pointer-events: none;
}

.insights-floating-panel-index {
  position: absolute;
  top: 25%;
  left: 5%;
  width: 180px;
  height: 140px;
  background: rgba(139, 92, 246, 0.03);
  border: 1px solid rgba(139, 92, 246, 0.08);
  border-radius: 10px;
  transform: rotate(10deg);
  z-index: 1;
  pointer-events: none;
}

.insights-line-element-index {
  position: absolute;
  bottom: 40%;
  left: 30%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.insights-content-index {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.insights-text-block-index {
  flex: 1 1 350px;
  min-width: 300px;
}

.insights-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.2;
}

.insights-description-index {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: #a5b4fc;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.insights-quote-index {
  padding: clamp(1.5rem, 2vw, 2.25rem);
  border-left: 4px solid #8b5cf6;
  background: rgba(139, 92, 246, 0.08);
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
  border-radius: 4px;
}

.insights-quote-text-index {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: #d8b4fe;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.insights-quote-cite-index {
  font-size: 0.875rem;
  color: #a5b4fc;
  font-style: normal;
  opacity: 0.85;
}

.insights-benefits-index {
  margin-top: clamp(1.5rem, 2vw, 2.5rem);
}

.insights-benefits-title-index {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.insights-benefits-list-index {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.insights-benefit-item-index {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: #a5b4fc;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.insights-benefit-item-index::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #8b5cf6;
  font-weight: 700;
}

.insights-image-block-index {
  flex: 1 1 350px;
  min-width: 300px;
}

.insights-image-index {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.insights-image-index:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(139, 92, 246, 0.2);
}

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

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

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

.contact-glow-element-index {
  position: absolute;
  top: 10%;
  right: -120px;
  width: 350px;
  height: 350px;
  background: rgba(139, 92, 246, 0.08);
  border-radius: 50%;
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.contact-gradient-field-index {
  position: absolute;
  bottom: -100px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.09) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.contact-shape-accent-index {
  position: absolute;
  top: 30%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: rgba(236, 72, 153, 0.06);
  border-radius: 40% 60% 70% 30% / 60% 40% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

.contact-floating-card-index {
  position: absolute;
  bottom: 20%;
  right: 8%;
  width: 180px;
  height: 140px;
  background: rgba(139, 92, 246, 0.04);
  border: 1px solid rgba(139, 92, 246, 0.08);
  border-radius: 10px;
  transform: rotate(-8deg);
  z-index: 1;
  pointer-events: none;
}

.contact-content-index {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.contact-form-wrapper-index {
  flex: 1 1 400px;
  min-width: 300px;
}

.contact-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.contact-subtitle-index {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: #a5b4fc;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.6;
}

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

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

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

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

.contact-input-index:focus,
.contact-textarea-index:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: #8b5cf6;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

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

.contact-submit-index {
  width: 100%;
  padding: clamp(0.875rem, 1.5vw, 1.125rem);
  background: #8b5cf6;
  color: #000000;
  border: none;
  border-radius: 8px;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-primary);
}

.contact-submit-index:hover {
  background: #a78bfa;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

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

.contact-info-wrapper-index {
  flex: 1 1 400px;
  min-width: 300px;
}

.contact-info-title-index {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.contact-faq-item-index {
  margin-bottom: clamp(1.5rem, 2vw, 2.25rem);
  padding-bottom: clamp(1.5rem, 2vw, 2.25rem);
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

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

.contact-faq-question-index {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  font-weight: 600;
  color: #d8b4fe;
  margin-bottom: 0.75rem;
}

.contact-faq-answer-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #a5b4fc;
  line-height: 1.6;
}

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

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

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

.cta-glow-element-index {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  filter: blur(85px);
  z-index: 1;
  pointer-events: none;
}

.cta-shape-accent-index {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 280px;
  height: 280px;
  background: rgba(236, 72, 153, 0.07);
  border-radius: 50% 50% 50% 50% / 40% 60% 50% 50%;
  z-index: 2;
  pointer-events: none;
}

.cta-gradient-mesh-index {
  position: absolute;
  top: 50%;
  right: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(ellipse 600px 500px at 50% 50%, rgba(168, 85, 247, 0.08), transparent 60%);
  filter: blur(95px);
  z-index: 1;
  pointer-events: none;
}

.cta-floating-shape-index {
  position: absolute;
  top: 20%;
  right: 8%;
  width: 200px;
  height: 200px;
  background: rgba(139, 92, 246, 0.04);
  border-radius: 35% 65% 50% 50% / 50% 50% 65% 35%;
  z-index: 2;
  pointer-events: none;
}

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

.cta-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.cta-description-index {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: #a5b4fc;
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.6;
}

.cta-button-index {
  margin-top: 0;
}

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

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

.cookie-banner-text-index {
  color: #ffffff;
  margin: 0;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  flex: 1 1 auto;
  min-width: 250px;
  line-height: 1.5;
}

.cookie-banner-buttons-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  border: none;
  border-radius: 6px;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.9375rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 300ms ease;
  font-family: var(--font-primary);
}

.cookie-btn-accept-index {
  background: #8b5cf6;
  color: #000000;
}

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

.cookie-btn-decline-index {
  background: transparent;
  color: #ffffff;
  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-index {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner-text-index {
    order: 1;
  }

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

@media (min-width: 768px) {
  .section-header-index {
    margin-bottom: clamp(4rem, 8vw, 5.5rem);
  }

  .process-step-index {
    padding: clamp(2rem, 2.5vw, 2.5rem);
  }

  .insights-content-index {
    align-items: flex-start;
  }
}

@media (min-width: 1024px) {
  .hero-section-index {
    padding: clamp(6rem, 12vw, 8rem) 0;
  }

  .features-section-index {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .about-section-index {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .process-section-index {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .featured-section-index {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .insights-section-index {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .contact-section-index {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .cta-section-index {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

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

    .footer {
    background: var(--color-bg-primary-dark);
    color: var(--color-text-primary-dark);
    padding: clamp(3rem, 8vw, 6rem) 0 clamp(2rem, 5vw, 3rem) 0;
    position: relative;
    overflow: hidden;
  }

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

  .footer-content {
    display: block;
    margin-bottom: 3rem;
  }

  .footer-about {
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
    max-width: 500px;
  }

  .footer-about-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
  }

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

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

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

  .footer-column-title {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.25rem;
    letter-spacing: 0.3px;
  }

  .footer-nav,
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

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

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

  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
  }

  .footer-contact-item {
    font-family: var(--font-primary);
    font-size: clamp(0.8125rem, 1vw, 0.9375rem);
    color: var(--color-text-secondary-dark);
    line-height: 1.6;
    margin: 0;
  }

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

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

  .footer-copyright {
    font-family: var(--font-primary);
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    color: var(--color-text-muted-dark);
    margin: 0;
    letter-spacing: 0.2px;
  }

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

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

    .footer-column {
      flex: 1 1 100%;
    }

    .footer-about {
      margin-bottom: 1.5rem;
    }

    .footer-nav,
    .footer-legal {
      gap: 0.625rem;
    }

    .footer-divider {
      margin-bottom: clamp(1rem, 2vw, 1.5rem);
    }
  }

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

/* Category Page Styles */
.main.category-page-modern-living-japan {
  width: 100%;
  overflow: hidden;
}

/* HERO SECTION */
.hero-section-modern-living-japan {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #0f0a1e;
  overflow: hidden;
}

.hero-deco-glow-1 {
  position: absolute;
  top: -100px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-glow-2 {
  position: absolute;
  bottom: 10%;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-shape-1 {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 250px;
  height: 250px;
  background: rgba(139, 92, 246, 0.08);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

.hero-deco-shape-2 {
  position: absolute;
  bottom: 15%;
  right: 5%;
  width: 280px;
  height: 280px;
  background: rgba(168, 85, 247, 0.06);
  border-radius: 30% 70% 40% 60% / 70% 30% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

.hero-content-modern-living-japan {
  position: relative;
  z-index: 10;
  text-align: center;
}

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

.hero-subtitle-modern-living-japan {
  color: #a5b4fc;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-description-modern-living-japan {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

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

.stat-item-modern-living-japan {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.stat-number-modern-living-japan {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #8b5cf6;
  line-height: 1;
}

.stat-label-modern-living-japan {
  display: block;
  font-size: 0.875rem;
  color: #a5b4fc;
  opacity: 0.9;
}

.hero-buttons-modern-living-japan {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.hero-section-modern-living-japan .btn {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2.25rem);
}

.hero-section-modern-living-japan .btn-primary {
  background: #8b5cf6;
  color: #0f0a1e;
}

.hero-section-modern-living-japan .btn-primary:hover {
  background: #a78bfa;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.hero-section-modern-living-japan .btn-secondary {
  background: transparent;
  border: 2px solid #8b5cf6;
  color: #8b5cf6;
}

.hero-section-modern-living-japan .btn-secondary:hover {
  background: #8b5cf6;
  color: #0f0a1e;
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .hero-section-modern-living-japan {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
  
  .hero-stats-modern-living-japan {
    gap: clamp(3rem, 6vw, 5rem);
  }
}

@media (min-width: 1024px) {
  .hero-section-modern-living-japan {
    padding: clamp(5rem, 12vw, 10rem) 0;
  }
}

/* POSTS SECTION */
.posts-section-modern-living-japan {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #1a1035;
  overflow: hidden;
}

.posts-deco-accent-1 {
  position: absolute;
  top: 10%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.posts-deco-accent-2 {
  position: absolute;
  bottom: -50px;
  right: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

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

.posts-subtitle-modern-living-japan {
  color: #a5b4fc;
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

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

.card-modern-living-japan {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  flex: 1 1 300px;
  max-width: 400px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.card-modern-living-japan:hover {
  transform: translateY(-6px);
  background: rgba(139, 92, 246, 0.12);
  border-color: rgba(168, 85, 247, 0.25);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
}

.card-modern-living-japan img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.card-title-modern-living-japan {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  line-height: 1.3;
}

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

.card-meta-modern-living-japan {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.meta-badge-modern-living-japan {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.875rem;
  background: rgba(139, 92, 246, 0.15);
  border-radius: 16px;
  font-size: 0.75rem;
  color: #a5b4fc;
}

.meta-badge-modern-living-japan i {
  color: #8b5cf6;
}

.card-link-modern-living-japan {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #8b5cf6;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  width: fit-content;
}

.card-link-modern-living-japan:hover {
  color: #a78bfa;
  transform: translateX(4px);
}

@media (min-width: 768px) {
  .posts-section-modern-living-japan {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
  
  .posts-header-modern-living-japan {
    margin-bottom: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .posts-section-modern-living-japan {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }
}

/* DESIGN PRINCIPLES SECTION */
.design-principles-section-modern-living-japan {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #251848;
  overflow: hidden;
}

.principles-deco-shape-1 {
  position: absolute;
  top: 15%;
  right: -120px;
  width: 320px;
  height: 320px;
  background: rgba(168, 85, 247, 0.08);
  border-radius: 40% 60% 30% 70% / 60% 40% 70% 30%;
  z-index: 1;
  pointer-events: none;
}

.principles-deco-glow-1 {
  position: absolute;
  bottom: 5%;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.principles-header-modern-living-japan {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3rem;
}

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

.principles-subtitle-modern-living-japan {
  color: #a5b4fc;
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

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

.principle-step-modern-living-japan {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: rgba(139, 92, 246, 0.08);
  border-radius: 12px;
  border-left: 4px solid #8b5cf6;
  transition: all 0.3s ease;
}

.principle-step-modern-living-japan:hover {
  background: rgba(139, 92, 246, 0.12);
  transform: translateX(8px);
}

.principle-number-modern-living-japan {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #8b5cf6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.principle-content-modern-living-japan {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.principle-title-modern-living-japan {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
}

.principle-text-modern-living-japan {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .principle-step-modern-living-japan {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .principle-number-modern-living-japan {
    min-width: auto;
  }
}

@media (min-width: 768px) {
  .design-principles-section-modern-living-japan {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

@media (min-width: 1024px) {
  .design-principles-section-modern-living-japan {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }
}

/* INSPIRATION SECTION */
.inspiration-section-modern-living-japan {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #1a1035;
  overflow: hidden;
}

.inspiration-deco-blob-1 {
  position: absolute;
  top: -50px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(168, 85, 247, 0.08);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.inspiration-deco-glow-2 {
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.inspiration-content-modern-living-japan {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.inspiration-quote-modern-living-japan {
  padding: 2.5rem 2rem;
  border-left: 4px solid #8b5cf6;
  background: rgba(139, 92, 246, 0.08);
  border-radius: 8px;
}

.quote-text-modern-living-japan {
  color: #ffffff;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-weight: 500;
}

.quote-author-modern-living-japan {
  color: #a5b4fc;
  font-size: 0.9375rem;
  font-style: normal;
  opacity: 0.9;
}

.inspiration-text-modern-living-japan {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.inspiration-heading-modern-living-japan {
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2rem);
  font-weight: 700;
  line-height: 1.3;
}

.inspiration-paragraph-modern-living-japan {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .inspiration-section-modern-living-japan {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
  
  .inspiration-content-modern-living-japan {
    gap: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .inspiration-section-modern-living-japan {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }
}

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

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

/* Post Page 1 Styles */
.main-neutral-palette-magic {
    width: 100%;
    background: #ffffff;
  }

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

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

  .hero-text-block-neutral-palette-magic {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .hero-image-block-neutral-palette-magic {
    flex: 1 1 50%;
    max-width: 50%;
  }

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

  .hero-subtitle-neutral-palette-magic {
    color: #d8b4fe;
    font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  .article-meta-neutral-palette-magic {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .meta-badge-neutral-palette-magic {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(139, 92, 246, 0.2);
    color: #d8b4fe;
    border-radius: 20px;
    font-size: clamp(0.75rem, 1vw, 0.875rem);
  }

  .meta-badge-neutral-palette-magic i {
    color: #a78bfa;
  }

  .hero-stats-neutral-palette-magic {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(2rem, 4vw, 3rem);
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stat-item-neutral-palette-magic {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .stat-number-neutral-palette-magic {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #8b5cf6;
    display: block;
  }

  .stat-label-neutral-palette-magic {
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    color: #a5b4fc;
    opacity: 0.9;
  }

  .hero-image-neutral-palette-magic {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    max-width: 100%;
  }

  .breadcrumbs-neutral-palette-magic {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: clamp(0.75rem, 1vw, 0.875rem);
  }

  .breadcrumbs-neutral-palette-magic a {
    color: #a78bfa;
    transition: color 0.2s ease;
  }

  .breadcrumbs-neutral-palette-magic a:hover {
    color: #d8b4fe;
  }

  .breadcrumbs-neutral-palette-magic span {
    color: #8b7ba8;
  }

  .introduction-section-neutral-palette-magic {
    background: #ffffff;
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

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

  .introduction-text-neutral-palette-magic {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .introduction-image-neutral-palette-magic {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .introduction-title-neutral-palette-magic {
    color: #0f0a1e;
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
  }

  .introduction-description-neutral-palette-magic {
    color: #374151;
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.7;
    margin-bottom: 1.25rem;
  }

  .introduction-img-neutral-palette-magic {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    max-width: 100%;
  }

  .technique-section-neutral-palette-magic {
    background: #f8fafc;
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .section-header-neutral-palette-magic {
    text-align: center;
    margin-bottom: 3rem;
  }

  .section-tag-neutral-palette-magic {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
  }

  .technique-title-neutral-palette-magic {
    color: #0f0a1e;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
    font-weight: 700;
  }

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

  .technique-steps-neutral-palette-magic {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

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

  .technique-step-number-neutral-palette-magic {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1;
    color: #8b5cf6;
    flex-shrink: 0;
    min-width: 70px;
  }

  .technique-step-content-neutral-palette-magic {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .technique-step-title-neutral-palette-magic {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    color: #0f0a1e;
  }

  .technique-step-text-neutral-palette-magic {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.6;
    color: #64748b;
  }

  .features-section-neutral-palette-magic {
    background: #ffffff;
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .features-title-neutral-palette-magic {
    color: #0f0a1e;
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
    margin-bottom: 1rem;
    font-weight: 700;
  }

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

  .features-card-neutral-palette-magic {
    flex: 1 1 300px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1.25rem, 3vw, 2rem);
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .features-card-neutral-palette-magic:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }

  .features-card-icon-neutral-palette-magic {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(139, 92, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b5cf6;
    font-size: 1.5rem;
  }

  .features-card-title-neutral-palette-magic {
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 600;
    color: #0f0a1e;
  }

  .features-card-text-neutral-palette-magic {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
    line-height: 1.6;
    color: #64748b;
  }

  .bedroom-section-neutral-palette-magic {
    background: #f8fafc;
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .bedroom-wrapper-neutral-palette-magic {
    display: flex;
    flex-direction: row;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
  }

  .bedroom-image-neutral-palette-magic {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .bedroom-img-neutral-palette-magic {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    max-width: 100%;
  }

  .bedroom-text-neutral-palette-magic {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .bedroom-title-neutral-palette-magic {
    color: #0f0a1e;
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
  }

  .bedroom-description-neutral-palette-magic {
    color: #374151;
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.7;
    margin-bottom: 1.25rem;
  }

  .quote-section-neutral-palette-magic {
    background: #0f0a1e;
    padding: clamp(3rem, 8vw, 5rem) 0;
    overflow: hidden;
  }

  .featured-quote-neutral-palette-magic {
    padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
    border-left: 4px solid #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
  }

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

  .quote-cite-neutral-palette-magic {
    font-size: clamp(0.875rem, 1vw, 1rem);
    color: #a5b4fc;
    font-style: normal;
  }

  .kitchen-section-neutral-palette-magic {
    background: #ffffff;
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .kitchen-wrapper-neutral-palette-magic {
    display: flex;
    flex-direction: row;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
  }

  .kitchen-text-neutral-palette-magic {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .kitchen-image-neutral-palette-magic {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .kitchen-img-neutral-palette-magic {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    max-width: 100%;
  }

  .kitchen-title-neutral-palette-magic {
    color: #0f0a1e;
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
  }

  .kitchen-description-neutral-palette-magic {
    color: #374151;
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.7;
    margin-bottom: 1.25rem;
  }

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

  .conclusion-content-neutral-palette-magic {
    max-width: 800px;
    margin: 0 auto;
  }

  .conclusion-title-neutral-palette-magic {
    color: #0f0a1e;
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
  }

  .conclusion-text-neutral-palette-magic {
    color: #374151;
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .cta-box-neutral-palette-magic {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 16px;
    text-align: center;
    color: #ffffff;
    margin-top: 2rem;
  }

  .cta-title-neutral-palette-magic {
    color: #ffffff;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    margin-bottom: 0.75rem;
    font-weight: 700;
  }

  .cta-text-neutral-palette-magic {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.875rem, 1vw, 1rem);
    margin-bottom: 1.5rem;
  }

  .cta-box-neutral-palette-magic .btn {
    background: #ffffff;
    color: #8b5cf6;
    font-weight: 600;
  }

  .cta-box-neutral-palette-magic .btn:hover {
    background: #f8fafc;
  }

  .related-section-neutral-palette-magic {
    background: #ffffff;
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .related-title-neutral-palette-magic {
    color: #0f0a1e;
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
    margin-bottom: 0.5rem;
    font-weight: 700;
  }

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

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

  .related-card-neutral-palette-magic:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .related-card-image-neutral-palette-magic {
    width: 100%;
    height: 200px;
    overflow: hidden;
  }

  .related-img-neutral-palette-magic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

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

  .related-card-title-neutral-palette-magic {
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 600;
    color: #0f0a1e;
  }

  .related-card-text-neutral-palette-magic {
    font-size: clamp(0.875rem, 1vw, 0.9375rem);
    line-height: 1.6;
    color: #64748b;
  }

  .related-link-neutral-palette-magic {
    color: #8b5cf6;
    font-size: clamp(0.875rem, 1vw, 0.9375rem);
    font-weight: 600;
    transition: color 0.2s ease;
    text-decoration: none;
    margin-top: 0.5rem;
  }

  .related-link-neutral-palette-magic:hover {
    color: #a78bfa;
  }

  .disclaimer-section-neutral-palette-magic {
    background: #f8fafc;
    padding: clamp(2rem, 6vw, 4rem) 0;
    overflow: hidden;
  }

  .disclaimer-content-neutral-palette-magic {
    max-width: 800px;
    margin: 0 auto;
    padding: clamp(1.5rem, 3vw, 2rem);
    background: #ffffff;
    border-left: 4px solid #cbd5e1;
    border-radius: 8px;
  }

  .disclaimer-title-neutral-palette-magic {
    color: #0f0a1e;
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    margin-bottom: 1rem;
    font-weight: 600;
  }

  .disclaimer-text-neutral-palette-magic {
    color: #64748b;
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
    line-height: 1.7;
  }

  @media (max-width: 768px) {
    .hero-content-neutral-palette-magic {
      flex-direction: column;
    }

    .hero-text-block-neutral-palette-magic,
    .hero-image-block-neutral-palette-magic {
      flex: 1 1 100%;
      max-width: 100%;
    }

    .introduction-content-neutral-palette-magic,
    .bedroom-wrapper-neutral-palette-magic,
    .kitchen-wrapper-neutral-palette-magic {
      flex-direction: column;
    }

    .introduction-text-neutral-palette-magic,
    .introduction-image-neutral-palette-magic,
    .bedroom-text-neutral-palette-magic,
    .bedroom-image-neutral-palette-magic,
    .kitchen-text-neutral-palette-magic,
    .kitchen-image-neutral-palette-magic {
      flex: 1 1 100%;
      max-width: 100%;
    }

    .technique-step-neutral-palette-magic {
      gap: 1rem;
      padding: 1rem;
    }

    .technique-step-number-neutral-palette-magic {
      min-width: 50px;
    }

    .features-card-neutral-palette-magic {
      flex: 1 1 100%;
      max-width: none;
    }

    .related-card-neutral-palette-magic {
      flex: 1 1 100%;
      max-width: none;
    }
  }

/* Post Page 2 Styles */
.main-minimalist-japanese-modern-harmony {
  width: 100%;
  background: #ffffff;
}

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

.hero-section-minimalist-japanese-modern-harmony .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.breadcrumbs-minimalist-japanese-modern-harmony {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
  margin-bottom: 2rem;
}

.breadcrumbs-minimalist-japanese-modern-harmony a {
  color: #2563eb;
  transition: color 0.2s ease;
}

.breadcrumbs-minimalist-japanese-modern-harmony a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.breadcrumbs-minimalist-japanese-modern-harmony span {
  color: #9ca3af;
}

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

.hero-subtitle-minimalist-japanese-modern-harmony {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: #475569;
  max-width: 800px;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.article-meta-minimalist-japanese-modern-harmony {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  margin-bottom: 3rem;
}

.meta-badge-minimalist-japanese-modern-harmony {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 20px;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  color: #2563eb;
}

.meta-badge-minimalist-japanese-modern-harmony i {
  font-size: 0.9em;
}

.hero-image-wrapper-minimalist-japanese-modern-harmony {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}

.hero-image-minimalist-japanese-modern-harmony {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

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

.intro-section-minimalist-japanese-modern-harmony .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.intro-text-minimalist-japanese-modern-harmony {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-minimalist-japanese-modern-harmony {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-heading-minimalist-japanese-modern-harmony {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-paragraph-minimalist-japanese-modern-harmony {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-image-minimalist-japanese-modern-harmony img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

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

  .intro-text-minimalist-japanese-modern-harmony,
  .intro-image-minimalist-japanese-modern-harmony {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.principles-section-minimalist-japanese-modern-harmony .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.section-header-minimalist-japanese-modern-harmony {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.section-tag-minimalist-japanese-modern-harmony {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.principles-title-minimalist-japanese-modern-harmony {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.principles-subtitle-minimalist-japanese-modern-harmony {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.principles-grid-minimalist-japanese-modern-harmony {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.principle-card-minimalist-japanese-modern-harmony {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.principle-card-minimalist-japanese-modern-harmony:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.principle-number-minimalist-japanese-modern-harmony {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
}

.principle-title-minimalist-japanese-modern-harmony {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.principle-text-minimalist-japanese-modern-harmony {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

@media (max-width: 768px) {
  .principle-card-minimalist-japanese-modern-harmony {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

.materials-section-minimalist-japanese-modern-harmony .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.materials-content-minimalist-japanese-modern-harmony {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.materials-text-minimalist-japanese-modern-harmony {
  flex: 1 1 50%;
  max-width: 50%;
}

.materials-image-minimalist-japanese-modern-harmony {
  flex: 1 1 50%;
  max-width: 50%;
}

.materials-title-minimalist-japanese-modern-harmony {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.materials-paragraph-minimalist-japanese-modern-harmony {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.material-list-minimalist-japanese-modern-harmony {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
}

.material-list-title-minimalist-japanese-modern-harmony {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.material-items-minimalist-japanese-modern-harmony {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.material-item-minimalist-japanese-modern-harmony {
  font-size: 0.9375rem;
  color: #475569;
  padding-left: 1.5rem;
  position: relative;
}

.material-item-minimalist-japanese-modern-harmony::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}

.materials-image-minimalist-japanese-modern-harmony img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .materials-content-minimalist-japanese-modern-harmony {
    flex-direction: column;
  }

  .materials-text-minimalist-japanese-modern-harmony,
  .materials-image-minimalist-japanese-modern-harmony {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.layout-section-minimalist-japanese-modern-harmony .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.layout-content-minimalist-japanese-modern-harmony {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.layout-image-minimalist-japanese-modern-harmony {
  flex: 1 1 50%;
  max-width: 50%;
}

.layout-text-minimalist-japanese-modern-harmony {
  flex: 1 1 50%;
  max-width: 50%;
}

.layout-title-minimalist-japanese-modern-harmony {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.layout-paragraph-minimalist-japanese-modern-harmony {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.layout-image-minimalist-japanese-modern-harmony img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.featured-quote-minimalist-japanese-modern-harmony {
  padding: 2rem 2.5rem;
  border-left: 4px solid #2563eb;
  background: #f0f4ff;
  margin: 2rem 0;
  border-radius: 8px;
}

.quote-text-minimalist-japanese-modern-harmony {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-cite-minimalist-japanese-modern-harmony {
  font-size: 0.9375rem;
  color: #64748b;
  font-style: normal;
}

@media (max-width: 768px) {
  .layout-content-minimalist-japanese-modern-harmony {
    flex-direction: column;
  }

  .layout-image-minimalist-japanese-modern-harmony,
  .layout-text-minimalist-japanese-modern-harmony {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.lighting-section-minimalist-japanese-modern-harmony .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.lighting-title-minimalist-japanese-modern-harmony {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.lighting-subtitle-minimalist-japanese-modern-harmony {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.lighting-content-minimalist-japanese-modern-harmony {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
  margin-top: 3rem;
}

.lighting-text-minimalist-japanese-modern-harmony {
  flex: 1 1 50%;
  max-width: 50%;
}

.lighting-tips-minimalist-japanese-modern-harmony {
  flex: 1 1 50%;
  max-width: 50%;
}

.lighting-paragraph-minimalist-japanese-modern-harmony {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.lighting-tips-title-minimalist-japanese-modern-harmony {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.lighting-steps-minimalist-japanese-modern-harmony {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.lighting-step-minimalist-japanese-modern-harmony {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.lighting-step-number-minimalist-japanese-modern-harmony {
  font-size: 2rem;
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}

.lighting-step-content-minimalist-japanese-modern-harmony {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lighting-step-title-minimalist-japanese-modern-harmony {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
}

.lighting-step-text-minimalist-japanese-modern-harmony {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .lighting-content-minimalist-japanese-modern-harmony {
    flex-direction: column;
  }

  .lighting-text-minimalist-japanese-modern-harmony,
  .lighting-tips-minimalist-japanese-modern-harmony {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.storage-section-minimalist-japanese-modern-harmony .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.storage-content-minimalist-japanese-modern-harmony {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.storage-image-minimalist-japanese-modern-harmony {
  flex: 1 1 50%;
  max-width: 50%;
}

.storage-text-minimalist-japanese-modern-harmony {
  flex: 1 1 50%;
  max-width: 50%;
}

.storage-title-minimalist-japanese-modern-harmony {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.storage-paragraph-minimalist-japanese-modern-harmony {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.storage-image-minimalist-japanese-modern-harmony img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.storage-checklist-minimalist-japanese-modern-harmony {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #f0f4ff;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
}

.storage-checklist-title-minimalist-japanese-modern-harmony {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.storage-checklist-items-minimalist-japanese-modern-harmony {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.storage-checklist-item-minimalist-japanese-modern-harmony {
  font-size: 0.9375rem;
  color: #475569;
  padding-left: 1.5rem;
  position: relative;
}

.storage-checklist-item-minimalist-japanese-modern-harmony::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}

@media (max-width: 768px) {
  .storage-content-minimalist-japanese-modern-harmony {
    flex-direction: column;
  }

  .storage-image-minimalist-japanese-modern-harmony,
  .storage-text-minimalist-japanese-modern-harmony {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.inspiration-section-minimalist-japanese-modern-harmony .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.inspiration-title-minimalist-japanese-modern-harmony {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.inspiration-subtitle-minimalist-japanese-modern-harmony {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.inspiration-steps-minimalist-japanese-modern-harmony {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}

.inspiration-step-minimalist-japanese-modern-harmony {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.inspiration-step-number-minimalist-japanese-modern-harmony {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
}

.inspiration-step-content-minimalist-japanese-modern-harmony {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.inspiration-step-title-minimalist-japanese-modern-harmony {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.inspiration-step-text-minimalist-japanese-modern-harmony {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

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

.conclusion-section-minimalist-japanese-modern-harmony .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.conclusion-text-minimalist-japanese-modern-harmony {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-image-minimalist-japanese-modern-harmony {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-title-minimalist-japanese-modern-harmony {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conclusion-paragraph-minimalist-japanese-modern-harmony {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.cta-box-minimalist-japanese-modern-harmony {
  margin-top: 2rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-radius: 12px;
  text-align: center;
  color: #ffffff;
}

.cta-box-title-minimalist-japanese-modern-harmony {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.cta-box-text-minimalist-japanese-modern-harmony {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-button-minimalist-japanese-modern-harmony {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: #2563eb;
  font-weight: 600;
  border-radius: 8px;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  transition: all 0.3s ease;
}

.cta-button-minimalist-japanese-modern-harmony:hover {
  background: #f0f4ff;
  transform: translateY(-2px);
}

.conclusion-image-minimalist-japanese-modern-harmony img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

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

  .conclusion-text-minimalist-japanese-modern-harmony,
  .conclusion-image-minimalist-japanese-modern-harmony {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.disclaimer-section-minimalist-japanese-modern-harmony {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.disclaimer-section-minimalist-japanese-modern-harmony .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.disclaimer-box-minimalist-japanese-modern-harmony {
  padding: 2rem;
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
}

.disclaimer-title-minimalist-japanese-modern-harmony {
  font-size: 1.125rem;
  font-weight: 700;
  color: #92400e;
  margin-bottom: 1rem;
}

.disclaimer-text-minimalist-japanese-modern-harmony {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  color: #b45309;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.disclaimer-text-minimalist-japanese-modern-harmony:last-child {
  margin-bottom: 0;
}

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

.related-section-minimalist-japanese-modern-harmony .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.related-title-minimalist-japanese-modern-harmony {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.related-subtitle-minimalist-japanese-modern-harmony {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.related-cards-minimalist-japanese-modern-harmony {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 3rem;
}

.related-card-minimalist-japanese-modern-harmony {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-minimalist-japanese-modern-harmony:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.related-card-image-minimalist-japanese-modern-harmony {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
}

.related-card-img-minimalist-japanese-modern-harmony {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-title-minimalist-japanese-modern-harmony {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.related-card-text-minimalist-japanese-modern-harmony {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.related-card-link-minimalist-japanese-modern-harmony {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #2563eb;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
}

.related-card-link-minimalist-japanese-modern-harmony:hover {
  color: #1d4ed8;
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .related-card-minimalist-japanese-modern-harmony {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .hero-section-minimalist-japanese-modern-harmony {
    padding: 2rem 0;
  }

  .intro-section-minimalist-japanese-modern-harmony,
  .materials-section-minimalist-japanese-modern-harmony,
  .layout-section-minimalist-japanese-modern-harmony,
  .lighting-section-minimalist-japanese-modern-harmony,
  .storage-section-minimalist-japanese-modern-harmony,
  .inspiration-section-minimalist-japanese-modern-harmony,
  .conclusion-section-minimalist-japanese-modern-harmony,
  .principles-section-minimalist-japanese-modern-harmony,
  .disclaimer-section-minimalist-japanese-modern-harmony,
  .related-section-minimalist-japanese-modern-harmony {
    padding: 2.5rem 0;
  }

  .section-header-minimalist-japanese-modern-harmony {
    margin-bottom: 2rem;
  }

  .hero-title-minimalist-japanese-modern-harmony {
    margin-bottom: 0.75rem;
  }

  .featured-quote-minimalist-japanese-modern-harmony {
    padding: 1.5rem 1.5rem;
    margin: 1.5rem 0;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-minimalist-japanese-modern-harmony {
    font-size: 0.75rem;
    gap: 0.25rem;
  }

  .article-meta-minimalist-japanese-modern-harmony {
    flex-direction: column;
    align-items: flex-start;
  }

  .lighting-step-minimalist-japanese-modern-harmony,
  .inspiration-step-minimalist-japanese-modern-harmony {
    gap: 1rem;
    padding: 1rem;
  }

  .lighting-step-number-minimalist-japanese-modern-harmony,
  .inspiration-step-number-minimalist-japanese-modern-harmony {
    font-size: 1.5rem;
    min-width: 50px;
  }

  .cta-box-minimalist-japanese-modern-harmony {
    padding: 1.5rem;
  }
}

/* Post Page 3 Styles */
.main-bedroom-meditation-space-design {
  width: 100%;
}

/* ========== HERO SECTION ========== */
.hero-section-bedroom-meditation-space-design {
  background: #0f0a1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.hero-text-block-bedroom-meditation-space-design {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.hero-title-bedroom-meditation-space-design {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
}

.hero-subtitle-bedroom-meditation-space-design {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #d8b4fe;
  line-height: 1.5;
}

.hero-meta-bedroom-meditation-space-design {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.meta-badge-bedroom-meditation-space-design {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(139, 92, 246, 0.15);
  color: #d8b4fe;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-bedroom-meditation-space-design i {
  color: #8b5cf6;
}

.hero-image-bedroom-meditation-space-design {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.breadcrumbs-bedroom-meditation-space-design {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-bedroom-meditation-space-design a {
  color: #a5b4fc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-bedroom-meditation-space-design a:hover {
  color: #d8b4fe;
}

.breadcrumbs-bedroom-meditation-space-design span {
  color: #8b7ba8;
}

@media (max-width: 768px) {
  .hero-content-bedroom-meditation-space-design {
    flex-direction: column;
  }
  
  .hero-text-block-bedroom-meditation-space-design,
  .hero-image-block-bedroom-meditation-space-design {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* ========== INTRO SECTION ========== */
.intro-section-bedroom-meditation-space-design {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-bedroom-meditation-space-design {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

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

.intro-image-img-bedroom-meditation-space-design {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-content-bedroom-meditation-space-design {
    flex-direction: column;
  }
  
  .intro-text-bedroom-meditation-space-design,
  .intro-image-bedroom-meditation-space-design {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* ========== LIGHTING SECTION ========== */
.lighting-section-bedroom-meditation-space-design {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.lighting-image-bedroom-meditation-space-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.lighting-text-bedroom-meditation-space-design {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.lighting-description-bedroom-meditation-space-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.lighting-points-bedroom-meditation-space-design {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.lighting-point-bedroom-meditation-space-design {
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #8b5cf6;
}

.lighting-point-title-bedroom-meditation-space-design {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.lighting-point-text-bedroom-meditation-space-design {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.lighting-image-img-bedroom-meditation-space-design {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .lighting-content-bedroom-meditation-space-design {
    flex-direction: column-reverse;
  }
  
  .lighting-image-bedroom-meditation-space-design,
  .lighting-text-bedroom-meditation-space-design {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* ========== COLOR SECTION ========== */
.color-section-bedroom-meditation-space-design {
  background: #1a1035;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.color-text-bedroom-meditation-space-design {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.color-image-bedroom-meditation-space-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.color-title-bedroom-meditation-space-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.color-description-bedroom-meditation-space-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #d8b4fe;
  line-height: 1.7;
}

.color-quote-bedroom-meditation-space-design {
  padding: 2rem 2.5rem;
  border-left: 4px solid #8b5cf6;
  background: rgba(139, 92, 246, 0.1);
  margin: 1rem 0;
}

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

.color-quote-cite-bedroom-meditation-space-design {
  font-size: 0.875rem;
  color: #a5b4fc;
  font-style: normal;
}

.color-image-img-bedroom-meditation-space-design {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .color-content-bedroom-meditation-space-design {
    flex-direction: column;
  }
  
  .color-text-bedroom-meditation-space-design,
  .color-image-bedroom-meditation-space-design {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* ========== MATERIALS SECTION ========== */
.materials-section-bedroom-meditation-space-design {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.materials-header-bedroom-meditation-space-design {
  text-align: center;
  margin-bottom: 3rem;
}

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

.materials-subtitle-bedroom-meditation-space-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
}

.materials-cards-bedroom-meditation-space-design {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.materials-card-bedroom-meditation-space-design {
  flex: 1 1 250px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.materials-card-bedroom-meditation-space-design:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}

.materials-card-icon-bedroom-meditation-space-design {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b5cf6;
  font-size: 1.75rem;
  margin: 0 auto;
}

.materials-card-title-bedroom-meditation-space-design {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.materials-card-text-bedroom-meditation-space-design {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

@media (max-width: 768px) {
  .materials-card-bedroom-meditation-space-design {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* ========== IMPLEMENTATION SECTION ========== */
.implementation-section-bedroom-meditation-space-design {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.implementation-text-bedroom-meditation-space-design {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

.implementation-description-bedroom-meditation-space-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.implementation-steps-bedroom-meditation-space-design {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.implementation-step-bedroom-meditation-space-design {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.implementation-step-number-bedroom-meditation-space-design {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #8b5cf6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.implementation-step-content-bedroom-meditation-space-design {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.implementation-step-title-bedroom-meditation-space-design {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.implementation-step-text-bedroom-meditation-space-design {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.implementation-image-img-bedroom-meditation-space-design {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .implementation-content-bedroom-meditation-space-design {
    flex-direction: column;
  }
  
  .implementation-text-bedroom-meditation-space-design,
  .implementation-image-bedroom-meditation-space-design {
    flex: 1 1 100%;
    max-width: none;
  }
  
  .implementation-step-bedroom-meditation-space-design {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .implementation-step-number-bedroom-meditation-space-design {
    min-width: auto;
  }
}

/* ========== CONCLUSION SECTION ========== */
.conclusion-section-bedroom-meditation-space-design {
  background: #0f0a1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-bedroom-meditation-space-design {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.conclusion-title-bedroom-meditation-space-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.conclusion-text-bedroom-meditation-space-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #d8b4fe;
  line-height: 1.7;
}

.conclusion-cta-bedroom-meditation-space-design {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.conclusion-cta-button-bedroom-meditation-space-design {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #8b5cf6;
  color: #ffffff;
  border-radius: 8px;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.conclusion-cta-button-bedroom-meditation-space-design:hover {
  background: #a78bfa;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

/* ========== RELATED SECTION ========== */
.related-section-bedroom-meditation-space-design {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.related-subtitle-bedroom-meditation-space-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
}

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

.related-card-bedroom-meditation-space-design {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-bedroom-meditation-space-design:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15);
}

.related-card-image-bedroom-meditation-space-design {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f1f5f9;
}

.related-card-img-bedroom-meditation-space-design {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-bedroom-meditation-space-design:hover .related-card-img-bedroom-meditation-space-design {
  transform: scale(1.05);
}

.related-card-title-bedroom-meditation-space-design {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  padding: 0 1.5rem;
  padding-top: 1rem;
}

.related-card-text-bedroom-meditation-space-design {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  padding: 0 1.5rem;
}

.related-card-link-bedroom-meditation-space-design {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #8b5cf6;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0 1.5rem 1.5rem;
  transition: all 0.3s ease;
}

.related-card-link-bedroom-meditation-space-design:hover {
  color: #a78bfa;
  gap: 0.75rem;
}

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

/* ========== DISCLAIMER SECTION ========== */
.disclaimer-section-bedroom-meditation-space-design {
  background: #f8fafc;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-bedroom-meditation-space-design {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #8b5cf6;
}

.disclaimer-title-bedroom-meditation-space-design {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-bedroom-meditation-space-design {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
}

/* ========== RESPONSIVE ========== */
@media (min-width: 768px) {
  .hero-section-bedroom-meditation-space-design,
  .intro-section-bedroom-meditation-space-design,
  .lighting-section-bedroom-meditation-space-design,
  .color-section-bedroom-meditation-space-design,
  .materials-section-bedroom-meditation-space-design,
  .implementation-section-bedroom-meditation-space-design,
  .conclusion-section-bedroom-meditation-space-design,
  .related-section-bedroom-meditation-space-design,
  .disclaimer-section-bedroom-meditation-space-design {
    padding-top: clamp(4rem, 8vw, 5rem);
    padding-bottom: clamp(4rem, 8vw, 5rem);
  }
}

@media (min-width: 1024px) {
  .hero-section-bedroom-meditation-space-design,
  .intro-section-bedroom-meditation-space-design,
  .lighting-section-bedroom-meditation-space-design,
  .color-section-bedroom-meditation-space-design,
  .materials-section-bedroom-meditation-space-design,
  .implementation-section-bedroom-meditation-space-design,
  .conclusion-section-bedroom-meditation-space-design,
  .related-section-bedroom-meditation-space-design,
  .disclaimer-section-bedroom-meditation-space-design {
    padding-top: clamp(5rem, 10vw, 6rem);
    padding-bottom: clamp(5rem, 10vw, 6rem);
  }
}

/* Post Page 4 Styles */
.main-open-plan-smart-functionality {
  width: 100%;
  background: #ffffff;
}

.hero-section-open-plan-smart-functionality {
  padding: clamp(2rem, 6vw, 4rem) 0;
  background: #0f0a1e;
  position: relative;
  overflow: hidden;
}

.hero-content-open-plan-smart-functionality {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.hero-text-block-open-plan-smart-functionality {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-title-open-plan-smart-functionality {
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-open-plan-smart-functionality {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #d8b4fe;
  line-height: 1.4;
  max-width: 600px;
}

.hero-meta-open-plan-smart-functionality {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.meta-badge-open-plan-smart-functionality {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(139, 92, 246, 0.15);
  color: #d8b4fe;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-open-plan-smart-functionality i {
  color: #8b5cf6;
}

.hero-image-block-open-plan-smart-functionality {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-image-open-plan-smart-functionality {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.hero-stats-open-plan-smart-functionality {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: center;
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.stat-item-open-plan-smart-functionality {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.stat-number-open-plan-smart-functionality {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #8b5cf6;
  line-height: 1;
}

.stat-label-open-plan-smart-functionality {
  font-size: 0.875rem;
  color: #a5b4fc;
}

.breadcrumbs-open-plan-smart-functionality {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.breadcrumbs-open-plan-smart-functionality a {
  color: #a5b4fc;
  transition: color 0.3s ease;
}

.breadcrumbs-open-plan-smart-functionality a:hover {
  color: #d8b4fe;
  text-decoration: underline;
}

.breadcrumbs-open-plan-smart-functionality span {
  color: #8b7ba8;
}

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

.introduction-wrapper-open-plan-smart-functionality {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.introduction-text-open-plan-smart-functionality {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.introduction-title-open-plan-smart-functionality {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.introduction-paragraph-open-plan-smart-functionality {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #475569;
}

.introduction-image-open-plan-smart-functionality {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.introduction-image-img-open-plan-smart-functionality {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.content-section-one-open-plan-smart-functionality {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.content-wrapper-one-open-plan-smart-functionality {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-one-open-plan-smart-functionality {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.content-title-one-open-plan-smart-functionality {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.content-paragraph-one-open-plan-smart-functionality {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #475569;
}

.content-image-one-open-plan-smart-functionality {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.content-image-img-one-open-plan-smart-functionality {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.content-section-two-open-plan-smart-functionality {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.content-wrapper-two-open-plan-smart-functionality {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-image-two-open-plan-smart-functionality {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.content-image-img-two-open-plan-smart-functionality {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.content-text-two-open-plan-smart-functionality {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.content-title-two-open-plan-smart-functionality {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.content-paragraph-two-open-plan-smart-functionality {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #475569;
}

.featured-quote-section-open-plan-smart-functionality {
  padding: clamp(2rem, 6vw, 4rem) 0;
  background: #0f0a1e;
  position: relative;
  overflow: hidden;
}

.featured-quote-open-plan-smart-functionality {
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 4vw, 2.5rem);
  border-left: 4px solid #8b5cf6;
  background: rgba(139, 92, 246, 0.08);
  margin: 0;
  border-radius: var(--radius-md);
}

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

.quote-author-open-plan-smart-functionality {
  font-size: 0.875rem;
  color: #a5b4fc;
  font-style: normal;
  display: block;
}

.content-section-three-open-plan-smart-functionality {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.content-wrapper-three-open-plan-smart-functionality {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-three-open-plan-smart-functionality {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.content-title-three-open-plan-smart-functionality {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.content-paragraph-three-open-plan-smart-functionality {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #475569;
}

.content-image-three-open-plan-smart-functionality {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.content-image-img-three-open-plan-smart-functionality {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

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

.steps-header-open-plan-smart-functionality {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.steps-title-open-plan-smart-functionality {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.steps-subtitle-open-plan-smart-functionality {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

.steps-wrapper-open-plan-smart-functionality {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.step-item-open-plan-smart-functionality {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: #f8fafc;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
}

.step-number-open-plan-smart-functionality {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #8b5cf6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.step-content-open-plan-smart-functionality {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-open-plan-smart-functionality {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.step-text-open-plan-smart-functionality {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  color: #475569;
}

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

.features-header-open-plan-smart-functionality {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.features-title-open-plan-smart-functionality {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.features-subtitle-open-plan-smart-functionality {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

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

.features-card-open-plan-smart-functionality {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-card-open-plan-smart-functionality:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.features-card-icon-open-plan-smart-functionality {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f0ff;
  color: #8b5cf6;
  border-radius: var(--radius-md);
  font-size: 1.5rem;
}

.features-card-title-open-plan-smart-functionality {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.features-card-text-open-plan-smart-functionality {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  color: #475569;
}

.content-section-four-open-plan-smart-functionality {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.content-wrapper-four-open-plan-smart-functionality {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-four-open-plan-smart-functionality {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.content-title-four-open-plan-smart-functionality {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.content-paragraph-four-open-plan-smart-functionality {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #475569;
}

.content-image-four-open-plan-smart-functionality {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.content-image-img-four-open-plan-smart-functionality {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.conclusion-section-open-plan-smart-functionality {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #0f0a1e;
  position: relative;
  overflow: hidden;
}

.conclusion-content-open-plan-smart-functionality {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 800px;
}

.conclusion-title-open-plan-smart-functionality {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.conclusion-text-open-plan-smart-functionality {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #a5b4fc;
}

.conclusion-cta-open-plan-smart-functionality {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(139, 92, 246, 0.1);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139, 92, 246, 0.2);
  margin-top: 1rem;
}

.cta-title-open-plan-smart-functionality {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

.cta-text-open-plan-smart-functionality {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #a5b4fc;
  line-height: 1.6;
}

.cta-button-open-plan-smart-functionality {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  background: #8b5cf6;
  color: #ffffff;
  border-radius: var(--radius-md);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  width: fit-content;
}

.cta-button-open-plan-smart-functionality:hover {
  background: #a78bfa;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

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

.related-header-open-plan-smart-functionality {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-title-open-plan-smart-functionality {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.related-subtitle-open-plan-smart-functionality {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

.related-cards-open-plan-smart-functionality {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-open-plan-smart-functionality {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-open-plan-smart-functionality:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.related-card-image-open-plan-smart-functionality {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.related-card-img-open-plan-smart-functionality {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-open-plan-smart-functionality {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1rem, 2vw, 1.5rem);
}

.related-card-title-open-plan-smart-functionality {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #0f172a;
}

.related-card-text-open-plan-smart-functionality {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  line-height: 1.6;
  color: #475569;
}

.related-card-link-open-plan-smart-functionality {
  display: inline-block;
  color: #8b5cf6;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: 0.5rem;
}

.related-card-link-open-plan-smart-functionality:hover {
  color: #a78bfa;
  text-decoration: underline;
}

.disclaimer-section-open-plan-smart-functionality {
  padding: clamp(2rem, 6vw, 4rem) 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.disclaimer-content-open-plan-smart-functionality {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: var(--radius-lg);
  border-left: 4px solid #8b5cf6;
}

.disclaimer-title-open-plan-smart-functionality {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-open-plan-smart-functionality {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  line-height: 1.7;
  color: #475569;
  margin-bottom: 1rem;
}

.disclaimer-text-open-plan-smart-functionality:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .hero-content-open-plan-smart-functionality {
    flex-direction: column;
  }

  .introduction-wrapper-open-plan-smart-functionality,
  .content-wrapper-one-open-plan-smart-functionality,
  .content-wrapper-two-open-plan-smart-functionality,
  .content-wrapper-three-open-plan-smart-functionality,
  .content-wrapper-four-open-plan-smart-functionality {
    flex-direction: column;
  }

  .introduction-text-open-plan-smart-functionality,
  .introduction-image-open-plan-smart-functionality,
  .content-text-one-open-plan-smart-functionality,
  .content-image-one-open-plan-smart-functionality,
  .content-image-two-open-plan-smart-functionality,
  .content-text-two-open-plan-smart-functionality,
  .content-text-three-open-plan-smart-functionality,
  .content-image-three-open-plan-smart-functionality,
  .content-text-four-open-plan-smart-functionality,
  .content-image-four-open-plan-smart-functionality {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-item-open-plan-smart-functionality {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-open-plan-smart-functionality {
    font-size: 2rem;
    min-width: auto;
  }

  .hero-stats-open-plan-smart-functionality {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Post Page 5 Styles */
.main-small-space-maximization {
  width: 100%;
  background: #ffffff;
}

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

.hero-section-small-space-maximization {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.hero-image-small-space-maximization {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-small-space-maximization {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.breadcrumbs-small-space-maximization {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #64748b;
  margin-bottom: 2rem;
}

.breadcrumbs-small-space-maximization a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-small-space-maximization a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.hero-title-small-space-maximization {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-subtitle-small-space-maximization {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #475569;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-meta-small-space-maximization {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.meta-badge-small-space-maximization {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-small-space-maximization i {
  font-size: 0.875rem;
}

.hero-stats-small-space-maximization {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.stat-item-small-space-maximization {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-small-space-maximization {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
}

.stat-label-small-space-maximization {
  font-size: 0.875rem;
  color: #64748b;
  opacity: 0.9;
}

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

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

.intro-text-small-space-maximization {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-small-space-maximization {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-small-space-maximization {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

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

.intro-description-small-space-maximization {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.strategies-section-small-space-maximization {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.strategies-header-small-space-maximization {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-small-space-maximization {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.strategies-title-small-space-maximization {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.strategies-subtitle-small-space-maximization {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

.strategies-content-small-space-maximization {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.strategies-text-small-space-maximization {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategies-image-small-space-maximization {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategies-img-small-space-maximization {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.strategies-description-small-space-maximization {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.strategies-list-small-space-maximization {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-item-small-space-maximization {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  padding-left: 2rem;
  margin-bottom: 1rem;
  position: relative;
  line-height: 1.6;
}

.list-item-small-space-maximization::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
  font-size: 1.25rem;
}

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

.multifunctional-header-small-space-maximization {
  text-align: center;
  margin-bottom: 3rem;
}

.multifunctional-title-small-space-maximization {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.multifunctional-subtitle-small-space-maximization {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

.multifunctional-content-small-space-maximization {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.multifunctional-image-small-space-maximization {
  flex: 1 1 50%;
  max-width: 50%;
}

.multifunctional-img-small-space-maximization {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.multifunctional-text-small-space-maximization {
  flex: 1 1 50%;
  max-width: 50%;
}

.multifunctional-description-small-space-maximization {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.featured-quote-small-space-maximization {
  padding: 2rem 2.5rem;
  border-left: 4px solid #2563eb;
  background: #f8fafc;
  margin: 2rem 0;
  border-radius: 8px;
}

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

.quote-cite-small-space-maximization {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

.storage-section-small-space-maximization {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.storage-header-small-space-maximization {
  text-align: center;
  margin-bottom: 3rem;
}

.storage-title-small-space-maximization {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.storage-subtitle-small-space-maximization {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

.storage-grid-small-space-maximization {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.storage-card-small-space-maximization {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.storage-card-small-space-maximization:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.storage-card-icon-small-space-maximization {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 10px;
  font-size: 1.5rem;
}

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

.storage-card-text-small-space-maximization {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.color-light-section-small-space-maximization {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.color-light-header-small-space-maximization {
  text-align: center;
  margin-bottom: 3rem;
}

.color-light-title-small-space-maximization {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.color-light-subtitle-small-space-maximization {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

.color-light-content-small-space-maximization {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.color-light-text-small-space-maximization {
  flex: 1 1 50%;
  max-width: 50%;
}

.color-light-image-small-space-maximization {
  flex: 1 1 50%;
  max-width: 50%;
}

.color-light-img-small-space-maximization {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.color-light-description-small-space-maximization {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.process-section-small-space-maximization {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.process-header-small-space-maximization {
  text-align: center;
  margin-bottom: 3rem;
}

.process-title-small-space-maximization {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.process-subtitle-small-space-maximization {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

.process-steps-small-space-maximization {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step-small-space-maximization {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
}

.process-step-number-small-space-maximization {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.process-step-content-small-space-maximization {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.process-step-text-small-space-maximization {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

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

.design-inspiration-header-small-space-maximization {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

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

.design-inspiration-text-small-space-maximization {
  flex: 1 1 50%;
  max-width: 50%;
}

.design-inspiration-image-small-space-maximization {
  flex: 1 1 50%;
  max-width: 50%;
}

.design-inspiration-img-small-space-maximization {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.design-inspiration-description-small-space-maximization {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.conclusion-content-small-space-maximization {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-small-space-maximization {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2rem;
  text-align: center;
}

.conclusion-text-small-space-maximization {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-box-small-space-maximization {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
  margin-top: 3rem;
}

.cta-box-title-small-space-maximization {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-box-text-small-space-maximization {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #ffffff;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.btn-cta-small-space-maximization {
  background: #ffffff;
  color: #2563eb;
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-cta-small-space-maximization:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.disclaimer-section-small-space-maximization {
  background: #ffffff;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-small-space-maximization {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: #f1f5f9;
  border-radius: 12px;
  border-left: 4px solid #64748b;
}

.disclaimer-title-small-space-maximization {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-small-space-maximization {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
}

.related-posts-section-small-space-maximization {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-posts-header-small-space-maximization {
  text-align: center;
  margin-bottom: 3rem;
}

.related-posts-title-small-space-maximization {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

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

.related-posts-grid-small-space-maximization {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

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

.related-post-card-small-space-maximization:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.related-post-image-small-space-maximization {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #e2e8f0;
}

.related-post-image-small-space-maximization img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-post-content-small-space-maximization {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.5rem);
}

.related-post-title-small-space-maximization {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.related-post-description-small-space-maximization {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.related-post-link-small-space-maximization {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-post-link-small-space-maximization:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero-content-small-space-maximization,
  .intro-content-small-space-maximization,
  .strategies-content-small-space-maximization,
  .multifunctional-content-small-space-maximization,
  .color-light-content-small-space-maximization,
  .design-inspiration-content-small-space-maximization {
    flex-direction: column;
  }

  .hero-text-block-small-space-maximization,
  .hero-image-small-space-maximization,
  .intro-text-small-space-maximization,
  .intro-image-small-space-maximization,
  .strategies-text-small-space-maximization,
  .strategies-image-small-space-maximization,
  .multifunctional-text-small-space-maximization,
  .multifunctional-image-small-space-maximization,
  .color-light-text-small-space-maximization,
  .color-light-image-small-space-maximization,
  .design-inspiration-text-small-space-maximization,
  .design-inspiration-image-small-space-maximization {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .storage-card-small-space-maximization,
  .related-post-card-small-space-maximization {
    flex: 1 1 100%;
    max-width: none;
  }

  .hero-stats-small-space-maximization {
    gap: 1.5rem;
  }

  .stat-number-small-space-maximization {
    font-size: 2rem;
  }

  .cta-box-small-space-maximization {
    padding: 2rem;
  }

  .process-step-small-space-maximization {
    flex-direction: column;
    padding: 1.5rem;
  }

  .process-step-number-small-space-maximization {
    min-width: auto;
    margin-bottom: 0.5rem;
  }
}

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

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* About Page Styles */
:root {
  --color-bg-primary-dark: #0f0a1e;
  --color-bg-secondary-dark: #1a1035;
  --color-bg-tertiary-dark: #251848;
  --color-bg-primary-light: #ffffff;
  --color-bg-secondary-light: #f8fafc;
  --color-bg-tertiary-light: #f1f5f9;
  --color-bg-card-dark: rgba(139, 92, 246, 0.08);
  --color-bg-card-light: #ffffff;
  --color-text-primary-dark: #ffffff;
  --color-text-secondary-dark: #a5b4fc;
  --color-text-muted-dark: #8b7ba8;
  --color-text-primary-light: #1e293b;
  --color-text-secondary-light: #64748b;
  --color-text-muted-light: #9ca3af;
  --color-primary: #8b5cf6;
  --color-primary-hover: #a78bfa;
  --color-secondary: #d8b4fe;
  --color-accent: #ec4899;
  --font-primary: 'Noto Sans JP', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --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;
}

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  background: var(--color-bg-primary-dark);
}

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

.modern-spaces-narrative-about {
  width: 100%;
}

.hero-showcase-about {
  background: var(--color-bg-primary-dark);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-showcase-about::before {
  content: '';
  position: absolute;
  top: 0;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero-showcase-content-about {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-showcase-title-about {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-showcase-subtitle-about {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-secondary-dark);
  max-width: 700px;
  line-height: 1.6;
}

.hero-stats-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-stat-item-about {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-stat-number-about {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.hero-stat-label-about {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-muted-dark);
}

.hero-image-about {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-top: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-xl);
}

@media (max-width: 768px) {
  .hero-showcase-about::before {
    right: -200px;
    width: 300px;
    height: 300px;
  }
}

.philosophy-journey-about {
  background: var(--color-bg-secondary-dark);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.philosophy-journey-about::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.philosophy-content-about {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.philosophy-header-about {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.philosophy-tag-about {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.375rem 1rem;
  background: rgba(139, 92, 246, 0.15);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.philosophy-title-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  line-height: 1.2;
}

.philosophy-intro-about {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary-dark);
  max-width: 650px;
  line-height: 1.7;
}

.philosophy-blocks-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.philosophy-block-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-tertiary-dark);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.philosophy-block-icon-about {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.15);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.philosophy-block-title-about {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary-dark);
}

.philosophy-block-text-about {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .philosophy-block-about {
    flex: 1 1 100%;
    max-width: none;
  }
}

.design-process-about {
  background: var(--color-bg-primary-dark);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.design-process-about::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  transform: translateY(-50%);
}

.design-process-content-about {
  position: relative;
  z-index: 1;
}

.design-header-about {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.design-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(236, 72, 153, 0.12);
  color: var(--color-accent);
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.design-title-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.design-subtitle-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--color-text-muted-dark);
  max-width: 600px;
  margin: 0 auto;
}

.design-steps-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.design-step-about {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary-dark);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

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

.design-step-body-about {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.design-step-title-about {
  font-size: clamp(1.0625rem, 2vw, 1.1875rem);
  font-weight: 600;
  color: var(--color-text-primary-dark);
}

.design-step-description-about {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
}

.design-process-image-about {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-xl);
}

.inspiration-spaces-about {
  background: var(--color-bg-tertiary-dark);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.inspiration-spaces-about::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.inspiration-content-about {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.inspiration-intro-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.inspiration-accent-about {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.375rem 1rem;
  background: rgba(139, 92, 246, 0.12);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.inspiration-main-title-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  line-height: 1.2;
}

.inspiration-description-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--color-text-secondary-dark);
  max-width: 700px;
  line-height: 1.7;
}

.inspiration-vision-about {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(139, 92, 246, 0.08);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  margin-top: 1rem;
}

.inspiration-vision-text-about {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--color-text-primary-dark);
  font-style: italic;
  line-height: 1.7;
}

.inspiration-image-about {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-xl);
}

.commitment-disclaimer-about {
  background: var(--color-bg-secondary-dark);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.commitment-inner-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.commitment-icon-about {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.15);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.25rem;
}

.commitment-title-about {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary-dark);
}

.commitment-text-about {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
  max-width: 900px;
}

@media (min-width: 768px) {
  .hero-showcase-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .philosophy-journey-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .design-process-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .inspiration-spaces-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .commitment-disclaimer-about {
    padding: clamp(3rem, 7vw, 5rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-showcase-about::before {
    right: -100px;
    width: 500px;
    height: 500px;
  }
}

/* Privacy Page Styles */
.legal-hub {
  font-family: var(--font-primary);
  background: var(--color-bg-primary-light);
  color: var(--color-text-primary-light);
}

.legal-hub section {
  width: 100%;
  overflow: hidden;
}

.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 */
.privacy-hero-section {
  background: var(--color-bg-primary-dark);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.privacy-hero-content {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.privacy-hero-title {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.privacy-hero-updated {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary-dark);
  font-style: italic;
}

/* Content Section */
.privacy-content-section {
  background: var(--color-bg-primary-light);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.privacy-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.privacy-section-block {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.privacy-section-title {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 600;
  color: var(--color-text-primary-light);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.privacy-section-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-secondary-light);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.privacy-section-list {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  margin-left: clamp(1.5rem, 3vw, 2.5rem);
}

.privacy-section-list li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-secondary-light);
  list-style-position: outside;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Contact Section */
.privacy-contact-section {
  background: var(--color-bg-secondary-light);
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-top: 1px solid #e2e8f0;
}

.privacy-contact-content {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.privacy-contact-title {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 600;
  color: var(--color-text-primary-light);
  line-height: 1.2;
}

.privacy-contact-intro {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-secondary-light);
}

.privacy-contact-details {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.privacy-contact-item {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: var(--color-text-secondary-light);
}

.privacy-contact-label {
  font-weight: 600;
  color: var(--color-text-primary-light);
  display: inline;
}

.privacy-contact-value {
  color: var(--color-text-secondary-light);
  display: inline;
}

/* Tablet */
@media (min-width: 768px) {
  .privacy-hero-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .privacy-content-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .privacy-contact-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .privacy-section-text {
    font-size: 1rem;
  }

  .privacy-contact-item {
    font-size: 1rem;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .privacy-hero-section {
    padding: 6rem 0;
  }

  .privacy-content-section {
    padding: 6rem 0;
  }

  .privacy-contact-section {
    padding: 6rem 0;
  }

  .privacy-section-title {
    font-size: 2rem;
  }

  .privacy-section-text {
    font-size: 1.0625rem;
  }

  .privacy-contact-title {
    font-size: 2rem;
  }

  .privacy-contact-item {
    font-size: 1.0625rem;
  }
}

/* Thank You Page Styles */
/* Thank You Page Component */
.thank-page {
  width: 100%;
}

/* Thank You Section */
.thank-section {
  background: var(--color-bg-primary-dark);
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.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);
  padding: clamp(2rem, 5vw, 3rem);
}

/* Thank You Icon */
.thank-icon {
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--color-primary);
  animation: successBounce 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 1;
}

@keyframes successBounce {
  0% {
    transform: scale(0) translateY(20px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* Thank You Title */
.thank-title {
  color: var(--color-text-primary-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 0.5rem, 3rem);
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Thank You Subtitle */
.thank-subtitle {
  color: var(--color-text-secondary-dark);
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2.5vw + 0.5rem, 1.375rem);
  line-height: 1.4;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Thank You Message */
.thank-message {
  color: var(--color-text-secondary-dark);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw + 0.25rem, 1.125rem);
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Thank You Next Steps */
.thank-next-steps {
  color: var(--color-text-muted-dark);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw + 0.25rem, 1.0625rem);
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--color-primary);
  color: #000000;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Tablet Responsive */
@media (min-width: 768px) {
  .thank-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
    min-height: 100vh;
  }

  .thank-content {
    gap: clamp(2rem, 4vw, 3rem);
    padding: clamp(2.5rem, 5vw, 4rem);
  }

  .thank-icon {
    animation: successBounce 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) 1;
  }
}

/* Desktop Responsive */
@media (min-width: 1024px) {
  .thank-section {
    padding: 6rem 0;
    min-height: 100vh;
  }

  .thank-content {
    gap: 3rem;
    padding: 4rem;
  }

  .thank-title {
    font-weight: 800;
    letter-spacing: -0.5px;
  }

  .btn:hover {
    transform: translateY(-3px);
  }
}

/* Large Desktop */
@media (min-width: 1440px) {
  .thank-section {
    padding: 6rem 0;
  }

  .thank-content {
    gap: 3rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .thank-icon {
    animation: none;
    opacity: 1;
    transform: scale(1);
  }

  .btn {
    transition: none;
  }

  .btn:hover {
    transform: none;
  }
}

/* 404 Page Styles */
/* Main component styles */
.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  font-family: var(--font-primary);
}

/* Error section */
.error-section {
  background: var(--color-bg-primary-dark);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  position: relative;
}

/* Decorative background elements */
.error-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.error-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(216, 180, 254, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -150px;
  left: -150px;
  pointer-events: none;
}

/* Container and content wrapper */
.error-section .container {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  width: 100%;
  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;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

/* Decoration icon */
.error-decoration {
  font-size: clamp(3rem, 12vw, 6rem);
  color: var(--color-primary);
  margin-bottom: clamp(0.5rem, 2vw, 1.5rem);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Error code */
.error-code {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 15vw, 8rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -2px;
  margin: 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Error title */
.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary-dark);
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Error description */
.error-description {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  margin: 0;
  max-width: 600px;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Error subtext */
.error-subtext {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-muted-dark);
  margin: 0;
  max-width: 600px;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Button styles */
.btn {
  display: inline-block;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-primary);
  cursor: pointer;
  border: none;
  text-align: center;
  margin-top: clamp(0.5rem, 2vw, 1rem);
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(139, 92, 246, 0.3);
}

/* Suggestions section */
.error-suggestions {
  margin-top: clamp(2rem, 5vw, 3rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(139, 92, 246, 0.1);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  max-width: 600px;
}

.suggestions-label {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary-dark);
  font-weight: 600;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.suggestions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

.suggestions-list li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-primary-dark);
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.suggestions-list i {
  color: var(--color-secondary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  flex-shrink: 0;
}

/* Tablet responsive */
@media (min-width: 768px) {
  .error-section {
    padding: 4rem 0;
  }

  .error-decoration {
    margin-bottom: 2rem;
  }

  .error-suggestions {
    margin-top: 3rem;
  }

  .suggestions-list {
    gap: 1.25rem;
  }
}

/* Desktop responsive */
@media (min-width: 1024px) {
  .error-section {
    padding: 6rem 0;
  }

  .error-content {
    gap: 2.5rem;
  }

  .error-code {
    letter-spacing: -3px;
  }

  .btn-primary:hover {
    transform: translateY(-3px);
  }

  .error-suggestions {
    margin-top: 4rem;
    padding: 3rem;
  }
}

/* Large desktop */
@media (min-width: 1440px) {
  .error-decoration {
    margin-bottom: 2.5rem;
  }

  .error-code {
    letter-spacing: -4px;
  }

  .error-suggestions {
    margin-top: 5rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .error-decoration {
    animation: none;
  }

  .btn,
  .btn-primary {
    transition: none;
  }

  .btn-primary:hover {
    transform: none;
  }
}

/* Print styles */
@media print {
  .error-section::before,
  .error-section::after {
    display: none;
  }

  .btn {
    border: 1px solid #000;
  }
}
.header-modern-zen-mobile-toggle.active{
  display: none;
}