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

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #FFFFFF;
  color: #2D3436;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 80px;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 100vh;
  gap: 60px;
}

.hero-content {
  flex: 1;
  max-width: 550px;
}

.brand-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 52px;
  line-height: 1.15;
  color: #A896FF;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.hero-subheadline {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.hero-description {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #1a1a1a;
  margin-bottom: 16px;
  max-width: 480px;
  font-weight: 400;
}

.hero-description:last-of-type {
  margin-bottom: 40px;
}

.cta-button {
  display: inline-block;
  background-color: #A896FF;
  color: #FFFFFF;
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  padding: 22px 60px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #9580FF;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(168, 150, 255, 0.4);
}

/* Hero Image Container */
.hero-image-container {
  flex: 1;
  position: relative;
  max-width: 650px;
}

.image-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.carousel-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.carousel-image.active {
  opacity: 1;
}

/* 3D Decorations */
.sparkle {
  position: absolute;
  z-index: 10;
}

.sparkle-top {
  top: -80px;
  left: -80px;
  width: 180px;
  height: auto;
}

.cloud {
  position: absolute;
  bottom: -120px;
  right: -115px;
  width: 270px;
  height: auto;
  z-index: 10;
}


/* Showcase Section */
.showcase {
  padding: 80px 80px 100px;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.showcase-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 42px;
  color: #A896FF;
  margin-bottom: 40px;
}

.showcase-image-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.showcase-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.showcase-slide-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.showcase-slide-wrapper.active {
  opacity: 1;
}

.showcase-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-label {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #A896FF;
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
}

/* How It Works Section */
.how-it-works {
  padding: 80px 80px 100px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.how-it-works-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}

.how-cloud {
  width: 210px;
  height: auto;
}

.how-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 42px;
  color: #A896FF;
}

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

.feature-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 30px;
  padding-bottom: 80px;
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse at top right, rgba(168, 150, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.feature-icon-container {
  width: 100%;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon {
  width: 120px;
  height: auto;
}

.feature-icon-large {
  width: 330px;
  height: auto;
  object-fit: contain;
}

.feature-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.feature-description {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  flex-grow: 1;
}

.feature-arrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background-color: #A896FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.feature-arrow:hover {
  background-color: #9580FF;
  transform: scale(1.05);
}

/* CTA Section */
.cta-section {
  padding: 100px 80px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.cta-content {
  flex: 1;
  max-width: 550px;
}

.cta-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 52px;
  line-height: 1.15;
  color: #A896FF;
  font-style: italic;
  letter-spacing: -0.5px;
  margin-bottom: 30px;
}

.cta-description {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 20px;
}

.cta-button-large {
  display: inline-block;
  background-color: #A896FF;
  color: #FFFFFF;
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  padding: 22px 60px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.cta-button-large:hover {
  background-color: #9580FF;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(168, 150, 255, 0.4);
}

.cta-visual {
  flex: 1;
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-visual-image {
  width: 100%;
  max-width: 720px;
  height: auto;
}

/* Interior Styles Section */
.styles-section {
  background-color: #FFFFFF;
  padding: 80px 80px 100px;
}

.styles-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.styles-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 42px;
  color: #A896FF;
  margin-bottom: 20px;
}

.styles-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #1a1a1a;
  max-width: 700px;
  margin: 0 auto 12px;
}

.styles-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #666;
  margin-bottom: 50px;
}

.styles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}

.style-card {
  text-align: left;
  text-decoration: none;
  display: block;
}

.style-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.style-card:hover .style-image {
  transform: scale(1.02);
}

.style-info {
  padding: 16px 4px 0;
}

.style-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #1a1a1a;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.style-emoji {
  font-size: 16px;
}

.style-description {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #666;
}

.styles-cta-button {
  display: inline-block;
  background-color: #A896FF;
  color: #FFFFFF;
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.styles-cta-button:hover {
  background-color: #9580FF;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(168, 150, 255, 0.4);
}

/* FAQ Section */
.faq {
  padding: 80px 80px 100px;
  max-width: 1400px;
  margin: 0 auto;
}

.faq-container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.faq-left {
  flex: 0 0 380px;
}

.faq-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 52px;
  line-height: 1.15;
  color: #A896FF;
  font-style: italic;
  letter-spacing: -0.5px;
  margin-bottom: 40px;
}

.faq-icon {
  width: 320px;
  height: auto;
}

.faq-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-card {
  padding: 28px 32px;
  border-radius: 16px;
}

.faq-card-blue {
  background-color: #D4E5FF;
}

.faq-card-purple {
  background-color: #E0D4FF;
}

.faq-card-beige {
  background-color: #F0EAD6;
}

.faq-question {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.faq-answer {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero {
    padding: 40px;
    gap: 40px;
  }

  .hero-title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 40px 24px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    max-width: 100%;
  }

  .hero-image-container {
    max-width: 100%;
    width: 100%;
  }

  .sparkle-top {
    top: -55px;
    left: -55px;
    width: 135px;
  }

  .cloud {
    bottom: -90px;
    right: -80px;
    width: 210px;
  }

  .showcase {
    padding: 60px 24px 80px;
  }

  .showcase-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .showcase-carousel {
    border-radius: 16px;
  }

  .how-it-works {
    padding: 60px 24px 80px;
  }

  .how-it-works-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .how-cloud {
    width: 150px;
  }

  .how-title {
    font-size: 32px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    min-height: auto;
    padding: 24px;
    padding-bottom: 80px;
  }

  .feature-icon-container {
    height: 220px;
  }

  .feature-icon {
    width: 100px;
  }

  .feature-icon-large {
    width: 270px;
  }

  .cta-section {
    padding: 60px 24px 80px;
  }

  .cta-container {
    flex-direction: column;
    text-align: center;
  }

  .cta-content {
    max-width: 100%;
    order: 2;
  }

  .cta-title {
    font-size: 36px;
  }

  .cta-visual {
    max-width: 100%;
    margin-bottom: 40px;
    order: 1;
  }

  .cta-visual-image {
    max-width: 400px;
  }

  .faq {
    padding: 60px 24px 80px;
  }

  .faq-container {
    flex-direction: column;
    gap: 40px;
  }

  .faq-left {
    flex: none;
    width: 100%;
    text-align: center;
  }

  .faq-title {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .faq-icon {
    width: 240px;
  }

  .faq-card {
    padding: 24px;
  }

  .faq-question {
    font-size: 18px;
  }

  .styles-section {
    padding: 60px 24px 80px;
  }

  .styles-title {
    font-size: 28px;
  }

  .styles-subtitle {
    font-size: 16px;
  }

  .styles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .style-info {
    padding: 12px 2px 0;
  }

  .style-name {
    font-size: 14px;
  }

  .style-emoji {
    font-size: 14px;
  }

  .style-description {
    font-size: 12px;
  }

  .styles-cta-button {
    font-size: 16px;
    padding: 16px 40px;
  }
}

/* ========================================
   STYLE DETAIL PAGES
   ======================================== */

/* Breadcrumb */
.breadcrumb {
  padding: 16px 80px;
  border-bottom: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
}

.breadcrumb a {
  color: #666;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.breadcrumb a:hover {
  color: #A896FF;
}

.breadcrumb .separator {
  color: #ccc;
}

.breadcrumb .current {
  color: #1a1a1a;
  font-weight: 500;
}

/* Style Hero */
.style-hero {
  display: flex;
  gap: 80px;
  padding: 60px 80px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}

.style-hero-image {
  flex: 1;
  max-width: 600px;
}

.style-hero-image img {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.style-hero-content {
  flex: 1;
  max-width: 500px;
}

.style-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.style-emoji-circle {
  width: 70px;
  height: 70px;
  background-color: #F3E8FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.style-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 50px;
  padding: 10px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #666;
}

.style-hero-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 52px;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.1;
}

.style-hero-description {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 32px;
}

.style-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #A896FF;
  color: #FFFFFF;
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 20px 40px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.style-cta-button:hover {
  background-color: #9580FF;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(168, 150, 255, 0.4);
}

.style-cta-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #666;
  margin-top: 16px;
}

/* How It Works (Style Page) */
.style-how-it-works {
  background-color: #FAFAFA;
  padding: 80px;
  text-align: center;
}

.style-how-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #1a1a1a;
  margin-bottom: 50px;
}

.style-steps {
  display: flex;
  justify-content: center;
  gap: 80px;
  max-width: 900px;
  margin: 0 auto;
}

.style-step {
  text-align: center;
  max-width: 240px;
}

.style-step-icon {
  width: 80px;
  height: 80px;
  background-color: #F3E8FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
}

.style-step-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.style-step-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #666;
  line-height: 1.5;
}

/* About Section */
.style-about {
  padding: 80px;
  max-width: 900px;
  margin: 0 auto;
}

.style-about-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.style-about-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 40px;
}

.style-meta {
  display: flex;
  gap: 80px;
  padding-top: 32px;
  border-top: 1px solid #E5E7EB;
}

.style-meta-section h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.style-meta-section ul {
  list-style: disc;
  padding-left: 20px;
}

.style-meta-section li,
.style-meta-section p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #666;
  margin-bottom: 6px;
}

/* Key Characteristics */
.style-characteristics {
  padding: 0 80px 60px;
  max-width: 900px;
  margin: 0 auto;
}

.style-characteristics h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.style-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.style-char-tag {
  background-color: #F3E8FF;
  color: #1a1a1a;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 50px;
}

/* Style Gallery */
.style-gallery {
  padding: 60px 80px;
  background-color: #FAFAFA;
  text-align: center;
}

.style-gallery-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #1a1a1a;
  margin-bottom: 40px;
}

.style-gallery-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.style-gallery-grid img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
}

/* Explore Other Styles */
.explore-styles {
  padding: 80px;
  text-align: center;
}

.explore-styles-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #1a1a1a;
  margin-bottom: 50px;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.explore-card {
  text-decoration: none;
  text-align: left;
}

.explore-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.explore-card:hover img {
  transform: scale(1.02);
}

.explore-card-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Style Page Responsive */
@media (max-width: 1024px) {
  .style-hero {
    gap: 40px;
    padding: 40px;
  }

  .style-hero-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .breadcrumb {
    padding: 16px 24px;
    font-size: 13px;
  }

  .style-hero {
    flex-direction: column;
    padding: 32px 24px;
    gap: 32px;
  }

  .style-hero-image {
    max-width: 100%;
  }

  .style-hero-content {
    max-width: 100%;
    text-align: center;
  }

  .style-badge {
    justify-content: center;
  }

  .style-hero-title {
    font-size: 32px;
  }

  .style-hero-description {
    font-size: 17px;
  }

  .style-how-it-works {
    padding: 60px 24px;
  }

  .style-steps {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .style-about {
    padding: 60px 24px;
  }

  .style-meta {
    flex-direction: column;
    gap: 32px;
  }

  .style-characteristics {
    padding: 0 24px 60px;
  }

  .style-gallery {
    padding: 60px 24px;
  }

  .style-gallery-grid img {
    width: 150px;
    height: 150px;
  }

  .explore-styles {
    padding: 60px 24px;
  }

  .explore-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
