﻿/* == New Logo == */

.logo {
  display: flex;
  align-items: center;
}

/* Logo image */
.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

/* Text fallback (hidden unless image fails) */
.logo-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: inherit;
  white-space: nowrap;

}


    
    /* ===== Reset ===== */

    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      color: #333;
      line-height: 1.6;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* ===== Header ===== */
    .site-header {
      position: sticky;
      top: 0;
      background: #fff;
      border-bottom: 1px solid #eaeaea;
      z-index: 1000;
    }

    .nav-container {
      max-width: 1200px;
      margin: auto;
      padding: 0 20px;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    nav ul,
      .dropdown {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .logo {
      font-size: 20px;
      font-weight: bold;
      white-space: nowrap;
      margin-right: 28px;
    }

    /* ===== Hamburger ===== */
    .nav-toggle {
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .nav-toggle span {
      width: 24px;
      height: 2px;
      background: #333;
    }

    /* ===== Mobile Nav ===== */
    .main-nav {
      display: none;
      position: absolute;
      top: 70px;
      left: 0;
      width: 100%;
      background: #fff;
      border-bottom: 1px solid #eaeaea;
    }

    .main-nav.active {
      display: block;
    }

    .nav-menu {
      list-style: none;
      display: flex;
      flex-direction: column;
    }

    .nav-menu li {
      border-top: 1px solid #f1f1f1;
    }

    .nav-menu a,
    .dropdown-toggle {
      padding: 16px 20px;
      display: block;
      background: none;
      border: none;
      font-size: 15px;
      cursor: pointer;
      width: 100%;
      text-align: left;
    }

    /* ===== Dropdown (Mobile) ===== */
    .dropdown {
      display: none;
      background: #f9fafb;
    }

    .dropdown a {
      padding-left: 36px;
      font-size: 14px;
    }

    /* ===== CTA ===== */
    .cta {
      background: #0066ff;
      color: #fff;
      border-radius: 4px;
      margin: 12px;
      text-align: center;
    }

    /* ===== Desktop ===== */
    @media (min-width: 992px) {
      .nav-toggle {
        display: none;
      }

      .main-nav {
        display: block;
        position: static;
        border: none;
      }

      .nav-menu {
        flex-direction: row;
        align-items: center;
        gap: 24px;
      }

      .nav-menu li {
        border: none;
      }

      .nav-menu a,
      .dropdown-toggle {
        padding: 8px 0;
      }

      .has-dropdown {
        position: relative;
      }

      .dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 220px;
        background: #fff;
        border: 1px solid #eaeaea;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
      }

      .dropdown a {
        padding: 10px 16px;
      }

      .has-dropdown:hover .dropdown {
        display: block;
      }

      .cta {
        margin: 0;
        padding: 8px 16px;
      }
    }

    /* ===== Navigation Hover States ===== */

	/* Top-level menu hover (desktop) */
	@media (min-width: 992px) {
	  .nav-menu > li > a,
	  .nav-menu > li > .dropdown-toggle {
	    position: relative;
	    transition: color 0.2s ease;
	  }
	
	  .nav-menu > li > a::after,
	  .nav-menu > li > .dropdown-toggle::after {
	    content: "";
	    position: absolute;
	    left: 0;
	    bottom: -6px;
	    width: 0;
	    height: 2px;
	    background: #0066ff;
	    transition: width 0.25s ease;
	  }
	
	  .nav-menu > li:hover > a,
	  .nav-menu > li:hover > .dropdown-toggle {
	    color: #0066ff;
	  }
	
	  .nav-menu > li:hover > a::after,
	  .nav-menu > li:hover > .dropdown-toggle::after {
	    width: 100%;
	  }
	}
	
	/* Dropdown item hover */
	.dropdown a {
	  transition: background 0.2s ease, color 0.2s ease;
	}
	
	.dropdown a:hover {
	  background: #f0f4ff;
	  color: #0066ff;
	}
	
	/* Mobile tap feedback */
	.nav-menu a:active,
	.dropdown-toggle:active {
	  background: #f1f5ff;
	}
	
	/* ===== Nav Action Buttons ===== */ /* hidden on mobile by default */
	/* .nav-actions {
	  display: none; 
	  align-items: center;
	  gap: 12px;
	} */

@media (min-width: 992px) {
  .nav-actions {
    display: flex;
    margin-left: 24px; /* spacing from nav menu */
	  gap: 12px;
  }
}

@media (max-width: 768px) {
    .nav-actions .btn.btn-demo {
	  display: none; 
	  align-items: center;
	  gap: 12px;
	}
 .nav-actions .btn.btn-login {
    min-width: 80px;
    font-size: 14px;
    padding: 7px 17px;
    /* margin:auto; */
  }
  }

	.btn {
	  min-width: 140px;
	  font-size: 14px;
	  padding: 10px 42px;
	  text-align: center;
	  white-space: nowrap;
	  border-radius: 4px;
	  font-weight: 600;
	  transition: background 0.2s ease, color 0.2s ease, border 0.2s ease;
	}
.btn-login {
  /* color: #333; */
  color:#00aaff;
  border: 1px solid #dcdcdc;
  background: #fff;
}

.btn-login:hover {
  background: #f5f7fa;
  color: #0066ff;
}
.btn-demo {
  background: #0066ff;
  color: #fff;
  border: 1px solid #0066ff;
}

.btn-demo:hover {
  background: #004fcc;
  border-color: #004fcc;
}
/* ===== Phone Number in Header ===== */
.phone-number {
  font-weight: 600;
  color: #333;
  white-space: nowrap;
  margin-right: 12px;       /* space between phone and login button */
  text-decoration: none;
  transition: color 0.2s ease;
}

.phone-number:hover {
  color: #0066ff;           /* hover highlight for professional feel */
}

/* ===== Intro Section ===== */
.intro-section {
  background: #ffffff;
  padding: 80px 20px;
}

.intro-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.intro-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111;
}

.intro-lead {
  font-size: 18px;
  color: #555;
  max-width: 900px;
  margin: 0 auto 48px auto;
  line-height: 1.6;
}

/* Features Grid */
.intro-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

.feature {
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.feature h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
}

.feature p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

/* CTA */
.intro-cta .btn {
  min-width: 160px;
  padding: 12px 26px;
}

/* ===== Desktop Layout ===== */
@media (min-width: 992px) {
  .intro-features {
    flex-direction: row;
    gap: 24px;
    justify-content: space-between;
  }

  .feature {
    flex: 1;
  }
}

/* ===== Hero Section ===== */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 60px 20px 80px 20px; /* top, right, bottom, left */
  background: #f5f7fa;
}

.hero-content h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  max-width: 700px;
  text-align: center;
  color: #111;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-content p {
  font-size: 18px;
  color: #555;
  max-width: 600px;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 32px;
  animation: fadeInUp 1s ease forwards;
}

/* Stats */
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  text-align: center;
  animation: fadeInUp 1.2s ease forwards;
}

.hero-stats .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-stats .number {
  font-size: 28px;
  font-weight: 700;
  color: #0066ff;
}

.hero-stats .label {
  font-size: 14px;
  color: #555;
  margin-top: 4px;
}

/* CTA Buttons */
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.hero-cta .btn {
  min-width: 160px;
  white-space: nowrap;
  font-size: 14px;
  padding: 12px 26px;
}

/* Hero Image */
.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  animation: fadeIn 1.4s ease forwards;
}

/* ===== Desktop Layout ===== */
/* @media (min-width: 992px) { */
  /* .hero {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 60px 40px 80px 40px; smaller top padding than before
  } */

  /* .hero-content {
    flex: 1;
  }

  .hero-content h1 {
    text-align: left;
  }

  .hero-content p {
    text-align: left;
  }

  .hero-stats {
    flex-direction: row;
    gap: 40px;
    text-align: left;
  }

  .hero-cta {
    flex-direction: row;
    gap: 16px;
    margin-top: 24px;
  }

  .hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  } */
  
/* } */

.hero-container {
  background: #f5f7fa;
}

@media (min-width: 992px) {
  .hero {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* justify-content: center; */
    align-items: center;

    /* Keep content readable on wide screens */
    max-width: 1200px;
    margin: 0 auto;

    text-align: left;
    padding: 60px 40px 80px;
    gap: 40px;
  }

  .hero-content {
    /* flex: 1; */
    max-width: 600px; /* prevents text from becoming too wide */
    /* max-width: 1200px;  */
    /* margin:auto; */
  }

  .hero-content h1,
  .hero-content p {
    text-align: left;
  }

  .hero-stats {
    display: flex;
    flex-direction: row;
    gap: 40px;
    text-align: left;
    flex-wrap: wrap; /* prevents overflow on very wide stat blocks */
  }

  .hero-cta {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
  }

  .hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 500px;
  }

  .hero-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
}


/* ===== Animations ===== */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* ===== Intro Section ===== */
.intro-section {
  background: #ffffff;
  padding: 80px 20px;
}

.intro-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.intro-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111;
}


/* Features Grid */
.intro-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

.feature {
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;       /* initially hidden for animation */
  transform: translateY(20px);
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.feature h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
}

.feature p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

/* CTA */
.intro-cta .btn {
  min-width: 160px;
  padding: 12px 26px;
}

/* ===== Desktop Layout ===== */
@media (min-width: 992px) {
  .intro-features {
    flex-direction: row;
    gap: 24px;
    justify-content: space-between;
  }

  .feature {
    flex: 1;
  }
}

/* ===== Scroll Animations ===== */
.feature.animate.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease-out;
}

.testimonials {
  background: #f5f7fa;
  padding: 80px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 32px;
  margin-bottom: 48px;
}

.testimonial-cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.testimonial-card {
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  max-width: 400px;
  margin: auto;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.testimonial-card h4 {
  margin-top: 16px;
  font-weight: 600;
}

.testimonial-card span {
  font-size: 14px;
  color: #555;
}

/* Desktop */
@media(min-width: 992px) {
  .testimonial-cards {
    flex-direction: row;
    justify-content: center;
    /* flex-wrap: wrap; */
    max-width: 1200px; /* Keeps content readable on wide screens */
    margin: 0 auto; /* Centers the content */
  }
}

.features-section {
  background: #f9fafb;
  padding: 40px 20px;
  text-align: center;
}

.features-container {
  max-width: 1200px;
  margin: auto;
}

.features-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111;
}

.features-section.clr-white {
  background: #ffffff;
}

.features-lead {
  font-size: 18px;
  color: #555;
  margin-bottom: 48px;
}

.features-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature-card {
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
}

.feature-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Desktop layout */
@media(min-width: 992px) {
  .features-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
  }

  .feature-card {
    flex: 1 1 calc(33% - 24px); /* 3 columns */
  }
}

/* Scroll animation */
.feature-card.animate.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease-out;
}

.animate {
  opacity: 0;
  --scroll-y: 20px;
}

.animate.show {
  opacity: 1;
  --scroll-y: 0px;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}


.feature-icon {
  margin-bottom: 16px;
}
.feature-icon svg {
  width: 48px;
  height: 48px;
}

.feature-card:hover .feature-icon svg {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.site-footer {
  /* background: #111; */
  background:  linear-gradient(180deg, #0f172a 0%, #020617 100%);
  color: #fff;
  padding: 60px 20px 20px;
  font-family: Arial, sans-serif;;
  color: #fff;
  padding: 60px 20px 20px;
  font-family: Arial, sans-serif;
}

.site-footer.overlap {
  position: relative;
  z-index: 5;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-column h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #00aaff;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #888;
}

/* Desktop Layout */
@media(min-width: 992px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
  }

  .footer-column {
    flex: 1;
  }
}



.feature-card {
  --hover-y: 0px;
  transform: translateY(calc(var(--scroll-y) + var(--hover-y)));
}

.feature-card:hover {
  --hover-y: -6px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.6;
}

.feature-card .feature-icon {
  margin-bottom: 16px;
}

.data-confidence-section {
  background: #f9fbff;
  padding: 40px 20px;
}

.data-confidence-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.data-confidence-lead {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 20px auto 50px;
  color: #555;
}

.data-confidence-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.confidence-point {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.data-confidence-cta {
  margin-top: 50px;
}

.legal-hero {
  background: #f5f7fb;
  padding: 0px 20px;
  text-align: center;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
  /* padding: 20px 20px; */
}

.legal-container h2 {
  margin-top: 40px;
  /* margin-top: 20px; */
}

.legal-container h3 {
  margin-top: 25px;
}

.legal-updated {
  font-size: 0.9rem;
  color: #666;
}

.privacy-list {
  padding-left: 26px;   /* controls indentation */
  margin-left: 0;
}

/* ================================
   ABOUT US PAGE STYLES START
================================ */

/* Hero */
.sticky-about-hero {
  position: sticky;
  top: 70px;
  z-index: -1;
}
.about-hero {
  background: linear-gradient(135deg, #0b2b4c, #0f4c81);
  color: #ffffff;
  padding: 90px 20px 80px;
  text-align: center;
}

.about-hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.about-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  opacity: 0.95;
}

/* Sections */
.about-section {
  padding: 30px 20px;
  background: #ffffff;
}

.about-section.alt-bg {
  background: #f6f8fb;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
}

.about-section h2 {
  font-size: 2.2rem;
  margin-bottom: 24px;
  color: #0b2b4c;
}

.about-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #333;
}

/* ================================
   ABOUT US PAGE STYLES END
================================ */



/* Feature bullets */
.about-features {
  margin: 30px 0;
}

.about-features ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px 30px;
  padding-left: 20px;
}

.about-features li {
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
}

.about-features li::marker {
  color: #0f4c81;
}

/* Lists */
.about-list {
  margin: 20px 0 30px 20px;
}

.about-list li {
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.6;
}

/* CTA */
.about-cta {
  background: #0b2b4c;
  color: #ffffff;
  padding: 24px 20px;
  text-align: center;
}

.about-cta h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.about-cta p {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 18px;
}

.about-tagline {
  font-size: 1.15rem;
  margin-top: 25px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.2rem;
  }

  .about-section h2 {
    font-size: 1.9rem;
  }

  .sticky-about-hero {
    position: relative;
    top: 0;
  }

  .about-quote-space {
  display: none;
}

}
/* ================================
   ABOUT US – EDITORIAL ENHANCEMENTS
================================ */

/* Pull Quote */
.about-quote {
  background: #0b2b4c;
  color: #ffffff;
  padding: 70px 20px;
  text-align: center;
}

.about-quote blockquote {
  max-width: 900px;
  margin: 0 auto;
  /* margin:auto; */
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 500;
  position: relative;
}

/* .about-quote blockquote::before,
.about-quote blockquote::after {
  content: "“";
  font-size: 3rem;
  position: absolute;
  opacity: 0.25;
} */

/* .about-quote blockquote::before {
  left: 240px;
  top: -10px;
} */

/* .about-quote blockquote::after {
  content: "”";
  right: 240px; 
  bottom: -20px;
} */

/* .about-quote blockquote::after {
  content: "”";
  font-size: 3rem;
  position: absolute;
  opacity: 0.25;
} */

/* ************ new styles for quote icons starts ************ */
/* .about-quote blockquote::before {
  content: "“";
  font-size: 3rem;
  opacity: 0.25;
}

.about-quote blockquote::after {
  content: "”";
  font-size: 3rem;
  opacity: 0.25;
} */

.about-quote .about-quote-icon {
  font-size: 3rem;
  opacity: 0.25;
  line-height: 0.5;
}
/* ************ new styles for quote icons ends ************ */

/* Purpose Section */
.about-purpose {
  background: #ffffff;
  padding: 80px 20px;
}

.about-purpose h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #0b2b4c;
}

.about-purpose p {
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 820px;
  margin-bottom: 18px;
  color: #333;
}

/* Better reading width */
.about-container {
  max-width: 820px;
}

/* Subtle divider rhythm */
.about-section + .about-section,
.about-purpose + .about-section {
  border-top: 1px solid #eef1f6;
}

/* Mobile refinement */
@media (max-width: 768px) {
  .about-quote blockquote {
    font-size: 1.25rem;
  }
}
/* ================================
   ABOUT PAGE – LAYOUT UPGRADE
================================ */

.about-eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* Split layout */
.about-split {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
}
/* Fix visibility of highlight text */
.about-highlight,
.about-highlight p {
  color: #ffffff !important;
}

.about-highlight {
  background: #0b2b4c;
  color: #fff;
  padding: 32px;
  border-radius: 16px;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Narrow reading width */
.about-container.narrow {
  max-width: 720px;
}

/* Pull quote */
.about-quote {
  background: #0b2b4c;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  font-size: 1.5rem;
  font-weight: 500;
}

/* Cards */
.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.about-card {
  background: #fff;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.about-card h4 {
  margin-bottom: 10px;
  color: #0b2b4c;
}

/* Checklist */
.about-checklist {
  list-style: none;
  padding-left: 0;
  margin-top: 24px;
}

.about-checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
}

.about-checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0f4c81;
}

/* Mobile */
@media (max-width: 900px) {
  .about-split {
    grid-template-columns: 1fr;
  }
}

/* Card grid layout */
.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

/* Base card */
.about-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 24px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  border: 1px solid #e5eaf0;
  position: relative;
}

/* Subtle top accent */
.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: #0f4c81;
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

/* Hover interaction */
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
  border-color: #d6e2f0;
}

.about-card:hover::before {
  opacity: 1;
}

/* Typography */
.about-card h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #0b2b4c;
}

.about-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4a5b6b;
}

.contact-hero {
  /* background: linear-gradient(135deg, #0b2b4c, #0f4c81); */
  background: linear-gradient(135deg, #14b8a6 0%, #22c55e 100%);
  color: #fff;
  padding: 70px 20px;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%); /* Custom clip path */
}

.contact-hero h1{
  color:honeydew;
}

.contact-hero-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.contact-section {
  padding: 30px 20px;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.contact-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 26px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  transform:scale(1.1);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.contact-card a:hover {
  color: #0f4c81;
  text-decoration: underline;
}

.contact-card h3 {
  margin-bottom: 12px;
  color: #0b2b4c;
}

.contact-card-title {
  display: flex;
  align-items:center;  
  gap: 12px;
  /* justify-content: center; */
}

.contact-map iframe {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: 12px;
  margin-top: 20px;
}

.contact-form-section {
  padding: 80px 20px;
  background: #f8fbff;
}

.contact-form {
  max-width: 600px;
  margin: 40px auto 0;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #d6dde6;
  font-size: 0.95rem;
}

.form-success,
.form-error {
  display: none;
  margin-top: 18px;
  font-weight: 600;
}

.form-success {
  color: #1b7f3b;
}

.form-error {
  color: #c0392b;
}

.error {
  color: #c0392b;
  font-size: 0.8rem;
  margin-top: 4px;
  display: block;
}

/* .contact-section {
  padding: 80px 0;
} */

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Grid layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

/* Form */
.contact-form-wrapper h2,
.contact-map-wrapper h2 {
  margin-bottom: 12px;
  color: #0b2b4c;
}

.section-intro {
  color: #4a5b6b;
  margin-bottom: 24px;
}

/* Map */
.map-embed {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.contact-form-wrapper,
.contact-map-wrapper {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.commitment-section {
  padding: 30px 20px;
  background-color: #f8f9fa;
  text-align: center;
}

.commitment-section h2 {
  font-size: 2.2rem;
  margin-bottom: 24px;
  font-weight: 700;
  color: #111;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.commitment-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.commitment-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Optional: hover effect like cards lifting */
.commitment-item {
  background: #fff;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.commitment-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* === LEGAL ===*/

.legal-container {
  max-width: 820px;
  font-size: 0.98rem;
  line-height: 1.75;
  color: #2e2e2e;
}

.legal-container p {
  margin-bottom: 18px;
}

.legal-container h2 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 48px;
  margin-bottom: 14px;
  color: #0b2b4c;
}

.legal-container h2::before {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: #0f4c81;
  margin-bottom: 12px;
  border-radius: 2px;
}

.legal-toc {
  background: #f8fafc;
  border-bottom: 1px solid #e6ecf2;
}

.legal-toc h2 {
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.legal-toc ol {
  padding-left: 18px;
  columns: 2;
}

.legal-toc li {
  margin-bottom: 8px;
}

.legal-toc a {
  color: #0f4c81;
  font-weight: 500;
}

.legal-toc a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .legal-toc ol {
    columns: 1;
  }
}

.legal-hero {
  background: linear-gradient(180deg, #f5f7fb, #ffffff);
  padding: 90px 20px 60px;
}

.legal-hero h1 {
  font-size: 2.6rem;
  color: #0b2b4c;
}

.legal-intro {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #4a5b6b;
}

.legal-updated {
  display: inline-block;
  background: #eef3ff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #0f4c81;
}
@media print {
  header, footer, .legal-toc {
    display: none;
  }

  body {
    font-size: 11pt;
    color: #000;
  }
}

.legal-hero {
  background: linear-gradient(180deg, #f5f7fb, #ffffff);
  padding: 48px 20px 36px;   /* reduced + balanced */
  text-align: center;
  border-bottom: 1px solid #e6ecf2;
}
.legal-hero h1 {
  font-size: 2.2rem;        /* down from 2.6rem */
  margin-bottom: 8px;
  color: #0b2b4c;
}

.legal-updated {
  margin-bottom: 10px;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Offset anchor scroll for sticky header */
.legal-container h2 {
  scroll-margin-top: 90px; /* header height + breathing room */
}

/*=== Contact Us ===*/

/* ===== Contact Page Layout Fix ===== */

/* Row 1: Info cards */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Row 2: Map + Form */
/* .contact-split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: stretch;
} */

.contact-split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: stretch;
  max-width:1100px;
  margin: auto;
  padding: 30px 20px;
  position: sticky;
  /* bottom: 0;  */
  top: -40vh;
  z-index: -1;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-info-grid,
  .contact-split-grid {
    grid-template-columns: 1fr;
    position:relative;
    top:0px;
  }
}

/*=== How it works ===*/ 

/* How Call Tracking Works */
.how-it-works-section {
  background: #f8f9fc;
  padding: 80px 20px;
}

.how-it-works-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.how-it-works-lead {
  max-width: 720px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  color: #555;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.how-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px 24px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  position: relative;
}

.step-number {
  width: 40px;
  height: 40px;
  background: #0066ff;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.how-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.how-card p {
  font-size: 0.95rem;
  color: #555;
}

.how-it-works-cta {
  margin-top: 50px;
}
@media (min-width: 1024px) {
  .how-it-works-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===============================
   GLOBAL HELPERS
================================= */
section {
  /* padding: 80px 6%; */
  padding: 20px 6%;
}

h1, h2, h3 {
  color: #0f172a;
}

.section-intro {
  max-width: 720px;
  margin: 12px auto 48px;
  text-align: center;
  color: #475569;
  font-size: 1.05rem;
}

/* ===============================
   HERO
================================= */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 12px;
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-subtext {
  font-size: 1.15rem;
  color: #475569;
  margin-bottom: 32px;
}

.hero-proof-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 12px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}

.stat .number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2563eb;
}

.stat .label {
  font-size: 0.85rem;
  color: #475569;
}

.hero-cta {
  display: flex;
  gap: 16px;
}

.hero-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* ===============================
   BUTTONS
================================= */
.btn {
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: #2563eb;
  color: #fff;
}

.btn-primary:hover {
  background: #1d4ed8;
}

.btn-secondary {
  border: 1px solid #cbd5f5;
  color: #2563eb;
}

.text-link {
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}

/* ===============================
   FEATURES
================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* ===============================
   HOW IT WORKS
================================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.step {
  text-align: center;
  padding: 24px;
  background: #f8fafc;
  border-radius: 10px;
}


/* ===============================
   WHY TRUE PULSE
================================= */
.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  border: 1px solid #e2e8f0;
}

/* ===============================
   OUTCOMES
================================= */
.outcome-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.outcome-card {
  background: #f8fafc;
  padding: 28px;
  border-radius: 12px;
}

/* ===============================
   TESTIMONIALS
================================= */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: #fff;
  padding: 28px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

/* ===============================
   FINAL CTA
================================= */
.final-cta {
  text-align: center;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff;
}

.final-cta h2,
.final-cta p {
  color: #fff;
}

/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .features-grid,
  .why-cards,
  .outcome-cards,
  .testimonial-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   AUDIENCE CONTEXT BAR
================================= */
.audience-context {
  width: 100%;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 28px 6%;
  text-align: center;
}

.audience-context h2 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: -0.01em;
}

/* Mobile refinement */
@media (max-width: 480px) {
  .audience-context h2 {
    font-size: 1.15rem;
    line-height: 1.4;
  }
}
.audience-context {
  background: linear-gradient(
    to bottom,
    #f8fafc,
    #ffffff
  );
}

/* ===============================
   HERO TEXT ROTATOR
================================= */

.hero-rotator {
  position: relative;
  min-height: 1.2em; /* prevents layout jump */
}

.hero-text {
  display: inline-block;
  opacity: 0;
  transition: opacity 0.35s ease;
  will-change: opacity;
}

.hero-text.is-visible {
  opacity: 1;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-text {
    transition: none;
  }
}

/* ===============================
   HERO width ALIGNMENT FIX
================================= */


/* ===============================
   HERO HEIGHT & ALIGNMENT FIX
================================= */
.hero {
  /* min-height: calc(100vh - 140px); accounts for nav + audience bar */
  align-items: center;
}

.hero-content {
  max-width: 620px;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-hero h1 {
  color: #ffffff;
}

.about-hero .about-subtitle {
  color: rgba(255, 255, 255, 0.92);
}

.about-hero-title::after {
  content: "|";
  margin-left: 5px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

.about-hero .about-eyebrow {
  color: rgba(255, 255, 255, 0.75);
}

/* =========================
   HOW CALL TRACKING WORKS
========================= */

.call-tracking-timeline {
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  padding: 20px 20px 100px;
  margin: 0;
  text-align: center;

}

/* Centered section heading */
.call-tracking-timeline h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #0f172a;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Constrain timeline width (not the section) */
.call-tracking-timeline .timeline,
.call-tracking-timeline .timeline-content {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================
   INTERACTIVE CAL TRACKING ROI DEMO
========================= */ 
   
.iroi-container {
  font-family: Inter, Arial, sans-serif;
  background: #f8fafc;
  color: #0f172a;
  padding: 40px;
  text-align: center;
}

.iroi-container h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.iroi-container p.iroi-subtitle {
  /* max-width: 900px; */
  color: #475569;
  margin-bottom: 20px;
}

.iroi-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 25px;
}

.iroi-toggle {
  position: relative;
  width: 56px;
  height: 30px;
}

.iroi-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.iroi-slider {
  position: absolute;
  inset: 0;
  background: #cbd5f5;
  border-radius: 999px;
  transition: 0.3s;
  cursor: pointer;
}

.iroi-slider:before {
  content: "";
  position: absolute;
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}

.iroi-toggle input:checked + .iroi-slider {
  background: #2563eb;
}

.iroi-toggle input:checked + .iroi-slider:before {
  transform: translateX(26px);
}

.iroi-table-wrap {
  overflow: auto;
}


.iroi-container table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  /* overflow: auto; */
  box-shadow: 0 15px 30px rgba(0,0,0,0.06);
}

.iroi-container th, .iroi-container td {
  padding: 16px;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
}

.iroi-container th {
  background: #020617;
  color: #ffffff;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.iroi-container tr:hover {
  background: #f1f5f9;
}

.iroi-campaign {
  font-weight: 600;
  color: #2563eb;
}

.iroi-tooltip {
  position: fixed;
  max-width: 320px;
  background: #0f172a;
  color: #f8fafc;
  padding: 16px;
  border-radius: 12px;
  font-size: 0.9rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  display: none;
  z-index: 1000;
}

.iroi-tooltip strong {
  color: #38bdf8;
}

/* .iroi-header  {
  text-align: center;
} */

/*=================================
	whatsapp
=================================*/
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}
.whatsapp-float img {
  width: 32px;
  height: 32px;
}

.whatsapp-float::after {
  content: "Chat with us";
  position: absolute;
  right: 65px;
  background: #25D366;
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 12px;
  opacity: 0;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.whatsapp-float:hover::after {
  opacity: 1;
}






/* ===============================
   Timeline
================================ */
.timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

/* Progress background */
.timeline-progress {
  position: absolute;
  top: 35px;
  left: 0;
  right: 0;
  height: 4px;
  background: #e5e7eb;
  border-radius: 2px;
  overflow: hidden;
  z-index: 0;
}

/* Animated fill */
.timeline-progress-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #3b82f6, #2563eb);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.6s ease;
}

/* ===============================
   Steps
================================ */
.timeline-step {
  width: 20%;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.timeline-step .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.timeline-step svg {
  width: 32px;
  height: 32px;
  stroke: #3b82f6;
}

.timeline-step span {
  display: block;
  font-size: 14px;
  max-width: 120px;
  margin: 0 auto;
}

.timeline-step.active .icon {
  border-color: #3b82f6;
  background: #eef4ff;
  transform: scale(1.1);
}

/* ===============================
   Content
================================ */
.timeline-content , .timeline-content-mobile {
	max-width: 700px;
	margin: 0 auto;
	padding: 25px 30px;
	background: #ffffff;
	border-radius: 10px;
	box-shadow: 0 15px 40px rgba(0,0,0,0.06);
	font-size: 16px;
	text-align: center;
	color: #6B7280;
}

.timeline-content-mobile {
  display: none;
}

@media (max-width: 768px) {
  /* .timeline-content-mobile {
    display: block;
  } */
   .timeline-content  {
    display: none;
   }
}

/*.timeline-heads {
      font-family: Arial, Helvetica, sans-serif;
      color: #333;
      line-height: 1.6;
}*/

/* ===============================
   Mobile
================================ */
@media (max-width: 768px) {
  .timeline {
    flex-direction: column;
    gap: 30px;
  }

  .timeline-progress {
    display: none;
  }

  .timeline-step {
    width: 100%;
  }
}

/* ===============================
   Integrations and tracking and information pages 
================================ */
.usecase-section {
  max-width: 1200px;
  margin:auto;
}

.usecase-section ul li, .usecase-section ol li {
  padding: 0 16px;
  margin:0 40px;
}

/* ===============================
   travel page
================================ */
.usecase-cta {
  max-width: 1200px;
  margin:auto;
}

/* ===============================
   index page IROI
================================ */
.iroi-container {
  max-width: 1200px;
  margin:auto;
}

/* ===============================
   CT ROI IN CALLTRACKING
================================ */
.ctiroi-container-wrapper {
  --primary:#2563eb;
  --dark:#0f172a;
  --muted:#475569;
  --bg:#f8fafc;
  --card:#ffffff;
  --success:#16a34a;
  --danger:#dc2626;
}

.ctiroi-container-wrapper {
  margin:0;
  font-family:Inter,Arial,sans-serif;
  background:var(--bg);
  color:var(--dark);
}

.ctiroi-container {
  max-width:1200px;
  margin:auto;
  padding:70px 32px;
}

.ctiroi-container h1 { font-size:3rem; margin-bottom:12px; }
.ctiroi-container h2 { font-size:2.1rem; margin-bottom:20px; }
.ctiroi-container p { color:var(--muted); line-height:1.6; }

.ctiroi-toggle-wrap {
  display:flex;
  align-items:center;
  gap:16px;
  margin:30px 0 50px;
}

.ctiroi-toggle {
  position:relative;
  width:60px;
  height:32px;
}

.ctiroi-toggle input { display:none; }

.ctiroi-slider {
  position:absolute;
  inset:0;
  background:#c7d2fe;
  border-radius:999px;
  cursor:pointer;
}

.ctiroi-slider:before {
  content:"";
  position:absolute;
  width:24px;
  height:24px;
  left:4px;
  bottom:4px;
  background:#fff;
  border-radius:50%;
  transition:0.3s;
}

.ctiroi-toggle input:checked + .ctiroi-slider {
  background:var(--primary);
}

.ctiroi-toggle input:checked + .ctiroi-slider:before {
  transform:translateX(28px);
}

/* CAMPAIGN CARDS */

.ctiroi-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:28px;
}

.ctiroi-card {
  background:var(--card);
  padding:28px;
  border-radius:18px;
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
  transition:0.3s;
  position:relative;
}

.ctiroi-card:hover {
  transform:translateY(-6px);
}

.ctiroi-card h3 {
  margin-top:0;
  font-size:1.3rem;
}

.ctiroi-metrics {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:18px;
}

.ctiroi-metric {
  background:#f1f5f9;
  padding:12px;
  border-radius:10px;
  font-size:0.9rem;
}

.ctiroi-metric strong {
  display:block;
  font-size:1.1rem;
  color:var(--dark);
}

.ctiroi-badge {
  position:absolute;
  top:20px;
  right:20px;
  padding:6px 12px;
  border-radius:999px;
  font-size:0.75rem;
  font-weight:600;
}

.ctiroi-good { background:#dcfce7; color:var(--success); }
.ctiroi-bad { background:#fee2e2; color:var(--danger); }

/* CTA */

.ctiroi-cta {
  margin-top:70px;
  margin-bottom:30px;
  background:linear-gradient(135deg,#2563eb,#1e40af);
  color:white;
  padding:70px 40px;
  border-radius:22px;
  text-align:center;
}

.ctiroi-cta p { color:#e5e7eb; }

.ctiroi-btn {
  display:inline-block;
  margin-top:20px;
  padding:14px 24px;
  background:white;
  color:#1e40af;
  border-radius:12px;
  font-weight:600;
  text-decoration:none;
}

/* ===============================
   DNI DEMO CARDS IN CALLTRACKING
================================ */
.dnidemo-wrapper {
  background: #ffffff;

}
.dnidemo-container {
      font-family: system-ui, sans-serif;
      padding: 40px;
      background: #ffffff;
      max-width: 1200px;
      margin:auto;
    }

    .dnidemo-container h1 {
      margin-bottom: 20px;
    }

    .dnidemo-toggle {
      margin-bottom: 30px;
    }

    .dnidemo-toggle label {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .dnidemo-container input[type=checkbox] {
      display: none;
    }

    .dnidemo-slider {
      width: 46px;
      height: 24px;
      background: #d1d5db;
      border-radius: 999px;
      position: relative;
      cursor: pointer;
    }

    .dnidemo-slider::after {
      content: "";
      position: absolute;
      width: 18px;
      height: 18px;
      background: white;
      border-radius: 50%;
      top: 3px;
      left: 4px;
      transition: transform 0.2s;
    }

    .dnidemo-container input:checked + .dnidemo-slider {
      background: #2563eb;
    }

    .dnidemo-container input:checked + .dnidemo-slider::after {
      transform: translateX(22px);
    }

    .dnidemo-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .dnidemo-card {
      background: white;
      border-radius: 12px;
      padding: 16px;
      box-shadow: 0 6px 16px rgba(0,0,0,0.08);
      transition: transform 0.3s ease;
    }

    .dnidemo-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 24px rgba(0,0,0,0.12);
      transform: scale(1.1);
    }

    .dnidemo-phone {
      font-size: 20px;
      font-weight: bold;
      color: #2563eb;
      margin: 10px 0;
    }

    .dnidemo-pre {
      background: #f3f4f6;
      padding: 10px;
      border-radius: 8px;
      font-size: 12px;
      white-space: pre-wrap;
    }

    @media (max-width: 768px) {
      .dnidemo-cards {
      grid-template-columns: 1fr;
    }
    }

/* ===============================
   INTEGRATION GUIDE PAGES
================================ */

:root {
  --integration-guide-primary: #2563eb;
  --integration-guide-secondary: #1e40af;
  --integration-guide-bg: #f8fafc;
  --integration-guide-text: #0f172a;
  --integration-guide-muted: #475569;
  --integration-guide-border: #e5e7eb;
  --integration-guide-warning-bg: #fff7ed;
  --integration-guide-warning-border: #fb923c;
}

.integration-guide-wrapper {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--integration-guide-bg);
  color: var(--integration-guide-text);
  line-height: 1.6;
}

/* HERO */
.integration-guide-hero {
  background: linear-gradient(
    135deg,
    var(--integration-guide-secondary),
    var(--integration-guide-primary)
  );
  color: #fff;
  padding: 80px 24px;
}

.integration-guide-hero-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.integration-guide-hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
  color:#ffffff;
}

.integration-guide-hero p {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 28px;
}

.integration-guide-hero a {
  background: #fff;
  color: var(--integration-guide-primary);
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.integration-guide-hero img {
  width: 70%;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  margin:auto;
}

/* .integration-guide-hero-inner-title {
  display: flex;
  flex-direction: row;
  gap: 18px;
}

.integration-guide-hero-inner-title img {
  border-radius: 0;
  box-shadow: none;
  width: auto; 
} */

/* VIDEO */
.integration-guide-video-section {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 24px;
  text-align: center;
}

.integration-guide-video-section h2 {
  font-size: 30px;
  margin-bottom: 12px;
}

.integration-guide-video-section p {
  color: var(--integration-guide-muted);
  margin-bottom: 32px;
}

/* .integration-guide-video-wrapper {
  position: relative;
  padding-top: 56.25%;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.integration-guide-video-wrapper iframe,
.integration-guide-video-wrapper video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
} */


.integration-guide-video-wrapper {
  position: relative;
  /* padding-top: 56.25%; */
  width:100%;
  max-width: 900px;
  border-radius: 12px;
  overflow: hidden;
  /* background: #000; */
  background: #00000029;
  /* box-shadow: 0 20px 40px rgba(0,0,0,0.15); */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.402);
}

.integration-guide-video-wrapper iframe,
.integration-guide-video-wrapper video {
  /* position: absolute; */
  display: block;
  padding: 10px;
  inset: 0;
  width: 100%;
  height: auto;
  border: 0;
}

/* CONTENT */
.integration-guide-container {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 24px;
}

.integration-guide-container h2 {
      font-size: 30px;
      margin-bottom: 12px;
}

.integration-guide-subtitle {
      color: #475569;
      margin-bottom: 40px;
    }

.integration-guide-step {
  background: #fff;
  border: 1px solid var(--integration-guide-border);
  border-radius: 18px;
  padding: 28px;
  margin-bottom: 32px;
}

.integration-guide-step h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 20px;
}

.integration-guide-step ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.integration-guide-step li {
  margin-bottom: 8px;
}

.integration-guide-step-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.integration-guide-step-images img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--integration-guide-border);
}

.integration-guide-step-images img:hover {
  cursor: pointer;
  transform: scale(1.1);
  box-shadow: #0000004f 0 4px 8px;
}

.lightbox {
 display: none;
 justify-content: center;
 align-items: center;
 height: 100vh;
 width: 100vw;
 z-index: 9999;
 position:fixed;
 top:0;
 left:0;
 background: #000000af;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
}

/* IMPORTANT NOTE */
.integration-guide-note {
  background: var(--integration-guide-warning-bg);
  border-left: 5px solid var(--integration-guide-warning-border);
  border-radius: 14px;
  padding: 26px;
  margin-top: 60px;
}

.integration-guide-note h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
}

/* CTA */
.integration-guide-cta {
  background: var(--integration-guide-secondary);
  color: #fff;
  padding: 64px 24px;
  text-align: center;
  margin-top: 80px;
}

.integration-guide-cta h2 {
  font-size: 32px;
  margin-bottom: 14px;
  color: #ffffff;
}

.integration-guide-cta p {
  opacity: 0.95;
  margin-bottom: 24px;
}

.integration-guide-cta a {
  background: #fff;
  color: var(--integration-guide-secondary);
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .integration-guide-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .integration-guide-step-images {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   API DEFINITIONS PAGE
================================ */
:root {
      --api-def-primary: #2563eb;
      --api-def-bg: #f8fafc;
      --api-def-card: #ffffff;
      --api-def-border: #e5e7eb;
      --api-def-text: #0f172a;
      --api-def-muted: #64748b;
      --api-def-success: #16a34a;
      --api-def-error: #dc2626;
      --api-def-code-bg: #0f172a;
    }

    .api-def-body {
      margin: 0;
      font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
      background: var(--api-def-bg);
      color: var(--api-def-text);
      line-height: 1.6;
    }

    .api-def-header {
      background: linear-gradient(135deg, #1d4ed8, #2563eb);
      color: #ffffff;
      padding: 48px 20px;
    }

    .api-def-header-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .api-def-header-title {
      margin: 0 0 10px;
      font-size: 2.2rem;
      color:#ffffff;
    }

    .api-def-header-subtitle {
      margin: 0;
      font-size: 1.05rem;
      opacity: 0.95;
    }

    .api-def-container {
      max-width: 1100px;
      margin: -40px auto 60px;
      padding: 0 20px;
    }

    .api-def-card {
      background: var(--api-def-card);
      border: 1px solid var(--api-def-border);
      border-radius: 14px;
      padding: 30px;
      margin-bottom: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    }

    .api-def-section-title {
      font-size: 1.4rem;
      margin: 0 0 15px;
      padding-left: 12px;
      border-left: 4px solid var(--api-def-primary);
    }

    .api-def-subtitle {
      font-size: 1.1rem;
      margin: 25px 0 10px;
    }

    .api-def-text {
      margin-bottom: 12px;
    }

    .api-def-list {
      padding-left: 20px;
      margin: 10px 0;
    }

    .api-def-list-item {
      margin-bottom: 8px;
    }

    .api-def-info-box {
      background: #eff6ff;
      border-left: 4px solid var(--api-def-primary);
      padding: 14px 16px;
      border-radius: 8px;
      margin: 15px 0;
      font-size: 0.95rem;
      word-break: break-all;
    }

    .api-def-code-block {
      background: var(--api-def-code-bg);
      color: #e5e7eb;
      padding: 18px;
      border-radius: 12px;
      overflow-x: auto;
      font-size: 0.9rem;
      margin: 18px 0;
    }

    .api-def-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 15px;
      font-size: 0.95rem;
    }

    .api-def-table-head {
      background: #f1f5f9;
      font-weight: 600;
    }

    .api-def-table-cell {
      border: 1px solid var(--api-def-border);
      padding: 12px;
      text-align: left;
      vertical-align: top;
    }

    .api-def-status-success {
      color: var(--api-def-success);
      font-weight: 600;
    }

    .api-def-status-error {
      color: var(--api-def-error);
      font-weight: 600;
    }

    .api-def-footer {
      text-align: center;
      color: var(--api-def-muted);
      font-size: 0.9rem;
      padding: 30px 20px;
    }


/* **************************************************** */
/* Overview two-column grid */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 3rem;
  /* align-items: center; */
  max-width: 1200px;
  margin: auto;
}

.overview-grid ul li, .overview-grid ol li {
  padding: 0 16px;
  margin:0 40px;
}
/* Placeholder styling */
.overview-side-block {
  width: 100%;
  min-height: 320px;
  background: #f3f5f8;
  border-radius: 16px;
  display: flex;
  align-items: left;
  padding-left: 20px;
  padding-right: 20px;
  justify-content: center;
  flex-direction: column;
  font-weight: 600;
  /* color: #9aa3af; */
  color: #4b5057;
  font-size: 1.1rem;
}

.overview-side-block a {
  color: #315690;
  font-size: medium;
}

.overview-side-block a:hover {
  color: #2867cbc1;
  /* font-size: medium; */
  text-decoration: underline;
}

.overview-side-block .dev-integration-links {
  display: inline-flex;
  align-items: center;
  gap: 6px; /* space between icon and text */
}

/* Mobile responsive */
@media (max-width: 768px) {
  .overview-grid {
    grid-template-columns: 1fr;
  }

    .overview-grid > :first-child {
    order: 2;
  }

  .overview-grid > :last-child {
    order: 1;
  }
}
