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

body {
  font-family: "Poppins", Helvetica, sans-serif;
  font-weight: 400;
  background-color: #ffffff;
  color: #313b92;
}

.page-wrapper {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

/* Navigation */
.nav-bar {
  padding: 5px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  z-index: -1;
}

.nav-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 80px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-family: "Poppins", Helvetica;
  font-weight: 600;
  font-size: 18px;
  color: #000000;
  text-decoration: underline;
}

.nav-btn {
  display: inline-block;
  padding: 14px 40px;
  background-color: #F5B731;
  border-radius: 50px;
  font-family: "Poppins", Helvetica;
  font-weight: 700;
  font-size: 18px;
  color: #313b92;
  text-decoration: none;
}

/* Hero Section */
.hero-section {
  padding: 80px 130px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: linear-gradient(135deg, rgba(55, 174, 196, 1) 0%, rgba(78, 154, 167, 1) 50%, rgba(46, 137, 148, 1) 100%);
  z-index: -1;
}

.hero-content {
  flex: 1;
  max-width: 550px;
  color: #ffffff;
}

.hero-title {
  font-family: "Poppins", Helvetica;
  font-weight: 700;
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 15px;
}

.hero-subtitle {
  font-family: "Poppins", Helvetica;
  font-weight: 600;
  font-size: 24px;
  font-style: italic;
  margin-bottom: 25px;
}

.hero-divider {
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
}

.hero-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.hero-features {
  font-size: 18px;
  line-height: 2;
  margin: 0 0 40px 25px;
  padding: 0;
  list-style-type: disc;
}

.hero-features li {
  margin-bottom: 5px;
  padding-left: 5px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.badge-icon {
  width: 140px;
  height: auto;
  flex-shrink: 0;
}

.badge-text {
  font-family: "Poppins", Helvetica;
  font-weight: 700;
  font-style: italic;
  font-size: 26px;
  line-height: 1.4;
  margin: 0;
}

/* Hero Form Card */
.hero-form-card {
  width: 480px;
  min-height: 860px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 40px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.form-title {
  font-family: "Poppins", Helvetica;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  color: #1d5cb3;
  margin-bottom: 15px;
  text-align: center;
}

.form-subtitle {
  font-size: 18px;
  line-height: 1.5;
  color: #000000;
  margin-bottom: 25px;
  text-align: center;
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-field {
  position: relative;
}

.form-field input {
  width: 100%;
  padding: 18px 45px 18px 20px;
  font-family: "Poppins", Helvetica;
  font-size: 18px;
  border: 2px solid #2b3c97;
  border-radius: 10px;
  color: #313b92;
  outline: none;
}

.form-field input::placeholder {
  color: #313b92;
}

.field-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 1px solid #313b92;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #313b92;
  cursor: pointer;
}

.form-submit-btn {
  display: block;
  width: fit-content;
  margin: 20px auto 25px;
  padding: 18px 60px;
  background-color: #F5B731;
  border: none;
  border-radius: 50px;
  font-family: "Poppins", Helvetica;
  font-weight: 700;
  font-size: 20px;
  color: #313b92;
  text-decoration: none;
  text-align: center;
}

.form-divider {
  width: 100%;
  height: 1px;
  background-color: #e0e0e0;
  margin: 15px 0;
}

.form-disclaimer {
  font-size: 14px;
  line-height: 1.6;
  color: #313b92;
  margin-bottom: 5px;
}

.form-disclaimer-2 {
  font-size: 14px;
  line-height: 1.6;
  color: #313b92;
}

.form-disclaimer-2 .highlight {
  font-family: "Poppins", Helvetica;
  font-weight: 700;
  color: #34bfd6;
}

/* Thank You Message */
.thank-you-message {
  display: none;
  text-align: center;
  flex: 1;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.thank-you-message.show {
  display: flex;
}

.thank-you-title {
  font-family: "Poppins", Helvetica;
  font-weight: 700;
  font-size: 36px;
  color: #313b92;
  margin-bottom: 15px;
}

.thank-you-text {
  font-family: "Poppins", Helvetica;
  font-size: 20px;
  color: #313b92;
}

/* Why Screen Section */
.why-screen-section {
  background: #DBF4F9;
  border-radius: 20px;
  margin: 60px 80px;
  padding: 60px 80px;
  text-align: center;
}

.section-title {
  font-family: "Poppins", Helvetica;
  font-weight: 700;
  font-size: 33px;
  color: #313b92;
  margin-bottom: 20px;
}

.section-description {
  font-size: 22px;
  line-height: 1.6;
  color: #313b92;
  max-width: 900px;
  margin: 0 auto 50px;
}

.steps-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}

.step-card {
  flex: 1;
  max-width: 350px;
  text-align: center;
}

.step-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 25px;
}

.step-arrow {
  font-size: 48px;
  color: #313b92;
  margin-top: 150px;
}

.step-title {
  font-family: "Poppins", Helvetica;
  font-weight: 700;
  font-size: 24px;
  color: #313b92;
  margin-bottom: 10px;
}

.step-description {
  font-size: 18px;
  line-height: 1.5;
  color: #313b92;
}

/* Benefits Section */
.benefits-section {
  padding: 80px;
  text-align: center;
}

.benefits-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 50px;
}

.benefit-card {
  flex: 1;
  max-width: 350px;
  text-align: center;
}

.benefit-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}

.benefit-title {
  font-family: "Poppins", Helvetica;
  font-weight: 700;
  font-size: 24px;
  color: #313b92;
  margin-bottom: 15px;
}

.benefit-description {
  font-size: 18px;
  line-height: 1.6;
  color: #313b92;
}

/* About Section */
.about-section {
  padding: 0;
}

.about-banner {
  background: #313b92;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px 100px;
  margin: 0px 100px;
}

.banner-arrow {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 40px;
  background: #ffffff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.about-banner::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40px;
  background: #ffffff;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.about-title {
  font-family: "Poppins", Helvetica;
  font-weight: 700;
  font-size: 40px;
  color: #ffffff;
  margin: 0;
}

.about-content {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  padding: 30px 80px 0px 80px;
  background: #ffffff;
}

.about-image {
  width: 400px;
  height: auto;
}

.about-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-logo {
  width: 350px;
  height: auto;
  margin-bottom: 30px;
}

.about-stats {
  display: flex;
  align-items: stretch;
  gap: 15px;
  margin-bottom: 30px;
}

.stat-box {
  background: #37aec4;
  border-radius: 10px;
  padding: 20px 30px;
  color: #ffffff;
  min-width: 200px;
}

.stat-number {
  font-family: "Poppins", Helvetica;
  font-weight: 700;
  font-size: 28px;
  display: block;
  color: #ffffff;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 18px;
  line-height: 1.3;
}

.cta-btn {
  display: inline-block;
  padding: 18px 50px;
  background-color: #F5B731;
  border-radius: 50px;
  font-family: "Poppins", Helvetica;
  font-weight: 700;
  font-size: 18px;
  color: #313b92;
  text-decoration: none;
}

/* Confidence Section */
.confidence-section {
  background: #DBF4F9;
  padding: 60px 80px;
}

.confidence-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.confidence-text {
  flex: 1;
  max-width: 500px;
}

.confidence-title {
  font-family: "Poppins", Helvetica;
  font-weight: 700;
  font-size: 32px;
  color: #313b92;
  margin-bottom: 20px;
}

.confidence-description {
  font-size: 20px;
  line-height: 1.6;
  color: #313b92;
}

.confidence-image {
  width: 450px;
  height: auto;
  border-radius: 10px;
}

/* CTA Section */
.cta-section {
  background: #303D92;
  padding: 80px;
  text-align: center;
}

.cta-title {
  font-family: "Poppins", Helvetica;
  font-weight: 700;
  font-size: 33px;
  color: #ffffff;
  margin-bottom: 40px;
}

.cta-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.zip-input {
  width: 610px;
  padding: 20px 30px;
  font-family: "Poppins", Helvetica;
  font-size: 18px;
  border: none;
  border-radius: 10px;
  color: #313b92;
  outline: none;
}

.zip-input::placeholder {
  color: #313b92;
}

/* Footer */
.footer {
  background: #DBF4F9;
  padding: 40px 140px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-rating {
  text-align: center;
}

.stars {
  font-size: 28px;
  color: #F5B731;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.rating-label {
  font-family: "Poppins", Helvetica;
  font-weight: 700;
  font-style: italic;
  font-size: 20px;
  color: #313B92;
  margin: 0;
  line-height: 1.3;
}

.footer-logo {
  height: 70px;
  width: auto;
}

.footer-right {
  text-align: center;
  width: 230px;
}

.footer-links-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.footer-links-row a {
  font-family: "Poppins", Helvetica;
  font-weight: 600;
  font-size: 12px;
  color: #313b92;
  text-decoration: underline;
}

.copyright {
  font-family: "Poppins", Helvetica;
  font-weight: 600;
  font-size: 15px;
  color: #313b92;
  margin: 0;
}

/* ==========================================
   HAMBURGER MENU (Desktop - Hidden)
   ========================================== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 28px;
  height: 3px;
  background-color: #313b92;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-line:not(:last-child) {
  margin-bottom: 6px;
}

.hamburger.open .hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.open .hamburger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav-overlay {
  display: none;
}

/* ==========================================
   RESPONSIVE STYLES - TABLET (768px)
   ========================================== */
@media (max-width: 768px) {
  /* Navigation */
  .nav-content {
    padding: 0 20px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background-color: #ffffff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 80px 30px 30px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-link {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
  }

  .nav-btn {
    margin-top: 20px;
    text-align: center;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .nav-links.open ~ .nav-overlay {
    display: block;
  }

  /* Hero Section */
  .hero-section {
    flex-direction: column;
    padding: 40px;
    gap: 40px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-features {
    font-size: 16px;
  }

  .badge-icon {
    width: 100px;
  }

  .badge-text {
    font-size: 22px;
  }

  .hero-form-card {
    width: 100%;
    min-height: auto;
    padding: 30px;
  }

  .form-title {
    font-size: 30px;
  }

  .form-subtitle {
    font-size: 16px;
  }

  /* Why Screen Section */
  .why-screen-section {
    margin: 30px 20px;
    padding: 40px 30px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-description {
    font-size: 18px;
    margin-bottom: 40px;
  }

  .steps-grid {
    flex-direction: column;
    gap: 30px;
  }

  .step-card {
    max-width: 100%;
  }

  .step-arrow {
    display: none;
  }

  .step-title {
    font-size: 22px;
  }

  .step-description {
    font-size: 16px;
  }

  /* Benefits Section */
  .benefits-section {
    padding: 50px 30px;
  }

  .benefits-grid {
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
  }

  .benefit-card {
    max-width: 100%;
  }

  .benefit-icon {
    width: 100px;
    height: 100px;
  }

  .benefit-title {
    font-size: 22px;
  }

  .benefit-description {
    font-size: 16px;
  }

  /* About Section */
  .about-banner {
    margin: 0 20px;
    padding: 15px 60px;
  }

  .about-title {
    font-size: 32px;
  }

  .about-content {
    flex-direction: column;
    padding: 30px;
    gap: 30px;
    align-items: center;
  }

  .about-image {
    width: 100%;
    max-width: 400px;
  }

  .about-text {
    align-items: center;
    text-align: center;
  }

  .about-logo {
    width: 280px;
  }

  .about-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .stat-box {
    min-width: 150px;
    padding: 15px 20px;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-label {
    font-size: 16px;
  }

  /* Confidence Section */
  .confidence-section {
    padding: 40px 30px;
  }

  .confidence-content {
    flex-direction: column;
    gap: 30px;
  }

  .confidence-text {
    max-width: 100%;
    text-align: center;
  }

  .confidence-title {
    font-size: 28px;
  }

  .confidence-description {
    font-size: 18px;
  }

  .confidence-image {
    width: 100%;
    max-width: 450px;
  }

  /* CTA Section */
  .cta-section {
    padding: 50px 30px;
  }

  .cta-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .zip-input {
    width: 100%;
    max-width: 500px;
  }

  /* Footer */
  .footer {
    flex-direction: column;
    padding: 40px 30px;
    gap: 30px;
  }

  .footer-logo {
    order: -1;
  }

  .footer-right {
    width: 100%;
    max-width: 300px;
  }

  .footer-links-row {
    justify-content: center;
    gap: 20px;
  }
}

/* ==========================================
   RESPONSIVE STYLES - MOBILE (480px)
   ========================================== */
@media (max-width: 480px) {
  /* Navigation */
  .logo {
    height: 40px;
  }

  .nav-links {
    width: 100%;
    right: -100%;
  }

  /* Hero Section */
  .hero-section {
    padding: 25px 20px;
    gap: 30px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-features {
    font-size: 15px;
    margin-left: 20px;
  }

  .hero-badge {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .badge-icon {
    width: 80px;
  }

  .badge-text {
    font-size: 18px;
  }

  .hero-form-card {
    padding: 25px 20px;
  }

  .form-title {
    font-size: 26px;
  }

  .form-subtitle {
    font-size: 15px;
  }

  .form-field input {
    padding: 15px 40px 15px 15px;
    font-size: 16px;
  }

  .form-submit-btn {
    padding: 15px 40px;
    font-size: 18px;
  }

  /* Why Screen Section */
  .why-screen-section {
    margin: 20px 15px;
    padding: 30px 20px;
    border-radius: 15px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .step-image {
    max-width: 250px;
  }

  .step-title {
    font-size: 20px;
  }

  .step-description {
    font-size: 15px;
  }

  /* Benefits Section */
  .benefits-section {
    padding: 40px 20px;
  }

  .benefits-grid {
    gap: 35px;
    margin-top: 30px;
  }

  .benefit-icon {
    width: 80px;
    height: 80px;
  }

  .benefit-title {
    font-size: 20px;
  }

  .benefit-description {
    font-size: 15px;
  }

  /* About Section */
  .about-banner {
    margin: 0 15px;
    padding: 12px 50px;
  }

  .banner-arrow,
  .about-banner::after {
    width: 30px;
  }

  .about-title {
    font-size: 26px;
  }

  .about-content {
    padding: 25px 20px;
  }

  .about-logo {
    width: 220px;
  }

  .about-stats {
    flex-direction: column;
    width: 100%;
  }

  .stat-box {
    min-width: 100%;
    text-align: center;
  }

  .stat-number {
    font-size: 22px;
  }

  .stat-label {
    font-size: 15px;
  }

  .cta-btn {
    padding: 15px 35px;
    font-size: 16px;
  }

  /* Confidence Section */
  .confidence-section {
    padding: 30px 20px;
  }

  .confidence-title {
    font-size: 24px;
  }

  .confidence-description {
    font-size: 16px;
  }

  /* CTA Section */
  .cta-section {
    padding: 40px 20px;
  }

  .cta-title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .cta-form {
    gap: 25px;
  }

  .zip-input {
    padding: 16px 20px;
    font-size: 16px;
  }

  /* Footer */
  .footer {
    padding: 30px 20px;
    gap: 25px;
  }

  .stars {
    font-size: 24px;
  }

  .rating-label {
    font-size: 16px;
  }

  .footer-logo {
    height: 55px;
  }

  .footer-links-row {
    flex-wrap: wrap;
    gap: 10px 20px;
  }

  .footer-links-row a {
    font-size: 11px;
  }

  .copyright {
    font-size: 13px;
  }
}
