body:has(.home-wrapper),
body.page-home-light {
  background-color: #faf8f5;
  color: #232127;
}

.home-wrapper {
  color: #232127;
  background-color: #faf8f5;
  background-image: 
    radial-gradient(circle at 85% 12%, rgba(107, 14, 24, 0.04) 0%, transparent 60%),
    radial-gradient(circle at 10% 45%, rgba(203, 168, 113, 0.08) 0%, transparent 55%);
  overflow-x: hidden;
}

.home-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.home-section {
  padding: 90px 0;
  position: relative;
}

.home-section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 50px;
}

.home-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(203, 168, 113, 0.12);
  border: 1px solid rgba(203, 168, 113, 0.38);
  color: #7b5924;
  padding: 7px 20px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(203, 168, 113, 0.08);
}

.home-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #550a12;
  box-shadow: 0 0 8px rgba(85, 10, 18, 0.4);
}

.home-section-title {
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 800;
  color: #1a0407;
  margin: 0 0 16px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.home-section-desc {
  font-size: 16px;
  line-height: 1.75;
  color: #544e59;
  margin: 0;
}

.home-hero {
  position: relative;
  padding-top: 140px;
  padding-bottom: 90px;
  background: 
    radial-gradient(circle at 50% 12%, rgba(107, 14, 24, 0.05) 0%, transparent 65%),
    radial-gradient(circle at 18% 35%, rgba(203, 168, 113, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, rgba(203, 168, 113, 0.08) 0%, rgba(250, 248, 245, 0.6) 60%, #faf8f5 100%);
  border-bottom: 1px solid rgba(203, 168, 113, 0.25);
  overflow: hidden;
}

.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(rgba(203, 168, 113, 0.22) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.45;
}

.hero-particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.home-hero .home-badge {
  opacity: 0;
  transform: translateY(-16px);
  animation: heroFadeDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.1s;
}

.home-hero .home-hero-title {
  opacity: 0;
  transform: translateY(22px);
  animation: heroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.25s;
}

.home-hero .home-hero-subtitle {
  opacity: 0;
  transform: translateY(22px);
  animation: heroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.4s;
}

.home-hero .home-hero-actions {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.55s;
}

.home-hero .home-stats-strip {
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.7s;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.home-hero-title {
  font-size: clamp(32px, 5.2vw, 54px);
  font-weight: 900;
  color: #1a0407;
  line-height: 1.25;
  margin: 0 0 20px;
  letter-spacing: -0.5px;
}

.home-hero-title .gold-gradient {
  background: linear-gradient(135deg, #550a12 0%, #871321 35%, #b68b48 75%, #9e7534 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.home-hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.8;
  color: #544e59;
  max-width: 780px;
  margin: 0 auto 36px;
  font-weight: 500;
}

.home-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #550a12 0%, #7d121e 100%);
  border: 1.5px solid #cba871;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 35px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(85, 10, 18, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-btn-primary:hover {
  background: linear-gradient(135deg, #7d121e 0%, #961421 100%);
  border-color: #dfbe87;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(85, 10, 18, 0.35);
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1.5px solid rgba(203, 168, 113, 0.45);
  color: #1a0407;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 35px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
  background: #fbf8f3;
  border-color: #b89255;
  color: #550a12;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(203, 168, 113, 0.2);
}

.home-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
  border-top: 1px solid rgba(203, 168, 113, 0.25);
  padding-top: 36px;
}

.home-stat-box {
  background: #ffffff;
  border: 1.5px solid rgba(203, 168, 113, 0.3);
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(85, 10, 18, 0.03);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.home-stat-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 120px at var(--spotlight-x, -999px) var(--spotlight-y, -999px), rgba(203, 168, 113, 0.18), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.home-stat-box:hover::after {
  opacity: 1;
}

.home-stat-box:hover {
  background: #fdfbf7;
  border-color: rgba(203, 168, 113, 0.65);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(85, 10, 18, 0.08);
}

.home-stat-number {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  color: #550a12;
  display: block;
  margin-bottom: 4px;
}

.home-stat-label {
  font-size: 13px;
  color: #544e59;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}

.about-summary-card {
  background: linear-gradient(135deg, #ffffff 0%, #fdfbf7 100%);
  border: 1.5px solid rgba(203, 168, 113, 0.35);
  border-radius: 22px;
  padding: 44px 40px;
  box-shadow: 0 18px 50px rgba(85, 10, 18, 0.05), 0 4px 15px rgba(0, 0, 0, 0.02);
}

.about-summary-text {
  font-size: 16.5px;
  line-height: 1.95;
  color: #38343e;
  margin-bottom: 36px;
  text-align: justify;
  font-weight: 500;
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.about-feature-item {
  background: #ffffff;
  border: 1.5px solid rgba(203, 168, 113, 0.28);
  border-radius: 16px;
  padding: 26px 22px;
  box-shadow: 0 8px 24px rgba(85, 10, 18, 0.03);
  transition: all 0.3s ease;
}

.about-feature-item:hover {
  background: #ffffff;
  border-color: rgba(203, 168, 113, 0.65);
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(85, 10, 18, 0.08);
}

.about-feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(203, 168, 113, 0.18) 0%, rgba(107, 14, 24, 0.08) 100%);
  border: 1px solid rgba(203, 168, 113, 0.35);
  color: #550a12;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.about-feature-title {
  font-size: 16.5px;
  font-weight: 700;
  color: #1a0407;
  margin: 0 0 8px;
}

.about-feature-desc {
  font-size: 13.5px;
  color: #544e59;
  line-height: 1.65;
  margin: 0;
}

.about-summary-footer {
  display: flex;
  justify-content: center;
}

#sectors-summary {
  background: rgba(203, 168, 113, 0.04);
  border-top: 1px solid rgba(203, 168, 113, 0.2);
  border-bottom: 1px solid rgba(203, 168, 113, 0.2);
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.sector-card {
  background: #ffffff;
  border: 1.5px solid rgba(203, 168, 113, 0.28);
  border-radius: 18px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  color: #232127;
  box-shadow: 0 10px 30px rgba(85, 10, 18, 0.04), 0 2px 6px rgba(0, 0, 0, 0.02);
}

.sector-card:hover {
  border-color: rgba(203, 168, 113, 0.65);
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(85, 10, 18, 0.1), 0 0 25px rgba(203, 168, 113, 0.15);
}

.sector-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.sector-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(203, 168, 113, 0.15) 0%, rgba(107, 14, 24, 0.08) 100%);
  border: 1px solid rgba(203, 168, 113, 0.35);
  color: #550a12;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.sector-card:hover .sector-icon-box {
  transform: scale(1.08);
  background: linear-gradient(135deg, #550a12 0%, #7d121e 100%);
  color: #ffffff;
  border-color: #cba871;
  box-shadow: 0 6px 18px rgba(85, 10, 18, 0.25);
}

.sector-arrow {
  color: #b89255;
  display: flex;
  transition: all 0.25s ease;
}

.sector-card:hover .sector-arrow {
  color: #550a12;
  transform: translateX(-4px);
}

[dir="ltr"] .sector-card:hover .sector-arrow {
  transform: translateX(4px);
}

.sector-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a0407;
  margin: 0 0 10px;
}

.sector-desc {
  font-size: 13.5px;
  color: #544e59;
  line-height: 1.65;
  margin: 0 0 20px;
  flex: 1;
}

.sector-rfq-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #7b5924;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(203, 168, 113, 0.2);
  transition: color 0.2s ease;
}

.sector-rfq-link:hover {
  color: #550a12;
}

.founder-card {
  background: linear-gradient(135deg, #ffffff 0%, #fdfbf7 55%, #f9f5ed 100%);
  border: 1.5px solid rgba(203, 168, 113, 0.35);
  border-radius: 24px;
  padding: 44px 40px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: center;
  box-shadow: 0 20px 55px rgba(85, 10, 18, 0.06), 0 0 30px rgba(203, 168, 113, 0.12);
}

.founder-photo-box {
  text-align: center;
}

.founder-photo-frame {
  width: 190px;
  height: 230px;
  border-radius: 20px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #faf6f0, #f0e6d8);
  border: 2px solid rgba(203, 168, 113, 0.5);
  box-shadow: 0 12px 35px rgba(85, 10, 18, 0.12);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-name {
  font-size: 20px;
  font-weight: 800;
  color: #1a0407;
  margin: 0 0 4px;
}

.founder-title-badge {
  font-size: 13px;
  color: #7b5924;
  font-weight: 700;
}

.founder-text-content {
  display: flex;
  flex-direction: column;
}

.founder-quote-mark {
  color: rgba(203, 168, 113, 0.35);
  margin-bottom: 12px;
}

.founder-quote-text {
  font-size: 16.5px;
  line-height: 1.9;
  color: #232127;
  margin: 0 0 24px;
  font-style: italic;
  font-weight: 500;
}

.founder-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #550a12 0%, #7d121e 100%);
  border: 1.5px solid #cba871;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 25px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(85, 10, 18, 0.2);
  transition: all 0.3s ease;
}

.founder-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(85, 10, 18, 0.3);
  border-color: #dfbe87;
  color: #ffffff;
}

#network-summary {
  background: rgba(203, 168, 113, 0.04);
  border-top: 1px solid rgba(203, 168, 113, 0.2);
  border-bottom: 1px solid rgba(203, 168, 113, 0.2);
}

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

.home-network-card {
  background: #ffffff;
  border: 1.5px solid rgba(203, 168, 113, 0.3);
  border-radius: 18px;
  padding: 28px 24px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 12px 35px rgba(85, 10, 18, 0.04), 0 2px 8px rgba(0, 0, 0, 0.02);
}

.home-network-card:hover {
  border-color: rgba(203, 168, 113, 0.65);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(85, 10, 18, 0.1), 0 0 25px rgba(203, 168, 113, 0.15);
}

.home-net-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.home-net-flag {
  width: 38px;
  height: 25px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.home-net-country {
  font-size: 13.5px;
  font-weight: 700;
  color: #7b5924;
  background: rgba(203, 168, 113, 0.12);
  border: 1px solid rgba(203, 168, 113, 0.35);
  padding: 4px 12px;
  border-radius: 20px;
}

.home-net-name {
  font-size: 20px;
  font-weight: 800;
  color: #1a0407;
  margin: 0 0 8px;
}

.home-net-role {
  font-size: 13.5px;
  color: #544e59;
  line-height: 1.55;
  margin: 0 0 16px;
}

.home-net-action {
  font-size: 13px;
  font-weight: 700;
  color: #550a12;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.home-faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.home-faq-item {
  background: #ffffff;
  border: 1.5px solid rgba(203, 168, 113, 0.28);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(85, 10, 18, 0.02);
  transition: all 0.3s ease;
}

.home-faq-item:hover {
  border-color: rgba(203, 168, 113, 0.55);
}

.home-faq-item.is-active {
  background: linear-gradient(135deg, #ffffff 0%, #fdfbf7 100%);
  border-color: #cba871;
  box-shadow: 0 8px 25px rgba(85, 10, 18, 0.06);
}

.home-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: #1a0407;
  font-size: 16.5px;
  font-weight: 700;
  cursor: pointer;
  text-align: start;
  gap: 16px;
  font-family: inherit;
}

.home-faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(203, 168, 113, 0.12);
  border: 1px solid rgba(203, 168, 113, 0.35);
  color: #7b5924;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.home-faq-item.is-active .home-faq-icon {
  transform: rotate(45deg);
  background: linear-gradient(135deg, #550a12 0%, #7d121e 100%);
  border-color: #cba871;
  color: #ffffff;
}

.home-faq-content {
  display: none;
  padding: 0 24px 22px;
  color: #38343e;
  font-size: 14.5px;
  line-height: 1.85;
  border-top: 1px solid rgba(203, 168, 113, 0.18);
  padding-top: 16px;
}

.home-faq-item.is-active .home-faq-content {
  display: block;
}

.home-banner {
  padding: 60px 0 100px;
}

.home-banner-card {
  background: linear-gradient(135deg, #550a12 0%, #30050a 100%);
  border: 2px solid #cba871;
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(85, 10, 18, 0.25), 0 0 35px rgba(203, 168, 113, 0.2);
  max-width: 1060px;
  margin: 0 auto;
}

.home-banner-title {
  font-size: clamp(24px, 3.4vw, 36px);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 14px;
}

.home-banner-desc {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  max-width: 720px;
  margin: 0 auto 34px;
}

.home-banner-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.home-banner-actions .hero-btn-primary {
  background: linear-gradient(135deg, #cba871 0%, #b89255 100%);
  color: #1a0407;
  border: 1.5px solid #f4e0be;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.home-banner-actions .hero-btn-primary:hover {
  background: linear-gradient(135deg, #dfbe87 0%, #cba871 100%);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(203, 168, 113, 0.4);
}

.home-banner-actions .hero-btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  box-shadow: none;
}

.home-banner-actions .hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .home-stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-features-grid {
    grid-template-columns: 1fr;
  }

  .founder-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founder-btn {
    align-self: center;
  }

  .home-network-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .home-section {
    padding: 60px 0;
  }

  .home-hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .about-summary-card,
  .founder-card,
  .home-banner-card {
    padding: 30px 20px;
  }

  .home-stats-strip {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
