/* ==========================================================================
   FONTS & BASE STYLES
   ========================================================================== */

@font-face {
  font-family: CaviarDreams;
  src: url('../fonts/CaviarDreams-webfont.woff');
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: CaviarDreams, Arial, sans-serif;
}

p, ul {
  font-weight: bold;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.menubar {
  background-color: #f38630;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-sizing: border-box;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 24px;
  width: auto;
}

.logo-text {
  color: #fff;
  font-size: 24px;
  font-weight: normal;
  letter-spacing: 1px;
}

.menu {
  display: flex;
}

.menu ul {
  display: flex;
  list-style: none;
  margin: 0;
}

.menu ul li {
  padding: 15px 22px;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 2px;
}

.menu ul li a {
  color: #fff;
  text-decoration: none;
}

.menu ul li a:hover {
  color: #247dd6;
}

.menu ul li a:focus {
  color: #fff;
}

.toggle-button {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.toggle-button span {
  height: 3px;
  width: 25px;
  background: white;
  margin: 4px 0;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.section1 {
  display: flex;
  justify-content: center;
  background: #f8f9fa;
  align-items: center;
  min-height: 50vh;
  padding: 120px 40px 60px;
  position: relative;
}

.section1_content {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  width: 100%;
}

.hero-left {
  flex: 1;
}

.hero-right {
  flex: 1;
}

.hero-tagline {
  margin: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-main {
  color: #2c3e50;
  font-size: 58px;
  font-weight: bold;
  line-height: 1.1;
  letter-spacing: -1px;
  display: block;
}

.hero-sub {
  color: #6c757d;
  font-size: 26px;
  font-weight: normal;
  line-height: 1.3;
  letter-spacing: 0;
  display: block;
}

/* Blue accent word */
.hero-tagline .accent,
.cta-content .accent {
  color: #247dd6;
}

.hero-subtitle {
  color: #6c757d;
  font-size: 22px;
  font-weight: normal;
  margin-bottom: 0;
  line-height: 1.4;
}

.testimonial-card {
  background: #fff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border: 1px solid rgba(243, 134, 48, 0.2);
  position: relative;
}

.testimonial-quote {
  color: #2c3e50;
  font-size: 20px;
  font-weight: 300;
  text-align: left;
  margin: 0 0 25px 0;
  line-height: 1.5;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  color: #6c757d;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  margin: 0;
  letter-spacing: 0.3px;
}

.testimonial-author::before {
  content: '— ';
  color: #f38630;
}

/* Decorative elements */
.section1::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -100px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(243, 134, 48, 0.05), rgba(243, 134, 48, 0.02));
  border-radius: 50%;
  z-index: 0;
}

.section1::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: -80px;
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, rgba(36, 125, 214, 0.04), rgba(36, 125, 214, 0.01));
  border-radius: 50%;
  z-index: 0;
}

/* ==========================================================================
   STEAMLINE SECTION
   ========================================================================== */

.section_steamline2 {
  padding: 40px 0;
  background-color: #fff7ed;
}

.section_steamline2_heading {
  text-align: center;
}

.section_steamline2_heading h2 {
  font-size: 50px;
  color: #247dd6;
  border-bottom: 2px solid #f38630;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.steamline-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.feature-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  flex: 1;
  min-width: 250px;
  max-width: 300px;
}

.feature-card h3 {
  color: #247dd6;
  font-size: 24px;
  margin-bottom: 15px;
  border: none;
}

.feature-card p {
  color: #333;
  font-size: 16px;
  line-height: 1.5;
  font-weight: normal;
}

.apply {
  text-align: center;
  margin-top: 20px;
}

.apply a {
  background: #247dd6;
  padding: 12px 28px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  display: inline-block;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(36, 125, 214, 0.3);
}

.apply a:hover {
  background: #1c6ab8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(36, 125, 214, 0.4);
}

/* ==========================================================================
   HOW IT WORKS SECTION
   ========================================================================== */

.section3 {
  background-color: #247dd6;
  padding: 40px 0;
}

.section3_heading {
  text-align: center;
  margin-bottom: 20px;
}

.section3_heading h2 {
  font-size: 50px;
  color: #fff;
  border-bottom: 2px solid #fff;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #fff;
  font-size: 18px;
  font-weight: normal;
  margin-top: 10px;
  opacity: 0.9;
}

.section_steamline2_main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section_steamline2_text {
  flex: 2;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-radius: 8px;
  text-align: left;
  width: 60%;
  margin: 20px auto;
}

.section_steamline2_text ul {
  margin-top: 20px;
  list-style-type: disc;
  padding-left: 20px;
}

.section_steamline2_text li {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 5px;
  color: #333;
}

.orange-bar {
  width: 60%;
  height: 2px;
  background-color: #f38630;
  margin: 20px auto;
}

/* Stat Cards Grid */
.stat-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 40px;
}

.stat-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.stat-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.stat-number {
  font-size: 48px;
  font-weight: bold;
  color: #247dd6;
  line-height: 1;
  margin: 0;
}

.stat-label {
  font-size: 16px;
  color: #6c757d;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.learn-more-link {
  text-align: center;
  margin-top: 40px;
}

.learn-more-link a {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid #f38630;
  padding-bottom: 3px;
  transition: border-color 0.3s ease;
}

.learn-more-link a:hover {
  border-color: #fff;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.section4 {
  padding: 40px 0;
  background-color: #f5f5f5;
  text-align: center;
}

.section-title {
  font-size: 50px;
  text-align: center;
  margin-bottom: 20px;
  color: #247dd6;
}

.section4 .section-title {
  margin-top: 0;
  padding: 10px 0;
  border-bottom: 2px solid #f38630;
  display: inline-block;
  width: auto;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
  background: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  color: #000;
}

.faq-question:hover {
  color: #f38630;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
}

.faq-answer {
  display: none;
  padding: 0 0 20px 0;
  text-align: left;
}

.faq-answer p {
  color: #333;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  text-align: left;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-section-title {
  font-size: 22px;
  color: #247dd6;
  margin: 30px 0 20px 0;
  font-weight: bold;
  border-bottom: 1px solid #f38630;
  padding-bottom: 5px;
  text-align: left;
}

/* ==========================================================================
   PRODUCT SHOWCASE SECTION
   ========================================================================== */

.product-showcase {
  background: #fff;
  padding: 80px 0;
}

.showcase-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.showcase-item {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 100px;
  padding: 60px 0;
}

.showcase-item:nth-child(even) {
  background: #f8f9fa;
  margin-left: -40px;
  margin-right: -40px;
  padding-left: 40px;
  padding-right: 40px;
  border-radius: 16px;
}

.showcase-item:last-child {
  margin-bottom: 0;
}

.showcase-item-reverse {
  flex-direction: row-reverse;
  background: #fff7ed !important;
  margin-left: -40px;
  margin-right: -40px;
  padding-left: 40px;
  padding-right: 40px;
  border-radius: 16px;
}

.showcase-content {
  flex: 1;
  min-width: 0;
}

.showcase-content h2 {
  font-size: 48px;
  color: #247dd6;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.showcase-content p {
  font-size: 20px;
  color: #6c757d;
  line-height: 1.6;
  font-weight: normal;
  margin: 0;
}

.showcase-screenshot {
  flex: 1.5;
  min-width: 0;
}

.showcase-screenshot img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 20px 60px rgba(0, 0, 0, 0.25);
  filter: saturate(0.9);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-screenshot img:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2), 0 24px 80px rgba(0, 0, 0, 0.3);
}

.screenshot-simple img {
  max-width: 70%;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */

.final-cta {
  background: #fff;
  padding: 50px 0;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.cta-qualifier {
  font-size: 36px;
  color: #2c3e50;
  margin-bottom: 5px;
  font-weight: normal;
}

.cta-content h2 {
  font-size: 36px;
  color: #2c3e50;
  margin-bottom: 30px;
  font-weight: normal;
}

.cta-button {
  background: #247dd6;
  padding: 12px 28px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  display: inline-block;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(36, 125, 214, 0.3);
}

.cta-button:hover {
  background: #1e6bb8;
  box-shadow: 0 6px 16px rgba(36, 125, 214, 0.4);
  transform: translateY(-2px);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
  background-color: #247dd6;
  padding: 10px 0;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

footer p {
  color: #fff;
  margin: 5px 0;
}

.footer-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #f38630;
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */

@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 75px;
    left: 0;
    background-color: #f38630;
  }

  .menu ul {
    flex-direction: column;
    margin-left: 0;
  }

  .toggle-button {
    display: flex;
    border: 1px solid #000;
    padding: 4px 9px;
    border-radius: 5px;
    background: #247dd6;
  }

  .menu.active {
    display: flex;
  }

  .section1_content {
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }

  .hero-tagline {
    font-size: 42px;
    text-align: center;
  }

  .hero-subtitle {
    text-align: center;
  }

  .testimonial-quote {
    text-align: center;
    font-size: 18px;
  }

  .testimonial-author {
    text-align: center;
  }

  .section1::before,
  .section1::after {
    display: none;
  }

  .steamline-features {
    flex-direction: column;
    align-items: center;
  }

  .section_steamline2_text {
    width: 90%;
  }

  .showcase-item {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
    padding: 40px 20px;
  }

  .showcase-item:nth-child(even) {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .showcase-item-reverse {
    flex-direction: column;
  }

  .showcase-content h2 {
    font-size: 36px;
    text-align: center;
  }

  .showcase-content p {
    font-size: 18px;
    text-align: center;
  }

  .product-showcase {
    padding: 60px 0;
  }

  .stat-cards-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 20px;
  }

  .stat-number {
    font-size: 40px;
  }
}

@media (max-width: 992px) {
  .menubar {
    justify-content: space-around;
  }

  .apply a {
    margin: 0;
  }
}