/* =========================================================
   ZERALVO ATELIER - APPLE / SWISS CLEAN SUPPORT & LEGAL CSS
   ========================================================= */

.swiss-page-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px 24px 100px;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
  color: #111111;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

/* ---------------------------------------------------------
   Hero Section
   --------------------------------------------------------- */
.swiss-hero {
  text-align: center;
  margin-bottom: 48px;
}

.swiss-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  color: #888888;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.swiss-breadcrumb a {
  color: #666666;
  text-decoration: none;
  transition: color 0.2s ease;
}

.swiss-breadcrumb a:hover {
  color: #111111;
}

.swiss-breadcrumb .sep {
  color: #cccccc;
}

.swiss-breadcrumb .current {
  color: #111111;
}

.swiss-hero-kicker {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #b08d57;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.swiss-hero h1 {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #111111;
  margin: 0 0 16px;
  line-height: 1.15;
}

.swiss-hero p {
  font-size: 16px;
  line-height: 1.6;
  color: #666666;
  max-width: 680px;
  margin: 0 auto;
}

/* ---------------------------------------------------------
   Bento Grid (3 Interactive Action Hub Cards)
   --------------------------------------------------------- */
.swiss-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.swiss-bento-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

.swiss-bento-card:hover {
  transform: translateY(-3px);
  border-color: #111111;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.bento-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #f7f7f8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  transition: background 0.2s ease;
}

.swiss-bento-card:hover .bento-icon-wrap {
  background: #111111;
  color: #ffffff;
}

.bento-body h3 {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #111111;
  margin: 0 0 8px;
}

.bento-body p {
  font-size: 13px;
  line-height: 1.55;
  color: #666666;
  margin: 0 0 24px;
}

.bento-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #111111;
  transition: gap 0.2s ease;
}

.swiss-bento-card:hover .bento-cta {
  gap: 10px;
  color: #b08d57;
}

/* ---------------------------------------------------------
   Swiss Clean Modules (Structured Hairline Content)
   --------------------------------------------------------- */
.swiss-content-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.swiss-module {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.015);
}

.module-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.module-num {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #888888;
  background: #f5f5f5;
  padding: 6px 12px;
  border-radius: 8px;
}

.module-header h2 {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111111;
  margin: 0;
  flex: 1;
}

.swiss-module p {
  font-size: 14px;
  line-height: 1.8;
  color: #444444;
  margin: 0 0 18px;
}

.swiss-module p:last-child {
  margin-bottom: 0;
}

.swiss-module ul,
.swiss-module ol {
  margin: 0 0 20px;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.8;
  color: #444444;
}

.swiss-module li {
  margin-bottom: 10px;
}

.swiss-module strong {
  color: #111111;
}

/* Callout Box */
.swiss-callout {
  background: #fcfbfa;
  border: 1px solid #ebdcd0;
  border-left: 4px solid #b08d57;
  border-radius: 10px;
  padding: 18px 22px;
  margin: 22px 0;
}

.swiss-callout strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #3d2b1f;
  margin-bottom: 4px;
}

.swiss-callout p {
  font-size: 13px;
  color: #7a6352;
  line-height: 1.65;
  margin: 0;
}

/* 4-Step Process Grid */
.swiss-step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 28px 0 12px;
}

.swiss-step-card {
  background: #f9f9f9;
  border: 1px solid #eeeeee;
  border-radius: 14px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
}

.step-badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #b08d57;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.swiss-step-card h4 {
  font-size: 15px;
  font-weight: 800;
  color: #111111;
  margin: 0 0 8px;
}

.swiss-step-card p {
  font-size: 12px;
  line-height: 1.6;
  color: #666666;
  margin: 0;
}

/* Bottom Assistance Bar */
.swiss-bottom-bar {
  margin-top: 48px;
  background: #111111;
  border-radius: 20px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #ffffff;
}

.bottom-bar-text h3 {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 6px;
  color: #ffffff;
}

.bottom-bar-text p {
  font-size: 13px;
  color: #aaaaaa;
  margin: 0;
  line-height: 1.5;
}

.bottom-bar-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-swiss-white {
  padding: 12px 24px;
  background: #ffffff;
  color: #111111;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 10px;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.btn-swiss-white:hover {
  opacity: 0.9;
}

.btn-swiss-outline {
  padding: 12px 20px;
  background: transparent;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.btn-swiss-outline:hover {
  border-color: #ffffff;
}

/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */
@media (max-width: 960px) {
  .swiss-bento-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .swiss-step-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .swiss-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }
}

@media (max-width: 600px) {
  .swiss-page-container {
    padding: 28px 16px 20px;
  }

  .swiss-hero h1 {
    font-size: 28px;
  }

  .swiss-hero p {
    font-size: 14px;
  }

  .swiss-module {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .module-header h2 {
    font-size: 19px;
  }

  .swiss-step-grid {
    grid-template-columns: 1fr;
  }

  .bottom-bar-actions {
    width: 100%;
    flex-direction: column;
  }

  .btn-swiss-white,
  .btn-swiss-outline {
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }
}
