/* Demo Complete Page Styles */
.demo-complete-wrapper {
  min-height: 100vh;
  background: #fff;
}

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Header Status Area */
.demo-status-header {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
  width: 100%;
  box-sizing: border-box;
}

.demo-status-icon {
  font-size: 80px;
  margin-bottom: 20px;
  animation: checkmark-bounce 0.6s ease-out;
}

@keyframes checkmark-bounce {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.demo-status-title {
  font-size: 32px;
  font-family: var(--tcd-font-type2);
  color: #9F886E;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.demo-status-subtitle {
  font-size: 14px;
  color: #999;
  line-height: 2;
  max-width: 700px;
  margin: 0 auto;
}

/* B2B Shortcut Nav */
.b2b-shortcut-nav {
  background: #f8f8f8;
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
  width: 100%;
  box-sizing: border-box;
}

.b2b-shortcut-button {
  display: inline-block;
  padding: 15px 40px;
  background: #9F886E;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.b2b-shortcut-button:hover {
  background: #73604A;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(159, 136, 110, 0.3);
}

/* B2C Section */
.section-b2c {
  background: #fff;
  padding: 90px 0;
  width: 100%;
  box-sizing: border-box;
}

.section-container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  width: 100%;
}

.section-heading {
  font-size: 36px;
  font-family: var(--tcd-font-type2);
  color: #9F886E;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
  line-height: 1.6;
  width: 100%;
  box-sizing: border-box;
}

.section-subheading {
  font-size: 24px;
  color: #333;
  margin-bottom: 30px;
  font-weight: 600;
  line-height: 1.6;
  width: 100%;
  box-sizing: border-box;
}

.section-text {
  font-size: 16px;
  color: #666;
  line-height: 2.4;
  margin-bottom: 30px;
  width: 100%;
  box-sizing: border-box;
}

.action-button-area {
  text-align: center;
  margin: 50px 0;
  width: 100%;
  box-sizing: border-box;
}

.action-button {
  display: inline-block;
  padding: 15px 35px;
  background: #C5B8A8;
  color: #333;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 2px solid #C5B8A8;
  box-sizing: border-box;
}

.action-button:hover {
  background: #9F886E;
  border-color: #9F886E;
  color: #fff;
}

.content-box {
  background: #f9f9f9;
  padding: 40px;
  margin: 60px 0;
  border-radius: 8px;
  border-left: 5px solid #9F886E;
  width: 100%;
  box-sizing: border-box;
}

.content-box-heading {
  font-size: 22px;
  color: #9F886E;
  margin-bottom: 25px;
  font-weight: 600;
  line-height: 1.6;
}

.content-box-text {
  font-size: 16px;
  color: #666;
  line-height: 2.4;
  margin-bottom: 20px;
}

.line-button {
  display: inline-block;
  padding: 18px 50px;
  background: #06C755;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  max-width: 100%;
}

.line-button:hover {
  background: #05b04c;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.line-button-icon {
  margin-right: 8px;
}

/* B2B Section - Dark Theme */
.section-b2b {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #fff;
  padding: 90px 0;
  width: 100%;
  box-sizing: border-box;
}

.section-b2b .section-heading {
  color: #C5B8A8;
  font-size: 32px;
  text-align: left;
  border-left: 5px solid #C5B8A8;
  padding-left: 20px;
  margin-bottom: 60px;
}

.section-b2b .section-subheading {
  color: #fff;
  font-size: 26px;
  margin-top: 50px;
}

.section-b2b .section-text {
  color: #ddd;
  font-size: 16px;
  line-height: 2.4;
}

.section-b2b .content-box {
  background: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #C5B8A8;
  backdrop-filter: blur(10px);
}

.section-b2b .content-box-heading {
  color: #C5B8A8;
}

.section-b2b .content-box-text {
  color: #ddd;
}

.highlight-text {
  color: #C5B8A8;
  font-weight: 600;
}

.benefit-badge {
  display: inline-block;
  background: linear-gradient(135deg, #9F886E 0%, #C5B8A8 100%);
  color: #fff;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 14px;
  margin: 20px 0;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(159, 136, 110, 0.3);
}

.line-button-secondary {
  display: inline-block;
  padding: 18px 50px;
  background: #C5B8A8;
  color: #1a1a2e;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(197, 184, 168, 0.3);
  box-sizing: border-box;
  max-width: 100%;
}

.line-button-secondary:hover {
  background: #9F886E;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 184, 168, 0.5);
}

.sub-link {
  display: block;
  margin-top: 25px;
  font-size: 14px;
  color: #C5B8A8;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.sub-link:hover {
  color: #fff;
}

/* Responsive Design */
@media only screen and (max-width: 991px) {
  .demo-status-title {
    font-size: 26px;
  }
  
  .section-heading {
    font-size: 28px;
  }
  
  .section-subheading {
    font-size: 20px;
  }
  
  .content-box {
    padding: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .demo-status-header {
    padding: 40px 20px;
  }
  
  .demo-status-icon {
    font-size: 60px;
  }
  
  .demo-status-title {
    font-size: 22px;
  }
  
  .b2b-shortcut-button {
    padding: 12px 30px;
    font-size: 14px;
  }
  
  .section-b2c,
  .section-b2b {
    padding: 60px 0;
  }
  
  .section-container {
    padding: 0 15px;
  }
  
  .section-heading {
    font-size: 24px;
  }
  
  .section-subheading {
    font-size: 18px;
  }
  
  .section-text,
  .content-box-text {
    font-size: 14px;
  }
  
  .content-box {
    padding: 25px 20px;
  }
  
  .line-button,
  .line-button-secondary {
    display: block;
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
  }
  
  .section-b2b .section-heading {
    font-size: 20px;
    padding-left: 15px;
  }
}

/* Loading Animation */
#site_wrap {
  animation: fadeIn 0.5s ease-in;
  width: 100%;
  overflow-x: hidden;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Ensure all direct children of sections are properly contained */
.section-b2c > *,
.section-b2b > * {
  max-width: 100%;
}

/* Footer adjustments */
.footer {
  width: 100%;
  box-sizing: border-box;
}

