:root {
  --primary: #FC7701;
  --bg-page: #F7F7F7;      /* Clean Light Gray Page */
  --white: #FFFFFF;
  --text-main: #333333;
  --text-muted: #666666;
  --border-color: #DDDDDD;
  --font-stack: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

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

body {
  font-family: var(--font-stack);
  background-color: var(--bg-page);
  color: var(--text-main);
  display: flex;
  justify-content: center;
  -webkit-font-smoothing: antialiased;
}

.page-wrapper {
  width: 100%;
  max-width: 440px;
  padding: 40px 20px;
}

/* Professional Notification Pill */
#vouch-container {
  position: fixed;
  top: 15px;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
}

.vouch-msg {
  background: var(--white);
  padding: 8px 20px;
  border-radius: 4px; /* Squared for professional look */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border: 1px solid var(--border-color);
  font-size: 13px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
}

.vouch-msg span {
  color: var(--primary);
  font-weight: 600;
}

.vouch-msg.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Main Professional Card */
.main-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 40px 24px;
  text-align: center;
  margin-bottom: 24px;
  margin-top: 20px;
}

.logo-header svg path {
    fill-rule:evenodd;
    clip-rule:evenodd;
    fill: var(--primary);
}


.hero-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin:30px 0;
}

.hero-title span {
  color: var(--primary);
  font-weight: bolder;
}

/* Clean Step List */
.steps-list {
  text-align: left;
  margin-bottom: 35px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding: 12px;
  background: #fdfdfd;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
}

.step-num-box {
  background: var(--primary);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

/* Corporate CTA */
.primary-button {
  width: 100%;
  background: var(--primary);
  color: white;
  border: none;
  padding: 18px;
  border-radius: 20vw;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.cta-subtext {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 15px;
  line-height: 1.4;
}

/* FAQ Accordion */
.faq-container {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
}

.section-label {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  padding-bottom: 4px;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-btn {
  width: 100%;
  padding: 15px 0;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  color: var(--text-main);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: var(--text-muted);
  font-size: 14px;
}

.faq-item.open .faq-content {
  max-height: 120px;
  padding-bottom: 15px;
}