/* ========================================
   Self-Service Signup Landing Page
   ======================================== */

/* === Section Layout === */
.ss-hero,
.ss-benefits,
.ss-dashboard-preview,
.ss-how-it-works,
.ss-social-proof,
.ss-faq,
.ss-final-cta {
  padding: 80px 0;
  float: left;
  width: 100%;
}

/* === Section Backgrounds (alternating for visual separation) === */
.ss-hero {
  background: linear-gradient(180deg, #0a0a0a 0%, #0d1f23 100%);
  padding-top: 60px;
}
.ss-benefits {
  background: #000;
}
.ss-dashboard-preview {
  background: linear-gradient(180deg, #030504, #092529);
}
.ss-how-it-works {
  background: #000;
}
.ss-social-proof {
  background: linear-gradient(180deg, #030504 0%, #0d2a2e 100%);
}
.ss-faq {
  background: #000;
}
.ss-final-cta {
  background: linear-gradient(0deg, #034951 0%, #279a82 100%);
  text-align: center;
}

/* === Section Headers === */
.ss-section-header {
  text-align: center;
  margin-bottom: 60px;
}
.ss-section-header h4 {
  font-size: 18px;
  line-height: 26px;
  color: #9EB8C7;
  font-family: 'Yantramanav', sans-serif;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-weight: 400;
}
.ss-section-header h2 {
  font-family: 'Yantramanav', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: #D6EFF8;
  line-height: 1.1;
  max-width: 700px;
  margin: 0 auto;
}

/* === Hero === */
.ss-hero .row {
  display: flex;
  align-items: center;
}
.ss-hero-text h4 {
  font-size: 18px;
  color: #9EB8C7;
  font-family: 'Yantramanav', sans-serif;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 12px;
}
.ss-hero-text h1 {
  font-family: 'Yantramanav', sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: #D6EFF8;
  line-height: 1.1;
  margin-bottom: 20px;
}
.ss-hero-sub {
  color: #D0E9F2;
  font-size: 18px;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 30px;
}
.ss-hero-img-wrap {
  text-align: center;
}
.ss-hero-img {
  max-width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(40, 162, 136, 0.35);
  box-shadow: 0 20px 60px rgba(40, 162, 136, 0.15);
  background: #0a0f0f;
  padding: 12px;
}
/* Placeholder for when no screenshot image is available */
.ss-hero-img-placeholder {
  background: linear-gradient(135deg, #0d2a2e 0%, #092529 50%, #0d1f23 100%);
  border: 2px solid rgba(40, 162, 136, 0.3);
  border-radius: 12px;
  padding: 80px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(40, 162, 136, 0.15);
}
.ss-hero-img-placeholder i {
  font-size: 64px;
  color: #28A288;
  display: block;
  margin-bottom: 20px;
}
.ss-hero-img-placeholder p {
  color: #9EB8C7;
  font-size: 16px;
  margin: 0;
}

/* === CTA Buttons === */
.ss-btn {
  display: inline-block;
  font-size: 20px;
  font-family: 'Yantramanav', sans-serif;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  border-radius: 10px;
  padding: 14px 40px;
  transition: all 0.3s;
}
.ss-btn-primary {
  background: linear-gradient(0deg, rgba(3,73,81,1) 0%, rgba(39,154,130,1) 100%);
  color: #fff;
}
.ss-btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}
.ss-btn-lg {
  padding: 18px 60px;
  font-size: 24px;
}
.ss-cta-note {
  display: block;
  margin-top: 12px;
  color: #9EB8C7;
  font-size: 14px;
}
.ss-cta-center {
  text-align: center;
  margin-top: 50px;
}

/* === Benefit Cards === */
.ss-benefits-grid {
  display: flex;
  flex-wrap: wrap;
}
.ss-benefit-card {
  text-align: center;
  padding: 40px 20px;
  border: 1px solid rgba(40, 162, 136, 0.2);
  border-radius: 12px;
  transition: all 0.3s;
  margin-bottom: 30px;
  height: calc(100% - 30px);
}
.ss-benefit-card:hover {
  border-color: #28A288;
  transform: translateY(-4px);
}
.ss-benefit-card i {
  font-size: 48px;
  color: #28A288;
  margin-bottom: 20px;
}
.ss-benefit-card h3 {
  color: #D6EFF8;
  font-family: 'Yantramanav', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.ss-benefit-card p {
  color: #D0E9F2;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 0;
}

/* === Dashboard Preview === */
.ss-dashboard-frame {
  text-align: center;
  margin-bottom: 50px;
}
.ss-dashboard-img {
  max-width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(40, 162, 136, 0.3);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.ss-dashboard-placeholder {
  background: linear-gradient(135deg, #0d2a2e 0%, #092529 50%, #0d1f23 100%);
  border: 2px solid rgba(40, 162, 136, 0.3);
  border-radius: 12px;
  padding: 100px 40px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.ss-dashboard-placeholder i {
  font-size: 80px;
  color: #28A288;
  display: block;
  margin-bottom: 20px;
}
.ss-dashboard-placeholder p {
  color: #9EB8C7;
  font-size: 18px;
  margin: 0;
}
.ss-callout {
  text-align: center;
  padding: 20px;
}
.ss-callout-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #28A288;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  font-family: 'Yantramanav', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.ss-callout h4 {
  color: #D6EFF8;
  font-family: 'Yantramanav', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.ss-callout p {
  color: #D0E9F2;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 0;
}

/* === How It Works Steps === */
.ss-step {
  text-align: center;
  padding: 30px 20px;
}
.ss-step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(0deg, #034951 0%, #279a82 100%);
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  font-family: 'Yantramanav', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.ss-step h3 {
  color: #D6EFF8;
  font-family: 'Yantramanav', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.ss-step p {
  color: #D0E9F2;
  font-size: 15px;
  line-height: 1.5;
  max-width: 280px;
  margin: 0 auto;
}

/* === Social Proof Stats === */
.ss-stats-grid {
  text-align: center;
}
.ss-stat {
  text-align: center;
  padding: 30px 0;
}
.ss-stat-number {
  display: block;
  font-family: 'Yantramanav', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: #28A288;
  line-height: 1;
  margin-bottom: 8px;
}
.ss-stat-label {
  color: #D0E9F2;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ss-trust-line {
  text-align: center;
  margin-top: 40px;
}
.ss-trust-line p {
  color: #9EB8C7;
  font-size: 18px;
}

/* === FAQ (extends Bootstrap 5 accordion) === */
.ss-faq .accordion {
  max-width: 800px;
  margin: 0 auto;
}
.ss-faq .accordion-item {
  float: left;
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid #343b41;
  background: transparent;
  border-left: none;
  border-right: none;
  border-top: none;
}
.ss-faq .accordion-item:first-child {
  border-top: 1px solid #343b41;
}
.ss-faq .accordion-header {
  background: transparent;
  margin-bottom: 0;
}
.ss-faq .accordion-header .accordion-button {
  background: transparent;
  border: none;
  color: #289c82;
  font-family: 'Yantramanav', sans-serif;
  font-size: 20px;
  font-weight: 500;
  width: 100%;
  text-align: left;
  outline: none;
  box-shadow: none;
  padding: 8px 0;
}
.ss-faq .accordion-header .accordion-button:focus {
  box-shadow: none;
}
.ss-faq .accordion-body {
  color: #d0e9f2;
  letter-spacing: 0.4px;
  padding: 10px 0 0 0;
  font-size: 16px;
  line-height: 1.6;
}
.ss-faq .accordion-button::after {
  background-image: none;
  content: "\f0d9";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  font-size: 18px;
  transition: all 0.3s;
  width: auto;
  height: auto;
}
.ss-faq .accordion-button:not(.collapsed)::after {
  content: "\f0d7";
  transform: none;
}

/* === Final CTA === */
.ss-final-cta h2 {
  font-family: 'Yantramanav', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 15px;
}
.ss-final-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  margin-bottom: 30px;
}
.ss-final-cta .ss-btn-primary {
  background: #fff;
  color: #034951;
}
.ss-final-cta .ss-btn-primary:hover {
  background: #D6EFF8;
  color: #034951;
}
.ss-final-cta .ss-cta-note {
  color: rgba(255,255,255,0.7);
}

/* === Pricing Badge (shown in hero and value props) === */
.ss-pricing-badge {
  display: inline-block;
  background: rgba(40, 162, 136, 0.15);
  border: 1px solid rgba(40, 162, 136, 0.4);
  border-radius: 8px;
  padding: 8px 16px;
  margin-top: 16px;
}
.ss-pricing-badge span {
  color: #28A288;
  font-family: 'Yantramanav', sans-serif;
  font-size: 15px;
  font-weight: 500;
}

/* ========================================
   Responsive
   ======================================== */

@media only screen and (max-width: 1340px) {
  .ss-hero .container,
  .ss-benefits .container,
  .ss-dashboard-preview .container,
  .ss-how-it-works .container,
  .ss-social-proof .container,
  .ss-faq .container,
  .ss-final-cta .container {
    max-width: calc(100% - 60px);
    padding: 0 15px;
  }
}

@media only screen and (max-width: 991px) {
  .ss-hero-text h1 {
    font-size: 40px;
  }
  .ss-section-header h2 {
    font-size: 36px;
  }
  .ss-hero {
    padding: 40px 0;
  }
  .ss-hero .row {
    flex-direction: column;
  }
  .ss-hero-img-wrap {
    margin-top: 40px;
  }
  .ss-final-cta h2 {
    font-size: 36px;
  }
  .ss-stat-number {
    font-size: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .ss-hero-text h1 {
    font-size: 34px;
  }
  .ss-section-header h2 {
    font-size: 30px;
  }
  .ss-hero,
  .ss-benefits,
  .ss-dashboard-preview,
  .ss-how-it-works,
  .ss-social-proof,
  .ss-faq,
  .ss-final-cta {
    padding: 50px 0;
  }
  .ss-section-header {
    margin-bottom: 40px;
  }
  .ss-stat-number {
    font-size: 36px;
  }
  .ss-final-cta h2 {
    font-size: 30px;
  }
  .ss-benefit-card {
    padding: 30px 15px;
  }
  .ss-faq .accordion-header .accordion-button {
    font-size: 18px;
  }
  .ss-btn {
    font-size: 18px;
    padding: 12px 30px;
  }
  .ss-btn-lg {
    padding: 14px 40px;
    font-size: 20px;
  }
}

@media only screen and (max-width: 480px) {
  .ss-hero-text h1 {
    font-size: 30px;
  }
  .ss-section-header h2 {
    font-size: 26px;
  }
  .ss-stat-number {
    font-size: 30px;
  }
  .ss-step-number {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  .ss-hero-sub {
    font-size: 16px;
  }
}
